/* ---------------- Hero Section ---------------- */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 5%;
    gap: 60px;
    margin-top: 30px;
}

.hero-left img {
    width: 480px;
    max-width: 100%;
    transition: all 0.45s ease;
    border-radius: 12px; 
}

/* Hover Effect */
.hero-left img:hover {
    transform: scale(1.08); 
    box-shadow: 
        0 0 25px rgba(0, 255, 72, 0.7),
        0 0 45px rgba(255, 213, 0, 0.6),
        0 0 65px rgba(0, 255, 200, 0.5); 
}


.sub-heading {
    font-size: 14px;
    letter-spacing: 2px;
    color: #1ca161;
    margin-bottom: 12px;
}

.main-heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.desc {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 420px;
}

.points {
    list-style: none;
    margin-bottom: 30px;
}

.points li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 22px;
}

.points li::before {
    content: "✔";
    color: #1c4a35;
    position: absolute;
    left: 0;
}

.contact-btn {
    padding: 14px 38px;
    background: #0b2317;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #cfff45;
    color: black;
    font-weight: 700;
}

/* ---------------- Service Cards ---------------- */

.services-section {
    padding: 0px 8% 60px 8%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-card {
    width: 32%;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.service-card p{
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
}

.service-card .name {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 600 !important;
}

.service-card:hover {
    transform: translateY(-6px);
}

.icon1 {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
    }
    .service-card {
        width: 100%;
    }
}


.cards-section {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.card {
  position: relative;
  width: 33.33%;
  padding: 32px 22px;
  border-radius: 22px;
  text-align: center;
  color: #0f172a;

  /* glass background */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);

  /* premium shadow */
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    box-shadow 0.45s ease;
}

/* 🔥 animated glowing edge */
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    #25ebb7,
    #7c3aed,
    transparent
  );
  background-size: 300% 300%;
  opacity: 0.25;
  animation: borderFlow 6s linear infinite;
  pointer-events: none;
}

/* soft inner glow */
.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.88);
  z-index: -1;
}

/* 🚀 hover = 3D pop */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 35px 80px rgba(124, 58, 237, 0.25),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

/* gradient flow animation */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}


/* Icon */
.icon2 img {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}

/* Heading */
.card h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
}

/* Text */
.card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ---------------- Tablet Optimization ---------------- */
@media (max-width: 991px) {
    .card {
        padding: 26px 18px;
    }

    .card h4 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .icon2 img {
        width: 40px;
        height: 40px;
    }
}

/* ---------------- Mobile (Stack cards) ---------------- */
@media (max-width: 767px) {
    .cards-section {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 520px;
    }
}



.services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 8%;
    gap: 70px;
    margin-top: 30px;
}

.services-content {
    max-width: 620px;
}

.label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #1f7a5a;
    margin-bottom: 14px;
    position: relative;
}

.label::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #1f7a5a;
    margin-top: 6px;
}

.services-content h1 {
    font-size: 44px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 22px;
}

.services-content h1 span {
    color: #1f7a5a;
}

.services-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 26px;
}

/* ---------------- Service List ---------------- */

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1f7a5a;
    font-size: 14px;
}

/* ---------------- Right Image ---------------- */

.services-image img {
    max-width: 420px;
    width: 100%;
    display: block;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 992px) {
    .services-hero {
        flex-direction: column;
        text-align: center;
    }

    .label::after {
        margin: 6px auto 0;
    }

    .service-list li {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .services-content h1 {
        font-size: 32px;
    }

    .services-image img {
        max-width: 300px;
    }
}