* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito Sans', sans-serif;
            color: #1c2d45;
            background: #fff;
            overflow-x: hidden;
        }

        :root {
            --navy: #1a3a6b;
            --navy2: #0f2347;
            --navy3: #2a5298;
            --green: #00aab4;
            --green2: #14aba9;
            --green3: #e8f5e9;
            --teal: #1e8a8a;
            --g50: #f7f9fc;
            --g100: #eef2f8;
            --g200: #dde3ed;
            --g400: #8fa3bf;
            --g600: #4a5f7a;
            --g800: #1c2d45;
        }

        .topbar {
            background: var(--navy2);
            padding: 8px 5%;
            display: flex;
            justify-content: flex-end;
            gap: 32px;
        }

        .topbar span {
            color: rgba(255, 255, 255, .8);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        nav {
            position: sticky;
            top: 0;
            z-index: 9000;
            background: #fff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .10);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            min-height: 90px;
            overflow: visible;
        }

        .nav-logo img {
            height: 90px;
            width: auto;
            max-width: 310px;
            object-fit: contain;
            display: block;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            overflow: visible;
        }

        .nav-link {
            color: var(--g800);
            font-size: 13.5px;
            font-weight: 700;
            padding: 0 14px;
            height: 90px;
            display: flex;
            align-items: center;
            position: relative;
            cursor: pointer;
            transition: color .2s;
            white-space: nowrap;
            user-select: none;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--green);
            transform: scaleX(0);
            transition: transform .25s;
        }
        .nav-links a{
            text-decoration: none;  
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--navy);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .nav-cta {
            background: var(--green);
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 6px;
            height: auto !important;
            margin-left: 12px;
            font-weight: 800;
            transition: background .2s;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--green2) !important;
        }

        .dd {
            position: relative;
        }

        .dd-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 252px;
            z-index: 99999;
            background: #fff;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 10px 32px rgba(0, 0, 0, .16);
            border-top: 3px solid var(--green);
            padding: 4px 0;
        }

        .dd:hover>.dd-menu {
            display: block;
        }

        .dd-item {
            display: block;
            padding: 11px 18px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--g600);
            cursor: pointer;
            transition: background .15s, color .15s;
            white-space: nowrap;
        }

        .dd-item:hover {
            background: var(--g50);
            color: var(--green2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            display: block;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        .hero {
            position: relative;
            min-height: 68vh;
            min-width: 100%;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--navy2);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(110deg, rgba(15, 35, 71, .90) 0%, rgba(15, 35, 71, .58) 60%, rgba(15, 35, 71, .22) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 5%;
            width: 100%;
        }
        .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #105554;
    border: 1px solid #127775;
    border-radius: 30px;
    padding: 7px 18px;
    color: #a8e6ab;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

      

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            display: inline-block;
        }

        .hero-inner h1 {
            font-size: clamp(32px, 5vw, 58px);
            font-weight: 900;
            color: #fff;
            line-height: 1.13;
            margin-bottom: 20px;
            max-width: 680px;
            font-family: 'Merriweather', serif;
        }

        .hero-inner h1 span {
            color: #13cbc8;
        }

        .hero-inner>p {
            font-size: 16.5px;
            color: rgba(255, 255, 255, .82);
            line-height: 1.75;
            max-width: 560px;
            margin-bottom: 36px;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-green {
            background: var(--green);
            color: #fff;
            padding: 14px 30px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
            cursor: pointer;
            border: none;
            font-family: 'Nunito Sans', sans-serif;
        }

        .btn-green:hover {
            background: var(--green2);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, .7);
            color: #fff;
            padding: 14px 30px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            transition: all .3s;
            cursor: pointer;
            background: transparent;
            font-family: 'Nunito Sans', sans-serif;
        }

        .btn-outline:hover {
            border-color: var(--green);
            color: var(--green);
        }

        .btn-navy {
            background: var(--navy);
            color: #fff;
            padding: 12px 26px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 13.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .3s;
            cursor: pointer;
            border: none;
            font-family: 'Nunito Sans', sans-serif;
        }

        .btn-navy:hover {
            background: var(--navy3);
            transform: translateY(-2px);
        }

        .btn-w {
            background: #fff;
            color: var(--green2);
            padding: 14px 34px;
            border-radius: 6px;
            font-weight: 900;
            font-size: 14px;
            display: inline-block;
            transition: all .3s;
            cursor: pointer;
            border: none;
            font-family: 'Nunito Sans', sans-serif;
        }

        .btn-w:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
        }

        .ticker {
            background: var(--teal);
            padding: 13px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-inner {
            display: inline-block;
            animation: tick 32s linear infinite;
        }

        .ticker-inner span {
            display: inline-block;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 0 24px;
        }

        .ticker-inner span::before {
            content: "· ";
            color: rgba(255, 255, 255, .6);
        }

        @keyframes tick {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        .stats-bar {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat {
            padding: 30px 18px;
            text-align: center;
            border-right: 1px solid var(--g200);
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-num {
            font-size: 32px;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }

        .stat-label {
            font-size: 11.5px;
            color: var(--g600);
            margin-top: 5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .8px;
        }

        section {
            padding: 86px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .stag {
            font-size: 11.5px;
            font-weight: 800;
            color: var(--green2);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 10px;
        }

        .stitle {
            font-size: clamp(23px, 3vw, 35px);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 13px;
            font-family: 'Merriweather', serif;
        }

        .sdesc {
            font-size: 15px;
            color: var(--g600);
            line-height: 1.78;
            max-width: 620px;
        }

        .tcenter {
            text-align: center;
        }

        .tcenter .sdesc {
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-imgs {
            position: relative;
            height: 440px;
        }

        .img-main {
            position: absolute;
            top: 0;
            left: 0;
            width: 76%;
            height: 340px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
        }

        .img-sub {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 52%;
            height: 240px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
            border: 4px solid #fff;
        }

        .float-stat {
            position: absolute;
            bottom: -16px;
            right: -16px;
            background: var(--navy);
            color: #fff;
            border-radius: 10px;
            padding: 16px 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
        }

        .float-stat strong {
            display: block;
            font-size: 26px;
            font-weight: 900;
            color: #6ee38b;
        }

        .float-stat span {
            font-size: 11px;
            color: rgba(255, 255, 255, .7);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .checklist {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .check-dot {
            width: 19px;
            height: 19px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            color: #fff;
            font-size: 10px;
            font-weight: 900;
        }

        .check-item p {
            font-size: 14px;
            color: var(--g600);
            line-height: 1.65;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
            margin-top: 22px;
        }

        .mv-card {
            background: #fff;
            border-radius: 10px;
            padding: 17px;
            border-left: 4px solid var(--green);
            box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
        }

        .mv-card h4 {
            font-size: 11px;
            font-weight: 900;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .mv-card p {
            font-size: 12.5px;
            color: var(--g600);
            line-height: 1.65;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .svc-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
            border: 1px solid var(--g200);
            transition: all .35s;
            cursor: pointer;
        }

        .svc-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
            border-color: var(--green);
        }

        .svc-card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
        }

        .svc-body {
            padding: 20px;
        }

        .svc-icon {
            width: 46px;
            height: 46px;
            background: var(--green3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .svc-card h3 {
            font-size: 15.5px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .svc-card p {
            font-size: 12.5px;
            color: var(--g600);
            line-height: 1.68;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 12px;
            color: var(--green2);
            font-weight: 800;
            font-size: 12.5px;
        }

        .apart-bg {
            background: var(--navy);
        }

        .apart-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .apart-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 14px;
            padding: 32px 24px;
            text-align: center;
            transition: all .3s;
            cursor: pointer;
        }

        .apart-card:hover {
            background: rgba(76, 175, 80, .12);
            border-color: var(--green);
            transform: translateY(-4px);
        }

        .apart-icon {
            width: 56px;
            height: 56px;
            background: rgba(76, 175, 80, .15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 16px;
            border: 2px solid rgba(76, 175, 80, .4);
        }

        .apart-card h3 {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .apart-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, .68);
            line-height: 1.72;
        }
.apart-card img{
    display:block;
    margin:0 auto 20px;
    max-width:180px;
    height:70px;
    object-fit:contain;
}

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .counter-card {
            text-align: center;
            padding: 36px 16px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
            border-top: 4px solid var(--green);
        }

        .counter-num {
            font-size: 40px;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }

        .counter-label {
            font-size: 11.5px;
            color: var(--g600);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-top: 6px;
        }

        .why-bg {
            background: var(--navy2);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-img img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            border-radius: 14px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
        }

        .why-features {
            margin-top: 26px;
            display: flex;
            flex-direction: column;
            gap: 17px;
        }

        .why-feat {
            display: flex;
            gap: 13px;
            align-items: flex-start;
        }

        .why-icon {
            width: 44px;
            height: 44px;
            background: rgba(76, 175, 80, .15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
            border: 1px solid rgba(76, 175, 80, .35);
        }

        .why-feat h4 {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 3px;
        }

        .why-feat p {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .65);
            line-height: 1.65;
        }

        .spec-grid8 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .spec-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
            border-bottom: 3px solid var(--green);
            transition: all .3s;
            cursor: pointer;
        }

        .spec-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
        }

        .spec-card .icon {
            font-size: 28px;
            margin-bottom: 9px;
        }

        .spec-card h4 {
            font-size: 13px;
            font-weight: 800;
            color: var(--navy);
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .testi-card {
            background: var(--g50);
            border-radius: 14px;
            padding: 28px;
            border: 1px solid var(--g200);
            position: relative;
        }

        .stars {
            color: #f59e0b;
            font-size: 13px;
            margin-bottom: 4px;
        }

        .testi-text {
            font-size: 13.5px;
            color: var(--g600);
            line-height: 1.78;
            font-family: 'Merriweather', serif;
            font-style: italic;
            margin-bottom: 18px;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .testi-av {
            width: 40px;
            height: 40px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 15px;
            flex-shrink: 0;
        }

        .testi-name {
            font-weight: 800;
            color: var(--navy);
            font-size: 13px;
        }

        .testi-role {
            font-size: 11.5px;
            color: var(--g400);
        }

        .cta-band {
            background: linear-gradient(135deg, var(--green2), var(--green));
            padding: 64px 0;
            text-align: center;
        }

        .cta-band h2 {
            font-size: clamp(21px, 3vw, 33px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 12px;
            font-family: 'Merriweather', serif;
        }

        .cta-band p {
            font-size: 15px;
            color: rgba(255, 255, 255, .87);
            margin-bottom: 30px;
        }

        .page-hero {
            background: linear-gradient(135deg, var(--navy2), var(--navy3));
            padding: 100px 0 58px;
        }

        .page-hero h1 {
            color: #fff;
            font-size: clamp(25px, 4vw, 40px);
            font-weight: 900;
            font-family: 'Merriweather', serif;
        }

        .page-hero p {
            color: rgba(255, 255, 255, .75);
            margin-top: 12px;
            font-size: 15.5px;
            max-width: 560px;
            line-height: 1.75;
        }

        .sd-section {
            padding: 66px 0;
        }

        .sd-section:nth-child(even) {
            background: var(--g50);
        }

        .sd-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .sd-grid.rev {
            direction: rtl;
        }

        .sd-grid.rev>* {
            direction: ltr;
        }

        .sd-img img {
            width: 100%;
            border-radius: 14px;
            height: 350px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
        }

        .sd-list {
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 9px;
            list-style: none;
            padding: 0;
        }

        .sd-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--g600);
            line-height: 1.65;
        }

        .tick {
            color: var(--green);
            font-weight: 900;
            flex-shrink: 0;
            font-size: 14px;
            margin-top: 1px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .val-card {
            background: #fff;
            border-radius: 14px;
            padding: 26px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
            text-align: center;
            border-top: 4px solid var(--green);
        }

        .val-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .val-card h3 {
            font-size: 15.5px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .val-card p {
            font-size: 13px;
            color: var(--g600);
            line-height: 1.65;
        }

        .no-openings {
            background: #fff;
            border-radius: 14px;
            padding: 52px 34px;
            text-align: center;
            max-width: 560px;
            margin: 48px auto;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
            border: 1px solid var(--g200);
        }

        .no-openings .ni {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .no-openings h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 9px;
        }

        .no-openings p {
            font-size: 14px;
            color: var(--g600);
            line-height: 1.72;
            margin-bottom: 7px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
            border: 1px solid var(--g200);
            transition: all .3s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
        }

        .blog-card img {
            width: 100%;
            height: 185px;
            object-fit: cover;
            display: block;
        }

        .blog-body {
            padding: 19px;
        }

        .blog-tag {
            font-size: 11px;
            font-weight: 800;
            color: var(--green2);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 7px;
        }

        .blog-card h3 {
            font-size: 14.5px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 6px;
            line-height: 1.35;
        }

        .blog-card p {
            font-size: 12.5px;
            color: var(--g600);
            line-height: 1.65;
        }

        .blog-meta {
            display: flex;
            gap: 12px;
            margin-top: 10px;
            font-size: 11px;
            color: var(--g400);
            font-weight: 700;
        }

        .spec-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 36px;
        }

        .spec-detail-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--g200);
            box-shadow: 0 4px 13px rgba(0, 0, 0, .06);
            display: flex;
            gap: 15px;
            align-items: flex-start;
            cursor: pointer;
            transition: all .3s;
        }

        .spec-detail-card:hover {
            border-color: var(--green);
            transform: translateY(-2px);
        }

        .spec-detail-icon {
            width: 48px;
            height: 48px;
            background: var(--green3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 21px;
            flex-shrink: 0;
        }

        .spec-detail-card h3 {
            font-size: 15px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .spec-detail-card p {
            font-size: 12.5px;
            color: var(--g600);
            line-height: 1.65;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        .c-info h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 18px;
        }

        .c-detail {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .c-ico {
            width: 42px;
            height: 42px;
            background: var(--green3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .c-detail strong {
            display: block;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 3px;
            font-size: 13.5px;
        }

        .c-detail span {
            color: var(--g600);
            font-size: 13px;
            line-height: 1.7;
        }

        .c-form {
            background: var(--g50);
            border-radius: 14px;
            padding: 36px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
        }

        .c-form h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 22px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .fg {
            margin-bottom: 15px;
        }

        .fg label {
            display: block;
            font-size: 11px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .fg input,
        .fg textarea,
        .fg select {
            width: 100%;
            padding: 11px 13px;
            border: 2px solid var(--g200);
            border-radius: 7px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 13.5px;
            color: var(--g800);
            outline: none;
            background: #fff;
            transition: border-color .2s;
        }

        .fg input:focus,
        .fg textarea:focus,
        .fg select:focus {
            border-color: var(--green);
        }

        .fg textarea {
            height: 105px;
            resize: vertical;
        }

        footer {
            background: #fff;
            border-top: 3px solid var(--green);
            padding: 58px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 34px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5% 42px;
        }

        .f-logo img {
            height: 80px;
            width: auto;
            max-width: 260px;
            display: block;
            margin-bottom: 13px;
        }

        .f-brand-desc {
            font-size: 13px;
            color: var(--g600);
            line-height: 1.75;
        }

        .f-crow {
            display: flex;
            align-items: flex-start;
            gap: 7px;
            margin-top: 9px;
            font-size: 12.5px;
            color: var(--g600);
        }

        .f-col h4 {
            font-size: 11.5px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--g400);
            margin-bottom: 13px;
        }

        .f-col a {
            display: block;
            color: var(--g600);
            font-size: 13px;
            margin-bottom: 8px;
            transition: color .2s;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.6;
        }

        .f-col a:hover {
            color: var(--green2);
        }

        .footer-bottom {
            background: var(--g100);
            padding: 16px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--g200);
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--g600);
        }

        .f-social {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .soc-img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            overflow: hidden;
            object-fit: cover;
            cursor: pointer;
            transition: opacity .2s;
        }

        .soc-img:hover {
            opacity: .8;
        }

        .soc-txt {
            width: 33px;
            height: 33px;
            border-radius: 50%;
            background: var(--g200);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 12px;
            font-weight: 900;
            cursor: pointer;
            transition: background .2s, color .2s;
        }

        .soc-txt:hover {
            background: var(--green2);
            color: #fff;
        }

        @media(max-width:960px) {
            .about-grid,
            .why-grid,
            .sd-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .svc-grid {
                grid-template-columns: 1fr 1fr;
            }
            .apart-grid,
            .values-grid,
            .counter-grid {
                grid-template-columns: 1fr 1fr;
            }
            .spec-grid8,
            .blog-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testi-grid,
            .spec-detail-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: #fff;
                padding-bottom: 20px;
                border-top: 1px solid var(--g100);
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .nav-link {
                height: 56px;
                width: 100%;
                padding: 0 5%;
                border-bottom: 1px solid var(--g50);
            }
            .nav-link::after { display: none; }
            .nav-cta { margin: 15px 5% 0; justify-content: center; }
            .dd-menu { position: static; width: 100%; box-shadow: none; border: none; background: var(--g50); }
        }

        @media(max-width:580px) {
            .svc-grid,
            .apart-grid,
            .values-grid,
            .counter-grid,
            .spec-grid8,
            .blog-grid,
            .spec-detail-grid {
                grid-template-columns: 1fr;
            }
            .form-row,
            .mv-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

 a {
    text-decoration: none;
}
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    width: 180px;
    margin-bottom: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: auto;
    border: 4px solid #eee;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.apart-bg{
    background:linear-gradient(135deg,#0f2c5c,#184a8c);
    padding:90px 0;
    overflow:hidden;
}

.apartSwiper{
    padding:20px 10px 80px;
}

.apart-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    min-height:320px;
    border:1px solid #eef2f7;
    transition:all .3s ease;
}

.apart-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.apart-card img{
    display:block;
    margin:0 auto 20px;
    max-width:180px;
    height:80px;
    object-fit:contain;
}

.ehr-category{
    display:inline-block;
    background:#eef5ff;
    color:#0f2c5c;
    padding:8px 16px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.apart-card p{
    color:#555;
    font-size:15px;
    line-height:1.8;
    margin:15px 0 0;
}

.ehr-pills{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.ehr-pills span{
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(5px);
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.swiper-button-prev{
    left:-5px;
}

.swiper-button-next{
    right:-5px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
    background:#0d6efd;
    transform:scale(1.08);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after{
    color:#fff;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:20px;
    font-weight:700;
    color:#0f2c5c;
}

/* Pagination */
.swiper-pagination{
    bottom:0 !important;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
    width:28px;
    border-radius:10px;
}

/* Mobile */
@media(max-width:768px){

    .apart-card{
        min-height:auto;
        padding:25px;
    }

    .apart-card img{
        max-width:150px;
        height:60px;
    }

    .swiper-button-prev,
    .swiper-button-next{
        display:none;
    }
}   
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}
.apart-card:hover p {
    color: #fff;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
 
    top: 90% !important;
 
}
.ehr-note{
    color:#fff;
}
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: left;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    padding: 0 5%;
}

/* Mobile */
@media screen and (max-width: 768px) {

    .hero {
        min-height: 45vh;
        text-align: center;
    }

    .hero-inner {
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .hero-bg img {
        object-fit: fill;
        height: 100%;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {

    .hero {
        min-height: 30vh;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.error input { border-color: red; border-width: 2px; }
    .success input { border-color: green; border-width: 2px; }
    .error span { color: red; }
    .success span { color: green; }
    span.error { color: red; }