    
    
    /* ===== Scoped styles for .mv only ===== */
        .mv {
            --accent: #4a9c5f;           /* green used behind icons */
            --heading: #042F35;          /* deep teal headings */
            --text: #33434b;             /* body */
            --light-bg: #f8fbfb;
            --card-bg: #ffffff;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .mv.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .mv__container {
            max-width: 1120px;
            margin: 0 auto;
            position: relative;
        }

        .divider {
            height: 4px;
            width: 80px;
            background: var(--accent);
            margin: 0 auto 24px;
            border-radius: 2px;
            position: relative;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: center;
            transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
        }

        .mv.animate .divider {
            opacity: 1;
            transform: scaleX(1);
        }

        .divider::after {
            content: '✦';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--light-bg);
            color: var(--accent);
            padding: 0 8px;
            font-size: 18px;
        }

        .mv__title {
            color: #042F35;
            font-size: clamp(32px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.2;
            text-align: center;
            margin: 0 0 16px;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
        }

        .mv.animate .mv__title {
            opacity: 1;
            transform: translateY(0);
        }

        .mv__intro {
            color: var(--text);
            font-size: clamp(16px, 1.8vw, 20px);
            line-height: 1.7;
            text-align: center;
            max-width: 880px;
            margin: 0 auto 48px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
        }

        .mv.animate .mv__intro {
            opacity: 1;
            transform: translateY(0);
        }

        .mv__intro span {
            color: #4a9c5f;
            font-weight: 700;
        }

        .mv__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: start;
            margin-bottom: 48px;
        }

        .mv__card {
            text-align: center;
            padding: 32px 24px;
            background: var(--card-bg);
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            overflow: hidden;
            border: 1px solid rgba(74, 156, 95, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }

        .mv.animate .mv__card {
            animation: cardAppear 0.8s forwards;
        }

        .mv.animate .mv__card:nth-child(1) {
            animation-delay: 0.8s;
        }

        .mv.animate .mv__card:nth-child(2) {
            animation-delay: 1s;
        }

        .mv.animate .mv__card:nth-child(3) {
            animation-delay: 1.2s;
        }
 .mv.animate .mv__card.service-card:nth-child(4) {
            animation-delay: 1.4s;
        }
        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mv__card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .mv__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #4a9c5f, #7dce82);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mv__card:hover::before {
            opacity: 1;
        }

        .mv__icon {
            height: 100px;
            display: grid;
            place-items: center;
            margin-bottom: 20px;
            position: relative;
        }

        .mv__icon svg {
            width: 120px;
            height: 120px;
            display: block;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .mv--accent {
            fill: var(--accent);
        }

        .mv--stroke {
            stroke: #0e1618;
        }

        .mv__card-title {
            color: var(--heading);
            font-size: clamp(20px, 2.2vw, 24px);
            font-weight: 700;
            line-height: 1.3;
            margin: 12px 0 16px;
            position: relative;
        }

        .mv__card-text {
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
            max-width: 320px;
            margin: 0 auto;
        }

        .begin__cta {
            text-align: center;
            margin-top: 32px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 1.4s, transform 0.8s ease 1.4s;
        }

        .mv.animate .begin__cta {
            opacity: 1;
            transform: translateY(0);
        }

        .begin__btn {
            padding: 14px 32px;
            border-radius: 50px;
            background: #4a9c5f;
            color: #fff !important;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(74, 156, 95, 0.3);
        }

        /* Shine effect overlay */
        .begin__btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
            transform: skewX(-25deg);
        }

        /* Hover: shine + grow */
        .begin__btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(74, 156, 95, 0.4);
        }

        .begin__btn:hover::after {
            animation: shine 0.8s forwards;
        }

        @keyframes shine {
            100% {
                left: 125%;
            }
        }

        /* Decorative elements */
        .decorative-leaf {
            position: absolute;
            font-size: 24px;
            color: rgba(74, 156, 95, 0.15);
            z-index: 0;
            opacity: 0;
            transition: opacity 1s ease 1s;
        }

        .mv.animate .decorative-leaf {
            opacity: 1;
        }

        .leaff-1 {
            top: 80px;
            left: 40px;
            transform: rotate(-15deg);
        }

        .leaff-2 {
            bottom: 40px;
            right: 40px;
            transform: rotate(15deg);
        }

        /* ===== Responsiveness ===== */
        @media (max-width: 992px) {
            .mv__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .mv__card {
                padding: 28px 20px;
            }
        }

        @media (max-width: 768px) {
            .mv {
                padding: 50px 16px;
            }

            .mv__grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .mv__card {
                padding: 24px 20px;
            }

            .mv__icon {
                height: 90px;
                margin-bottom: 16px;
            }

            .mv__icon svg {
                width: 80px;
                height: 80px;
            }

            .decorative-leaf {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .mv__title {
                font-size: 28px;
            }

            .mv__intro {
                font-size: 16px;
                 padding: 0px!important;
            }

            .mv__card-title {
                font-size: 20px;
            }

            .mv__card-text {
                font-size: 15px;
            }

            .begin__btn {
                padding: 12px 24px;
                font-size: 16px;
            }
        }
 

  /* Page baseline */
  /* body{
    margin:0;
    color:var(--text);
    background:#fff;
  } */

  /* Section */
  /* Trust section styles */
        .trust-wrap {
            padding: 80px 20px;
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
              background:#fffdfb;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .trust-wrap.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Decorative elements */
        .trust-decoration {
            position: absolute;
            z-index: 0;
        
            color: #4a9c5f;
        }

        .trust-leaf-1 {
            top: 40px;
            left: 10%;
            font-size: 36px;
            transform: rotate(-15deg);
            animation: float 6s ease-in-out infinite;
        }

        .trust-leaf-2 {
            bottom: 40px;
            right: 10%;
            font-size: 32px;
            transform: rotate(25deg);
            animation: float 7s ease-in-out infinite 1s;
        }

        .trust-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #4a9c5f;
            top: 30%;
            right: 20%;
            opacity: 0.15;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(-15deg);
            }
            50% {
                transform: translateY(-12px) rotate(-20deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.15;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.2;
            }
        }

        /* Text block */
        .trust-text {
            max-width: 860px;
            text-align: center;
            line-height: 1.8;
            font-size: clamp(18px, 2.4vw, 22px);
            font-style: normal;
            font-variant: normal;
            font-weight: 400;
            line-height: 34px;
            text-decoration: none solid rgb(74, 74, 74);
            text-align: center;
            text-indent: 0px;
            text-transform: none;
            vertical-align: baseline;
            white-space: normal;
            word-spacing: 0px;
            letter-spacing: .01em;
            color: #33434b;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
        }

        .trust-wrap.animate .trust-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* Title style */
        .mv__title {
            color: #042F35;
            font-size: clamp(32px, 4.5vw, 42px);
            font-weight: 800;
            line-height: 1.2;
            text-align: center;
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .trust-wrap.animate .mv__title {
            opacity: 1;
            transform: translateY(0);
        }

        /* divider under text */
        .divider {
            width: 84px;
            height: 4px;
            background: #4a9c5f;
            border-radius: 2px;
            margin: 28px auto;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: center;
            transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
        }

        .trust-wrap.animate .divider {
            opacity: 1;
            transform: scaleX(1);
        }

        .divider::after {
            content: '✦';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #f8fbfb;
            color: #4a9c5f;
            padding: 0 8px;
            font-size: 18px;
        }

        /* CTA section */
        .trust-wrap .begin__cta {
            text-align: center;
            margin-top: 36px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
        }

        .trust-wrap.animate .begin__cta {
            opacity: 1;
            transform: translateY(0);
        }

        .begin__btn {
            padding: 7px 32px;
            border-radius: 50px;
            background: #4a9c5f;
            color: #fff !important;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(74, 156, 95, 0.3);
        }

        /* Shine effect overlay */
        .begin__btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
            transform: skewX(-25deg);
        }

        /* Hover: shine + grow */
        .begin__btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(74, 156, 95, 0.4);
        }

        .begin__btn:hover::after {
            animation: shine 0.8s forwards;
        }

        @keyframes shine {
            100% {
                left: 125%;
            }
        }

        /* Responsive tweaks */
        @media (max-width: 1024px) {
            .trust-text {
                max-width: 720px;
            }
        }

        @media (max-width: 768px) {
            .trust-wrap {
                padding: 60px 18px;
            }

            .trust-text {
                max-width: 620px;
            }

            .trust-leaf-1,
            .trust-leaf-2,
            .trust-circle {
                display: none;
            }
        }

        @media (max-width: 560px) {
            .trust-wrap {
                padding: 50px 16px;
            }

            .trust-text {
                max-width: 100%;
                line-height: 1.7;
                font-size: 17px;
            }

            .divider {
                width: 64px;
                height: 3px;
                margin: 22px auto;
            }

            .mv__title {
                font-size: 28px;
            }

            .begin__btn {
                padding: 12px 24px;
                font-size: 16px;
            }
        }



  /* ===== Scoped styles for .begin only ===== */
