/* ===== OVERRIDE style.css — scoped under .home3-page for specificity ===== */
        :root {
            --site-theme: #1f979c;
            --site-title: var(--ns-primary);
            --site-body: #84847c;
            --site-smoke: #F8F7F4;
            --site-white: #ffffff;
            --site-black: #202020;
            --site-border: #E3E3E3;
            --site-title-font: "EB Garamond", serif;
            --site-body-font: "Prompt", sans-serif;
            --ns-primary: #11423f;
            --ns-primary-light: #2c6e69;
            --ns-accent: #e2f4f4;
            --ns-bg: #fdfbf6;
            --ns-white: #ffffff;
            --ns-text: #333333;
            --ns-font-serif: 'EB Garamond', serif;
            --ns-font-sans: 'Prompt', sans-serif;
            --teal: #1f979c;
            --teal-dark: #197b80;
            --teal-soft: #4db3b8;
            --cream: #F8F7F4;
            --ink: #666861;
            --ink-soft: #84847c;
            --charcoal: #202020;
            --mint: #d1e5e4;
            --mint-light: #e8f4f4;
            --mint-pale: #f0f9f9;
            --blush: #e7a9b2;
            --gold: #C78665;
            --line: #E3E3E3;
            --radius: 6px;
        }

        .home3-page {
            font-family: var(--ns-font-sans);
            font-size: 16px;
            font-weight: 400;
            color: var(--ns-primary);
            line-height: 26px;
            overflow-x: hidden;
        }

        .home3-page h1,
        .home3-page h2,
        .home3-page h3,
        .home3-page h4,
        .home3-page h5,
        .home3-page h6 {
            font-family: var(--ns-font-serif);
            color: var(--ns-primary);
            font-weight: 600;
            line-height: 1.4;
            margin: 0 0 15px 0;
        }

        .home3-page h1 {
            font-size: 3.5rem;
            line-height: 1.1;
        }

        .home3-page h2 {
            font-size: 2rem;
        }

        .home3-page h3 {
            font-size: 1.75rem;
        }

        .home3-page h4 {
            font-size: 1.5rem;
        }

        .home3-page h5 {
            font-size: 1.25rem;
        }

        .home3-page h6 {
            font-size: 1.125rem;
        }

        .home3-page p {
            font-family: var(--ns-font-sans);
            color: #555;
            line-height: 1.7;
            margin: 0 0 18px 0;
        }

        /* ===== LAYOUT UTILITY ===== */
        .wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            position: relative;
        }

        /* ===== EYEBROW / SUB-TITLE ===== */
        .eyebrow {
            font-family: var(--ns-font-sans);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            font-weight: 600;
            color: #51B0A6;
            /* display: inline-flex; */
            align-items: center;
            gap: 10px;
        }

        .eyebrow::before {
            content: '';
            width: 26px;
            height: 1.5px;
            background: #51B0A6;
        }

        /* ===== BUTTONS ===== */
        .btn-primary-site {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: 30px;
            font-family: var(--ns-font-sans);
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            border: 2px solid var(--site-theme);
            background-color: var(--site-theme);
            color: var(--site-white);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary-site:hover {
            background-color: transparent;
            color: var(--site-theme);
        }

        .btn-outline-site {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: 30px;
            font-family: var(--ns-font-sans);
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            border: 2px solid var(--site-theme);
            background: transparent;
            color: var(--site-theme);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-outline-site:hover {
            background-color: var(--site-theme);
            color: var(--site-white);
        }

        .btn-light-site {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: 30px;
            font-family: var(--ns-font-sans);
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            border: 2px solid var(--site-white);
            background: var(--site-white);
            color: var(--site-theme);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-light-site:hover {
            background: var(--mint-light);
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(180deg, var(--mint) 0%, var(--mint-light) 65%, var(--site-smoke) 100%);
            padding: 50px 0 50px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 56px;
            align-items: center;
        }

        .hero-copy h1 {
            font-family: var(--ns-font-serif);
            font-size: 48px;
            color: var(--ns-primary);
            margin: 16px 0 20px;
            letter-spacing: -.01em;
            font-weight: 600;
            line-height: 1.227;
        }

        /* .hero-copy h1 em {
            font-style: italic;
            color: var(--site-theme);
        } */

        .hero-copy p {
            font-family: var(--ns-font-sans);
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            max-width: 500px;
            margin-bottom: 26px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 34px;
        }

        .highlight-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 11px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--site-white);
            border: 1px solid var(--site-border);
            padding: 8px 14px 8px 10px;
            border-radius: 100px;
            font-family: var(--ns-font-sans);
            font-size: 12.8px;
            font-weight: 500;
            color: var(--ns-primary);
        }

        .chip .tick {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--site-theme);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hex-frame {
            position: relative;
            width: 400px;
            height: 440px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hex-outline {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hex-photo {
            width: 78%;
            height: 78%;
            /* clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%); */
            /* background: linear-gradient(150deg, #cfe4e9 0%, var(--teal-soft) 55%, var(--teal-dark) 100%); */
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
            color: rgba(255, 255, 255, .92);
            text-align: center;
            padding: 20px;
        }

        .hex-photo svg {
            width: 44px;
            height: 44px;
            opacity: .85;
        }

        .hex-photo span {
            font-family: var(--ns-font-sans);
            font-size: 11.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero-badge {
            position: absolute;
            bottom: 6px;
            left: -18px;
            background: var(--site-white);
            border-radius: 12px;
            padding: 14px 20px;
            box-shadow: 0 18px 40px rgba(20, 60, 52, .14);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-badge .num {
            font-family: var(--ns-font-serif);
            font-size: 26px;
            color: var(--site-theme);
            font-weight: 700;
        }

        .hero-badge .lbl {
            font-family: var(--ns-font-sans);
            font-size: 11px;
            color: #666;
            line-height: 1.3;
        }

        .float-dot {
            position: absolute;
            border-radius: 50%;
            background: var(--blush);
            opacity: .55;
        }

        /* ===== SECTION HEADERS ===== */
        .section-head {
            max-width: 890px;
            margin-bottom: 25px;
        }

        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-head h2 {
            font-family: var(--ns-font-serif);
            font-size: 48px;
            font-weight: 600;
            color: var(--ns-primary);
            margin-top: 14px;
            line-height: 1.6;
        }

        .section-head p {
            font-family: var(--ns-font-sans);
            color: #555;
            margin-top: 14px;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* ===== WHY CHOOSE ===== */
        .why {
            padding: 50px 0;
            background: #fdfbf6;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 26px;
        }

        .why-card {
            background: var(--site-white);
            border: 1px solid var(--site-border);
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .why-card:hover {
            background: var(--site-white);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .why-card:hover h3,
        .why-card:hover p {
            color: inherit;
        }

        .why-card:hover .icon-circ {
            background: var(--site-theme);
            color: var(--site-white);
        }

        .icon-circ {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--site-smoke);
            color: var(--site-theme);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .icon-circ svg {
            width: 22px;
            height: 22px;
        }

        .why-card h3 {
            font-family: var(--ns-font-serif);
            font-size: 21px;
            color: var(--ns-primary);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .why-card p {
            font-family: var(--ns-font-sans);
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            transition: all 0.3s ease;
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 50px 0 50px;
            background: var(--site-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            gap: 60px;
            align-items: center;
        }

        .about-copy h2 {
            font-family: var(--ns-font-serif);
            font-size: 48px;
            font-weight: 600;
            color: var(--ns-primary);
        }

        .about-copy p {
            font-family: var(--ns-font-sans);
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 18px 0 30px;
        }

        .trust-mini {
            display: flex;
            gap: 28px;
            margin-top: 34px;
        }

        .trust-mini div strong {
            display: block;
            font-family: var(--ns-font-serif);
            font-size: 24px;
            color: var(--site-theme);
        }

        .trust-mini div span {
            font-family: var(--ns-font-sans);
            font-size: 12.5px;
            color: #666;
        }

        .collage {
            position: relative;
            height: 460px;
        }

        .collage .ph {
            position: absolute;
            border-radius: var(--radius);
            background: linear-gradient(150deg, #d8ebe7, var(--teal-soft));
            box-shadow: 0 20px 40px rgba(31, 151, 156, .16);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .collage .ph svg {
            width: 30px;
            height: 30px;
            opacity: .8;
            color: #fff;
        }

        .collage .ph.a {
            width: 56%;
            height: 60%;
            top: 0;
            right: 0;
            background: linear-gradient(150deg, #c9ddd8, var(--site-theme));
        }

        .collage .ph.b {
            width: 44%;
            height: 46%;
            bottom: 0;
            left: 0;
            background: linear-gradient(150deg, var(--blush), #d78896);
            z-index: 2;
            border: 6px solid var(--site-white);
        }

        .collage .ph.c {
            width: 42%;
            height: 40%;
            top: 16%;
            left: 2%;
            background: linear-gradient(150deg, var(--gold), #a67b33);
            z-index: 1;
        }

        /* ===== SERVICES ===== */
        .services {
            padding: 50px 0;
            background: var(--site-smoke);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .service-card {
            background: var(--site-white);
            border-radius: 15px;
            padding: 40px 30px;
            border: 1px solid var(--site-border);
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border-color: var(--site-border);
        }

        .service-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .service-num {
            font-family: var(--ns-font-serif);
            font-size: 30px;
            color: var(--site-theme);
            font-weight: 700;
        }

        .service-card h3 {
            font-family: var(--ns-font-serif);
            font-size: 21px;
            color: var(--ns-primary);
        }

        .service-card p {
            font-family: var(--ns-font-sans);
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            flex-grow: 1;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: var(--ns-font-sans);
            font-size: 16px;
            font-weight: 600;
            color: var(--site-theme);
            transition: color 0.3s ease;
        }

        .service-link svg {
            width: 14px;
            height: 14px;
            transition: .25s;
        }

        .service-card:hover .service-link svg {
            transform: translateX(4px);
        }

        /* ===== PROCESS ===== */
        .process {
            padding: 50px 0;
            background: var(--site-white);
        }

        .process-track {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 26px;
            left: 10%;
            right: 10%;
            height: 1.5px;
            background: repeating-linear-gradient(90deg, var(--site-theme) 0 8px, transparent 8px 16px);
            z-index: 0;
        }

        .p-step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .p-step .p-num {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--site-white);
            border: 2px solid var(--site-theme);
            color: var(--site-theme);
            font-family: var(--ns-font-serif);
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .p-step h4 {
            font-family: var(--ns-font-serif);
            font-size: 21px;
            color: var(--ns-primary);
            margin-bottom: 8px;
            padding: 0 6px;
        }

        .p-step p {
            font-family: var(--ns-font-sans);
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            padding: 0 8px;
        }

        /* ===== STATS ===== */
        .stats {
            background: var(--charcoal);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(31, 151, 156, .25), transparent 55%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .stat-ring {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 1.5px solid var(--site-theme);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin: 0 auto;
            background: rgba(31, 151, 156, .06);
        }

        .stat-ring strong {
            font-family: var(--ns-font-serif);
            font-size: 32px;
            color: var(--site-white);
            font-weight: 700;
        }

        .stat-ring span {
            font-family: var(--ns-font-sans);
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            text-align: center;
            margin-top: 6px;
            padding: 0 14px;
            line-height: 1.4;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 50px 0;
            background: var(--site-white);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #e0e0e0;
        }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-family: var(--ns-font-serif);
            font-size: 1.3rem;
            color: var(--ns-primary);
            font-weight: 600;
        }

        .faq-q .plus {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1.5px solid var(--site-theme);
            flex-shrink: 0;
            position: relative;
            transition: .3s;
        }

        .faq-q .plus::before,
        .faq-q .plus::after {
            content: '';
            position: absolute;
            background: var(--site-theme);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-q .plus::before {
            width: 12px;
            height: 1.6px;
        }

        .faq-q .plus::after {
            width: 1.6px;
            height: 12px;
            transition: .25s;
        }

        .faq-item.open .plus::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .faq-item.open .plus {
            background: var(--site-theme);
        }

        .faq-item.open .plus::before,
        .faq-item.open .plus::after {
            background: var(--site-white);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-a p {
            font-family: var(--ns-font-sans);
            padding-bottom: 24px;
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
            max-width: 680px;
        }

        /* ===== EXPLORE LINKS ===== */
        .explore {
            padding: 50px 0 50px;
            background: var(--site-smoke);
        }

        .explore-box {
            background: var(--site-white);
            border-radius: 10px;
            padding: 44px 46px;
            border: 1px solid var(--site-border);
            display: flex;
            justify-content: space-between;
            gap: 40px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .explore-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .explore-links a {
            padding: 20px 25px;
            border-radius: 10px;
            border: 1px solid #e5e5e5;
            font-family: var(--ns-font-sans);
            font-size: 1rem;
            font-weight: 500;
            color: var(--ns-primary);
            transition: all 0.3s ease;
            background: var(--site-white);
            text-decoration: none;
        }

        .explore-links a:hover {
            border-color: var(--ns-primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .explore-side {
            max-width: 280px;
            padding-top: 6px;
        }

        .explore-side p {
            font-family: var(--ns-font-sans);
            font-size: 13.5px;
            color: #666;
            margin-bottom: 14px;
            line-height: 1.6;
        }

        /* ===== CTA ===== */
        .cta {
            background: linear-gradient(135deg, var(--ns-primary-light, #2c6e69) 0%, var(--site-theme) 100%);
            padding: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .14), transparent 50%);
        }

        .cta h2 {
            font-family: var(--ns-font-serif);
            color: var(--site-white);
            font-size: 2.5rem;
            max-width: 715px;
            margin: 0 auto 25px;
            position: relative;
        }

        .cta p {
            font-family: var(--ns-font-sans);
            color: rgba(255, 255, 255, .9);
            max-width: 650px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.6;
            position: relative;
        }

        /* ===== FOOTER ===== */
        footer.site2 {
            background: var(--mint);
            padding: 70px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(31, 151, 156, .2);
        }

        .footer-about p {
            font-family: var(--ns-font-sans);
            font-size: 13.5px;
            color: #666;
            line-height: 1.75;
            margin: 16px 0 20px;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--site-white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--site-theme);
            transition: .2s;
        }

        .footer-social a:hover {
            background: var(--site-theme);
            color: var(--site-white);
        }

        .footer-social svg {
            width: 14px;
            height: 14px;
        }

        footer.site2 h4 {
            font-family: var(--ns-font-sans);
            font-size: 13px;
            color: var(--ns-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 18px;
            font-weight: 600;
        }

        footer.site2 .flinks li {
            margin-bottom: 11px;
        }

        footer.site2 .flinks a {
            font-family: var(--ns-font-sans);
            font-size: 13.8px;
            color: #666;
            transition: .2s;
        }

        footer.site2 .flinks a:hover {
            color: var(--site-theme);
        }

        .foot-addr p {
            font-family: var(--ns-font-sans);
            font-size: 13.8px;
            color: #666;
            line-height: 1.8;
        }

        .map-box {
            height: 130px;
            border-radius: var(--radius);
            background: linear-gradient(150deg, #cfe4e0, var(--site-theme));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
        }

        .map-box svg {
            width: 26px;
            height: 26px;
            color: var(--site-white);
        }

        .foot-bottom {
            display: flex;
            justify-content: space-between;
            padding: 22px 0;
            font-family: var(--ns-font-sans);
            font-size: 12.5px;
            color: #666;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ===== SCROLL REVEAL ===== */
        [data-reveal] {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        [data-reveal].in {
            opacity: 1;
            transform: translateY(0);
        }

        .ns-testimonial-section {

            padding: 90px 0;
            background: #eef8f7;

        }

        .ns-testimonial-card {

            background: #fff;
            border-radius: 22px;
            padding: 35px;
            height: 100%;
            position: relative;

            transition: .35s;

            border: 1px solid #e9ecef;

            box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

        }

        .ns-testimonial-card:hover {

            transform: translateY(-10px);

            box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

        }

        .quote-icon {

            width: 60px;
            height: 60px;

            border-radius: 50%;

            background: #11423f;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 25px;

        }

        .quote-icon i {

            color: #fff;

            font-size: 22px;

        }

        .testimonial-text {

            color: #666;

            line-height: 1.9;

            font-size: 16px;

            margin-bottom: 35px;

            min-height: 160px;

        }

        .testimonial-footer {

            display: flex;

            align-items: center;

        }

        .profile-image {

            width: 70px;

            height: 70px;

            border-radius: 50%;

            overflow: hidden;

            margin-right: 18px;

            flex-shrink: 0;

            border: 3px solid #11423f;

        }

        .profile-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

        }

        .profile-details h5 {

            margin: 0;

            color: #11423f;

            font-weight: 600;

            font-size: 20px;

        }

        .profile-details span {

            color: #888;

            font-size: 14px;

        }

        .ns-testimonial-card:before {

            content: "";

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 6px;

            background: #11423f;

            border-radius: 20px 20px 0 0;

        }

        /* Related Services */
        .ns-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .ns-related-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 25px;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            color: var(--ns-primary);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
            font-weight: 500;
            background: var(--ns-white);
        }

        .ns-related-item::after {
            content: '\f105';
            font-family: 'FontAwesome';
            color: #ccc;
        }

        .ns-related-item:hover {
            border-color: var(--ns-primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .hex-photo {
            width: 110%;
            height: 78%;
            /* clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%); */
            /* background: linear-gradient(150deg, #cfe4e9 0%, var(--teal-soft) 55%, var(--teal-dark) 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
            color: rgba(255, 255, 255, .92);
            text-align: center;
            padding: 20px;
        }

        @media(max-width:991px) {

            .ns-testimonial-card {

                margin-bottom: 30px;

            }

            .testimonial-text {

                min-height: auto;

            }

        }

        @media(max-width:767px) {

            .ns-testimonial-section {

                padding: 60px 0;

            }

            .ns-testimonial-card {

                padding: 25px;

            }

            .quote-icon {

                width: 50px;
                height: 50px;

            }

            .quote-icon i {

                font-size: 18px;

            }

            .profile-image {

                width: 60px;
                height: 60px;

            }

            .profile-details h5 {

                font-size: 18px;

            }

            .testimonial-text {

                font-size: 15px;

                line-height: 1.8;

            }

        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 980px) {

            .hero-grid,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                order: -1;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-track {
                grid-template-columns: repeat(5, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 40px;
            }

            .trust-points {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 16px;
            }

            .testi-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .ns-hero h1 {
                font-size: 2.2rem;
                text-align: center !important;
            }

            .ns-section {
                padding: 40px 0 !important;
            }

            .ns-process-section {
                padding: 40px 0 !important;
            }

            .ns-footer-cta {
                padding: 40px 0 !important;
            }
        }

        @media (max-width: 700px) {

            .why-grid,
            .service-grid {
                grid-template-columns: 1fr;
            }

            .process-track {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .process-track::before {
                display: none;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .trust-points {
                grid-template-columns: 1fr 1fr;
            }

            .explore-box {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hex-frame {
                width: 300px;
                height: 340px;
            }

            .hero-badge {
                left: 0;
            }

            .hero-copy h1 {
                font-size: 2.2rem;
            }
        }