.begin{
  --ink:#082f35;         /* deep teal heading */
  --sub:#5b6b73;         /* subtitle */
  --body:#3b4a52;        /* body text */
  --accent: #135523ff;      /* orange */
  --accent-100: #4a9c5eaf;  /* light orange */
  --pill:#ffffff;

  padding: 36px 16px 48px;
}
.begin__wrap{ max-width: 1040px; margin:0 auto; }
.begin__title{
  color:var(--ink);
  text-align:center;
  font-weight:800;
  font-size: clamp(26px,4.4vw,40px);
  margin:0 0 6px;
}
.begin__intro{
  text-align:center; color:var(--sub);
  margin:0 0 22px; line-height:1.7;
    font-size: clamp(18px, 2.4vw, 22px);
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 34px;
	text-decoration: none solid rgb(74, 74, 74);
	text-align: center;
	text-indent: 0px;
	text-transform: none;
	vertical-align: baseline;
	white-space: normal;
	word-spacing: 0px;
}

/* Layout */
.begin__grid{
  display:grid; grid-template-columns: 1fr 1.15fr; gap:26px;
  align-items:start;
}
@media (max-width: 820px){
  .begin__grid{ grid-template-columns: 1fr; }
}

/* Steps list */
.begin__steps{
  list-style:none; padding:0; margin:0;
  display:grid; gap:14px;
}
.step{
  width:100%;
  border:0; background:var(--pill);
  box-shadow:0 1px 0 rgba(0,0,0,.05);
  border-radius:10px;
  padding:14px 16px;
  text-align:left;
  color:#23323a;
  cursor:pointer;
  position:relative;
  transition: transform .08s ease;
  outline-offset:3px;
  font-size: clamp(18px, 2.4vw, 22px);
	font-family: "Hepta Slab", serif;
	font-size: 22px;
	font-style: normal;
	font-variant: normal;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 30px;
	text-decoration: none solid rgb(0, 0, 0);
	text-align: start;
	text-indent: 0px;
	text-transform: none;
	vertical-align: baseline;
	white-space: normal;
	word-spacing: 0px;

}
.step:active{ transform:scale(.995); }
.step__num{ margin-right:6px; }
.step.step--active{
  color:#0f2230;
  background:
    /* subtle daisy pattern */
    radial-gradient(circle at 18% 35%, #f7a45b22 0 6px, transparent 6px 22px) 0 0/120px 90px,
    radial-gradient(circle at 68% 70%, #f7a45b22 0 6px, transparent 6px 22px) 40px 24px/120px 90px,
    var(--accent);
        background-image: url(astericsvgbgorange.svg);
        background-size:cover;
        background-repeat:no-repeat;
  background-blend-mode: normal;
  color:#fff;
}

/* Content panels */
.begin__content{
  position:relative;
  min-height: 170px;
}
.panel{
  background:#fff;
  border-radius:10px;
  padding: 14px 18px 60px;
  color:var(--body);
  line-height:1.9;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
  position:absolute; inset:0;
  opacity:0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
      font-size: clamp(18px, 2.4vw, 22px);
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 34px;
	text-decoration: none solid rgb(74, 74, 74);
	text-indent: 0px;
	text-transform: none;
	vertical-align: baseline;
	white-space: normal;
	word-spacing: 0px;
}
.panel--active{
  position:absolute; opacity:1; transform: translateY(0);
}
.panel__bursts{
  position:absolute; right:10px; bottom:10px; width:170px; height:170px; pointer-events:none;
background-image: url(astericsvg.svg);
        background-size:cover;
        background-repeat:no-repeat;
  opacity:.35;
}
@media (max-width: 560px){
  .panel{ padding-bottom: 70px; }
  .panel__bursts{ width:140px; height:140px; }
}

/* CTA */
.begin__cta{ text-align:center; margin-top:22px; }
.begin__btn{
  display:inline-block;
  background:var(--accent); color:#111; text-decoration:none;
  padding:14px 24px; border-radius:999px; font-weight:700;
  transition: filter .15s ease, transform .12s ease;
  box-shadow:0 8px 0 rgba(0,0,0,.06) inset;
}
.begin__btn:hover{ filter:brightness(.98); transform: translateY(-1px); }


    .etest {
            --ink: #0a3a1e;           /* deep green heading */
            --body: #3a5245;          /* paragraph */
            --accent: #4a9c5f;        /* green */
            --accent-light: #e2f0e5;  /* light green */
            --accent-200: #c8e2ce;    /* light green (arrows) */
            padding: 60px 20px;
            position: relative;
          
        }
        
        .etest__wrap {
            max-width: 1040px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        /* Animated background elements */
        .etest__bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
          
        }
        
        .etest__blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(20px);
            opacity: 0.2;
            animation: float 5s infinite ease-in-out;
        }
        
        .etest__blob:nth-child(1) {
            width: 200px;
            height: 200px;
            background: var(--accent);
            top: -10px;
            left: 900px;
            animation-delay: 0s;
        }
        
        .etest__blob:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--accent-light);
            bottom: -150px;
            right: -50px;
            animation-delay: -5s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.05);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.95);
            }
        }
        
        /* Top heading */
        .etest__topline {
            display: block;
            width: 74px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin: 0 auto 20px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s 0.2s forwards;
        }
        
        .etest__title {
            color: #082f35;
            font-weight: 800;
            font-size: clamp(28px, 4.5vw, 46px);
            text-align: center;
            margin: 0 0 40px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s 0.4s forwards;
        }
        
        /* Swiper container */
        .swiper {
            padding: 30px 80px 60px;
            position: relative;
            transform: scale(0.95);
            opacity: 0;
            animation: fadeInScale 1s 0.6s forwards;
        }
        
        /* Slide styling */
        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .swiper-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--accent), #a4d8b4);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .swiper-slide:hover::before {
            transform: scaleX(1);
        }
        
        .swiper-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        /* Quote styling */
        .etest__quote {
            color: var(--accent);
            font-size: clamp(20px, 2.6vw, 28px);
            font-weight: 700;
            line-height: 1.4;
            margin: 0 0 20px;
            position: relative;
            padding: 0 30px;
        }
        
        .etest__quote::before,
        .etest__quote::after {
            content: """;
            font-size: 60px;
            color: var(--accent-light);
            position: absolute;
            line-height: 1;
        }
        
        .etest__quote::before {
            top: -20px;
            left: 0;
        }
        
        .etest__quote::after {
            content: """;
            bottom: -40px;
            right: 0;
            transform: rotate(180deg);
        }
        
        .etest__text {
            color: var(--body);
            max-width: 650px;
            line-height: 1.8;
            font-size: 17px;
            margin: 0 auto;
        }
        
        /* Arrows */
        .swiper-button-prev, .swiper-button-next {
            color: transparent;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .swiper-button-prev::after, .swiper-button-next::after {
            content: "";
            width: 16px;
            height: 16px;
            border-top: 3px solid var(--accent);
            border-right: 3px solid var(--accent);
            transform: rotate(45deg);
            display: block;
        }
        
        .swiper-button-prev::after {
            transform: rotate(225deg);
            margin-left: 4px;
        }
        
        .swiper-button-next::after {
            margin-right: 4px;
        }
        
        .swiper-button-prev {
            left: 10px;
        }
        
        .swiper-button-next {
            right: 10px;
        }
        
        .swiper-button-prev:hover, .swiper-button-next:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }
        
        /* Pagination bullets */
        .swiper-pagination-bullet {
            background: var(--accent-200);
            opacity: 1;
            width: 12px;
            height: 12px;
            transition: all 0.3s ease;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--accent);
            transform: scale(1.3);
        }
        
        /* Leaf decorations */
        .etest__leaf {
            position: absolute;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }
        
        .etest__leaf--1 {
            top: 10%;
            left: 5%;
            width: 100px;
            animation: sway 20s infinite ease-in-out;
        }
        
        .etest__leaf--2 {
            bottom: 15%;
            right: 8%;
            width: 80px;
            animation: sway 15s infinite ease-in-out reverse;
        }
        
        @keyframes sway {
            0%, 100% {
                transform: rotate(0deg) translateY(0);
            }
            50% {
                transform: rotate(5deg) translateY(-10px);
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeInScale {
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 900px) {
             .etest__blob {
              display: none;
             }
            .swiper {
                padding: 30px 60px 50px;
            }
        }
        
        @media (max-width: 680px) {
            .swiper {
                padding: 20px 50px 40px;
            }
            
            .etest__leaf {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .swiper {
                padding: 15px 40px 35px;
            }
            
            .swiper-button-prev, .swiper-button-next {
                width: 40px;
                height: 40px;
            }
            
            .swiper-slide {
                padding: 30px 20px;
            }
        }
/* --- Section framing --- */
.kids-gallery{ max-width:1140px; margin:0 auto; padding:28px 16px 8px;}
.kids-gallery__intro{ text-align:center; margin-bottom:18px; }
.kids-eyebrow{ color:#4a9c5f; font-weight:800; letter-spacing:.02em; }
.kids-title{ margin:.25rem 0 .5rem;  color: #042F35;
            font-size: clamp(32px, 4.5vw, 42px);
            font-weight: 800;
            line-height: 1.2;
            text-align: center;
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
           
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.kids-sub{ color:#5a6770; max-width:680px; margin:0 auto; line-height:1.7;
	font-size: 22px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 34px;
	text-decoration: none solid rgb(74, 74, 74);
	text-align: center;
	text-indent: 0px;
	text-transform: none;
	vertical-align: baseline;
	white-space: normal;
	word-spacing: 0px;}

/* --- Grid layout (similar to the screenshot) --- */
.kids-grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr .9fr 1.1fr;
  grid-template-rows: auto auto;
  grid-gap:16px;
  grid-template-areas:
    "big sm1 sm2 r1"
    "big wide wide bottom";
}
.g{ margin:0; }
.g-big{ grid-area:big; }
.g-sm-1{ grid-area:sm1; }
.g-sm-2{ grid-area:sm2; }
.g-right-1{ grid-area:r1; }
.g-wide{ grid-area:wide; }
.g-bottom{ grid-area:bottom; }

/* --- Image cards --- */
.g-img{
  display:block; width:100%; height:100%; object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  border:3px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: zoom-in;
}
.g-img:hover{
  transform: translateY(-4px) scale(1.02) rotate(-.4deg);
  box-shadow:0 16px 40px rgba(0,0,0,.12);
  border-color:#4a9c5f;
}

/* Height hints to keep layout pleasing */
.g-big .g-img{ min-height:380px; }
.g-sm-1 .g-img, .g-sm-2 .g-img, .g-bottom .g-img{ min-height:180px; }
.g-right-1 .g-img{ min-height:220px; }
.g-wide .g-img{ min-height:220px; }

/* --- Responsive --- */
@media (max-width: 980px){
  .kids-grid{
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "big big"
      "sm1 sm2"
      "r1 r1"
      "wide wide"
      "bottom bottom";
  }
}
@media (max-width: 640px){
  .kids-grid{ grid-template-columns:1fr; grid-gap:12px;
    grid-template-areas:
      "big" "sm1" "sm2" "r1" "wide" "bottom";
  }
  .g-img{ border-radius:16px; }
}

/* --- Lightbox --- */
.kids-lightbox{
  position:fixed; inset:0; display:none;
  align-items:center; justify-content:center;
  z-index:9999;
}
.kids-lightbox.is-open{ display:flex; }
.lb-overlay{
  position:absolute; inset:0; background:rgba(0,0,0,.55);
}
.lb-dialog{
  position:relative; margin:0; z-index:2; max-width:min(92vw, 1100px);
  max-height:min(88vh, 820px);
  border-radius:16px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  outline: 4px solid rgba(74,156,95,.25);
}
.lb-img{
  display:block; max-width:100%; max-height:calc(88vh - 16px);
  background:#fff;
}

/* Close button */
.lb-close{
  position:fixed; top:22px; right:22px; z-index:3;
  width:44px; height:44px; border-radius:12px; border:0;
  background:#ffffff; color:#4a9c5f; font-size:28px; line-height:44px;
  box-shadow:0 8px 24px rgba(0,0,0,.2), 0 0 0 3px rgba(74,156,95,.15) inset;
  cursor:pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.lb-close:hover{ transform:scale(1.07) rotate(-6deg); background:#f4fff6; }
.lb-close:focus{ outline:3px solid #4a9c5f; }

/* Prevent body scroll when lightbox open */
body.lb-open{ overflow:hidden; }
  /* ===== Scoped to .lo ===== */
.lo{
  --accent: #4a9c5eaf;     /* orange */
  --ink: #0b2a30;        /* deep teal for headings */
  --body: #3a4950;       /* paragraph color */
  background:#fff;
  padding: 0px 16px;
}
.lo-tophead{
   background:#fff;
   width: 100%;
   padding: 30px 0;
}
.lo__container{
  max-width: 1180px;
  /* margin: 0 auto; */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

/* LEFT column */
.lo__quote{
  position: relative;
  min-height: 420px;
  padding: 48px 24px 24px 48px;
}
.lo__ellipse{
  position: absolute;
  inset: 0 auto 0 0;
  width: 820px;
  height: 520px;
  transform: translate(-14%, -12%);
  z-index: 0;
  pointer-events: none;
}
.lo__blob{
  position: absolute;
  left: 340px;
  top: -10px;
  width: 360px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
}
.lo__qmark{
  position: relative;
  z-index: 2;
  display:inline-block;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  margin-left: 4px;
}
.lo__quote-text{
  position: relative;
  z-index: 2;
  color:#19323a;
  line-height: 1.75;
  font-size: clamp(18px, 2.1vw, 24px);
  max-width: 560px;
  margin: 8px 0 18px;
}
.lo__author{ position: relative; z-index: 2; }
.lo__dash{
  display:block;
  width:56px; height:4px;
  background: var(--accent);
  border-radius:2px;
  margin: 10px 0 10px;
}
.lo__name{
  color:#0c3440;
  font-weight: 800;
  margin-bottom: 4px;
}
.lo__role{
  color:#6b7b81;
}

/* RIGHT column */
.lo__content{ padding-top: 18px; }
.lo__topline{
  display:block;
  width:56px; height:4px; background: var(--accent);
  border-radius: 2px;
  margin-bottom: 16px;
   justify-self: center;
}
.lo__title{
  color: var(--ink);
  background-color:white;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.2;

  text-align: center;
}
.lo__text{
  color: var(--body);
  line-height: 1.9;
  font-size: 17px;
  margin: 10px 0 18px;
  max-width: 560px;
}
.lo__text a{ color:#ff6a21; text-decoration: none; border-bottom: 1px solid rgba(242,103,34,.35); }
.lo__text a:hover{ border-bottom-color: currentColor; }

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .lo__ellipse{ transform: translate(-22%, -10%); width: 760px; height: 480px; }
  .lo__blob{ left: 300px; width: 320px; height: 230px; }
}
@media (max-width: 900px){
  .lo__container{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lo__quote{ min-height: 380px; padding: 44px 20px 24px 32px; }
  .lo__ellipse{ transform: translate(-18%, -12%); width: 680px; height: 440px; }
  .lo__blob{ left: 230px; top: -6px; width: 300px; height: 220px; }
}
@media (max-width: 560px){
  .lo{ padding: 40px 14px; }
  .lo__quote{ min-height: 340px; padding: 36px 16px 20px 20px; }
  .lo__ellipse{ transform: translate(-30%, -14%); width: 560px; height: 380px; }
  .lo__blob{ left: 120px; width: 240px; height: 180px; }
  .lo__quote-text{ max-width: 95%; }
}

/* ===== scoped styles for .findpm only ===== */
.findpm{
  --ink:#07333a;         /* deep teal headings */
  --body:#3e4c53;        /* paragraph */
  --accent:#4a9c5f;      /* orange */
  padding: 24px 16px 34px;
  background:#fff;
}
.findpm__wrap{
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.findpm__line{
  display:inline-block; width:60px; height:4px; background:var(--accent);
  border-radius:2px; margin-bottom:12px;
}
.findpm__title{
  color:var(--ink);
  font-weight:800;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height:1.2;
  margin:0 0 12px;
}
.findpm__search{
  position:relative;
  width: min(420px, 100%);
  margin: 8px 0 10px;
}
.findpm__search input{
  width:100%;
  height:48px;
  border-radius:999px;
  border:1px solid #cfd7dc;
  padding:0 54px 0 18px;
  outline:none;
  font-size:16px;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.findpm__search input:focus{
  border-color:#8fbdd0;
  box-shadow:0 0 0 3px rgba(143,189,208,.25);
}
.findpm__search button{
  position:absolute; right:6px; top:6px;
  width:36px; height:36px; border:0; border-radius:50%;
  background:var(--accent); color:#fff; cursor:pointer;
  display:grid; place-items:center;
}
.findpm__hint{
  color:var(--body);
  margin:8px 0 18px;
  line-height:1.7;
  max-width:420px;
}
.findpm__cta{
  display:inline-block;
  margin-top:6px;
  background:var(--accent);
  color:#111;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:999px;
  box-shadow:0 8px 0 rgba(0,0,0,.06) inset;
  transition:transform .12s ease, filter .15s ease;
}
.findpm__cta:hover{ transform:translateY(-1px); filter:brightness(.98); }

.findpm__map{
  width:100%; aspect-ratio: 16/10; background:#eef3f5;
  border-radius:10px; overflow:hidden;
  box-shadow:0 1px 0 rgba(0,0,0,.05);
}
.findpm__map iframe{
  width:100%; height:100%; border:0; display:block;
}
.housearoundicon{
  width: 138px;
    height: 135px;
    /* margin-top: 12px; */
    position: absolute;
    top: 10px;
    right: 0%;
    rotate: 22deg;
    display: flex;
    justify-content: center;
    align-items: center;
}
.houseicon{
position: absolute;
    width: 65px;
    height: 73px;
}
/* responsive stack */
@media (max-width: 900px){
  .housearoundicon{
      top: -120px;
  }
  .findpm__wrap{ grid-template-columns: 1fr; }
  .findpm__map{ aspect-ratio: 16/11; }
}
/* ✅ Sahi (non-nested) CSS selectors */
.rainbowicon .rs0 { fill:#EE302E; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs1 { fill:#F68A1F; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs2 { fill:#E0E31C; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs3 { fill:#18B24B; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs4 { fill:#00B0AB; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs5 { fill:#007FC4; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs6 { fill:#684FA1; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs7 { fill:none; stroke:#372216; stroke-width:5; stroke-miterlimit:10; }
.rainbowicon .rs8 { fill:#FCE83E; }
.rainbowicon .rs9 { fill:#FCB415; }
.rainbowicon .rs10 { opacity:0.5; fill:#FFFFFF; }
.rainbowicon .rs11 { fill:#8D431F; }
.rainbowicon .rs12 { fill:#EE4523; }

/* ✅ Force visibility/size so parent 0x0 na ho */
.trust-decoration { display:block; }
.rainbowicon { display:block; width:150px; height:auto; }
/* ✅ Proper, non-nested, scoped CSS */
.galaxyicon { display:block; width:150px; height:auto; }
.galaxyicon .galexcy_0 { fill:#D2D2D2; }
.galaxyicon .galexcy_1 { fill:#B9CFD4; }

/* (optional) parent ko ensure karo ke visible/has size */
.trust-decoration { display:block; }


.get-started{
  position: relative;
  /* background: #f7fdf9;  */
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 1.25rem clamp(4rem, 8vw, 7rem);
  /* border-radius: 0 0 24px 24px; */
      height: 280px;
	
}

/* Dome curve */
.get-started .dome{
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 100%;
    display: block;
    rotate: 180deg;
    z-index: 0;
}
.get-started .dome path{
  fill: #d5eadd; /* pale green tint */
}

/* Blob */
.get-started .blob{
  position: absolute;
    right: 60%;
    top: -20%;
  width: min(44vw, 540px);
  height: auto;
  z-index: 0;
  opacity: 0.7;
}
.get-started .blob path{
  fill: #b7d8c3; /* soft leafy green */
}

/* Content */
.get-started .container{
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.get-started h2{
  margin: 0 0 .75rem 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #1d3b29; /* deep green */
}

.get-started p{
  margin: 0 0 1.75rem 0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: #2c3f33; /* dark muted green-grey */
  max-width: 56ch;
}

/* Button */
.get-started .btn{
  display: inline-block;
  background: #4a9c5f; /* main brand green */
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  box-shadow: 0 8px 18px rgba(74,156,95,.25);
}
.get-started .btn:hover{
  background: #3e8651;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(62,134,81,.28);
}

/* Responsive */
@media (max-width: 820px){
  .get-started .blob{ right:-18%; top:18%; width:min(70vw,520px); }
}
@media (max-width: 560px){

  .get-started .dome{     height: 100%; }
  .get-started .blob{ right: -10%;
        top: -5%; width: 110vw; }
}


