:root {
    --teal: #106183;
    --teal-dark: #0d4f6a;
    --lime: #b0cc21;
    --lime-light: #f0f6d0;
    --white: #ffffff;
    --off-white: #f7f9fb;
    --light-teal: #e8f4f8;
    --text-dark: #0e2030;
    --text-mid: #3a5a6e;
    --text-light: #7a9aaa;
    --border: #d8eaf2;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 4px 16px rgba(16, 97, 131, .08);
    --shadow-md: 0 8px 32px rgba(16, 97, 131, .13);
    --shadow-lg: 0 20px 60px rgba(16, 97, 131, .16);
    --radius: 20px;
    --radius-xl: 28px
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

.site-nav {
    background: var(--white);
    box-shadow: 0 2px 24px rgba(16, 97, 131, .09);
    position: sticky;
    top: 0;
    z-index: 1000
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0
}

.nav-menu a {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-mid);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color .2s
}

.nav-menu a.active {
    font-weight: bold;
    position: relative
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--lime);
    transition: width .3s
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width .3s
}

.nav-menu a.active:hover,
.nav-menu a:hover {
    color: var(--teal)
}

.nav-menu a.active:hover::after,
.nav-menu a:hover::after {
    width: 100%
}

.btn-nav {
    background: var(--teal);
    color: var(--white) !important;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.btn-nav:hover {
    background: var(--teal-dark);
    transform: translateY(-1px)
}

.nav-toggler {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 20px;
    color: var(--teal);
    cursor: pointer
}

.mobile-drawer {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px 0 16px
}

.mobile-drawer.open {
    display: flex
}

.mobile-drawer a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 13px 24px;
    border-bottom: 1px solid var(--off-white);
    transition: color .2s, background .2s
}

.mobile-drawer a:hover {
    color: var(--teal);
    background: var(--off-white)
}

.mobile-drawer .btn-mob {
    margin: 14px 24px 0;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block
}

.hero {
    background: var(--white);
    padding: 72px 0 0;
    overflow: hidden;
    position: relative
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -120px;
    width: 560px;
    height: 560px;
    background: var(--light-teal);
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 9s ease-in-out infinite alternate
}

@keyframes floatBg {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(-30px, 40px) scale(1.06)
    }
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #edf7ee;
    border: 1px solid var(--lime);
    color: #4a6a00;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 16px;
    animation: fadeUp .6s ease both
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-sub {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: fadeUp .6s .05s ease both
}

.hero-title {
    font-weight: bold;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 54px);
    color: var(--text-dark);
    line-height: 1.13;
    margin-bottom: 18px;
    animation: fadeUp .7s .1s ease both
}

.hero-title .accent {
    color: var(--teal)
}

.hero-title .ul-lime {
    position: relative;
    display: inline-block
}

.hero-title .ul-lime::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: var(--lime);
    border-radius: 2px
}

.hero-desc {
    font-size: 15.5px;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 470px;
    margin-bottom: 30px;
    animation: fadeUp .7s .2s ease both
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both
}

.btn-prim {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(16, 97, 131, .28)
}

.btn-prim:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(16, 97, 131, .34);
    color: var(--white)
}

.btn-sec {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 12px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, color .2s, transform .2s
}

.btn-sec:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px)
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 38px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    animation: fadeUp .7s .4s ease both
}

.stat-item .num {
    font-size: 40px;
    color: var(--teal);
    font-weight: 800;
    line-height: 1
}

.stat-item .num span {
    color: var(--lime)
}

.stat-item .lbl {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 4px
}

.hero-image-wrap {
    position: relative;
    animation: fadeRight .9s .2s ease both
}

.hero-img-card {
    border-radius: 32px 32px 32px 80px;
    overflow: hidden;
    position: relative
}

.hero-img-card img {
    width: 100%;
    height: 666px;
    object-fit: cover;
    object-position: top center;
    display: block
}

.deco-ring {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--lime);
    opacity: .55;
    pointer-events: none
}

.deco-ring-2 {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid var(--teal);
    opacity: .3;
    pointer-events: none
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px
}

.float-card.fc1 {
    bottom: 32px;
    left: -28px;
    animation: floatC 4s ease-in-out infinite alternate
}

.float-card.fc2 {
    top: 52px;
    right: -18px;
    animation: floatC 4s 1.4s ease-in-out infinite alternate
}

.float-card.fc3 {
    bottom: 155px;
    right: -16px;
    animation: floatC 4s .7s ease-in-out infinite alternate
}

@keyframes floatC {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-10px)
    }
}

.fc-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px
}

.fc-ico.t {
    background: var(--light-teal);
    color: var(--teal)
}

.fc-ico.l {
    background: var(--lime-light);
    color: #5a7a00
}

.fc-val {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark)
}

.fc-lbl {
    font-size: 11px;
    color: var(--text-light)
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.marquee-strip {
    background: var(--teal);
    padding: 14px 0;
    margin-top: 72px;
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: mScroll 24s linear infinite
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .85);
    font-size: 13.5px;
    font-weight: 500;
    flex-shrink: 0
}

.marquee-item i {
    color: var(--lime);
    font-size: 14px
}

@keyframes mScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.sec {
    padding: 50px 0
}

.sec-bg {
    background: var(--off-white)
}

.sec-white {
    background: var(--white)
}

.container-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px
}

.section-tag {
    display: inline-block;
    background: var(--lime-light);
    color: #4a6a00;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 38px);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: bold
}

.section-heading .hl {
    color: var(--teal)
}

.section-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9
}

.sec-center {
    text-align: center
}

.sec-center .section-desc {
    max-width: 540px;
    margin: 0 auto
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    display: block
}

.about-exp-badge {
    position: absolute;
    bottom: 28px;
    left: -22px;
    background: var(--teal);
    color: var(--white);
    border-radius: 16px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--shadow-md)
}

.about-exp-badge .exp-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--lime);
    line-height: 1
}

.about-exp-badge .exp-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px
}

.about-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--lime);
    opacity: .5
}

.cred-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px
}

.cred-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-mid);
    font-weight: 500
}

.cred-list li i {
    color: var(--teal);
    font-size: 17px;
    flex-shrink: 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.sc-num {
    position: absolute;
    font-size: 60px;
    font-weight: 700;
    color: #1061831a;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    top: 0;
    right: 0; transition: transform .3s
}
.service-card:hover .sc-num{
    color: var(--teal); transition: transform .3s
}
.sc-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px
}

.sc-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px
}

.sc-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 52px
}

.why-img-wrap {
    position: relative
}

.why-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden
}

.why-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    display: block
}

.why-deco {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--teal);
    opacity: .25
}

.why-stat-card {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-width: 300px
}

.wsc-item {
    text-align: center
}

.wsc-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--teal)
}

.wsc-num span {
    color: var(--lime)
}

.wsc-lbl {
    font-size: 10.5px;
    color: var(--text-light);
    margin-top: 2px
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color .2s, background .2s
}

.why-point:hover {
    background: var(--off-white);
    border-color: var(--border)
}

.wp-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px
}

.wp-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.wp-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 96px;
    color: var(--light-teal);
    line-height: 1;
    pointer-events: none;
    z-index: 0
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.testi-card.featured {
    grid-column: span 2;
    background: var(--teal);
    border-color: var(--teal)
}

.testi-card.featured::before {
    color: rgba(255, 255, 255, .07)
}

.tc-stars {
    font-size: 15px;
    color: var(--lime);
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.tc-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
    margin-bottom: 22px;
    position: relative;
    z-index: 1
}

.testi-card.featured .tc-text {
    color: rgba(255, 255, 255, .85);
    font-size: 15.5px
}

.tc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1
}

.testi-card.featured .tc-footer {
    border-top-color: rgba(255, 255, 255, .18)
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0
}

.testi-card.featured .tc-av {
    background: rgba(176, 204, 33, .25);
    color: var(--lime)
}

.tc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark)
}

.testi-card.featured .tc-name {
    color: var(--white)
}

.tc-tag {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px
}

.testi-card.featured .tc-tag {
    color: rgba(255, 255, 255, .55)
}

.tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--lime-light);
    color: #4a6a00;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    flex-shrink: 0
}

.testi-card.featured .tc-badge {
    background: rgba(176, 204, 33, .2);
    color: var(--lime)
}

.testi-stars {
    color: var(--lime);
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.testi-text {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
    flex: 1
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.ta-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0
}

.ta-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark)
}

.ta-tag {
    font-size: 11.5px;
    color: var(--text-light)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 52px
}

.faq-cta {
    margin-top: 24px;
    padding: 24px;
    background: var(--light-teal);
    border-radius: 16px;
    border-left: 4px solid var(--teal)
}

.faq-cta p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s
}

.faq-item:hover {
    box-shadow: var(--shadow-sm)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color .2s
}

.faq-q:hover {
    color: var(--teal)
}

.faq-ico-wrap {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: background .2s, transform .3s
}

.faq-item.open .faq-q {
    color: var(--teal)
}

.faq-item.open .faq-ico-wrap {
    background: var(--teal);
    color: var(--white);
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.8;
    padding: 0 20px
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 18px
}

.cta-sec {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(176, 204, 33, .15)
}

.cta-sec::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, .07)
}

.cta-grid {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8
}

.cta-addr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none
}

.cta-addr i {
    color: var(--lime);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0
}

.contact-pills {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 15px 20px;
    text-decoration: none;
    transition: background .2s
}

.contact-pill:hover {
    background: rgba(255, 255, 255, .18)
}

.cp-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--lime);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.cp-lbl {
    text-align: start;
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .8px
}

.cp-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--white)
}

.site-footer {
    background: var(--text-dark);
    padding: 56px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.footer-contact {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.footer-logo {
      height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: var(--white);
    line-height: 1.8;
    max-width: 280px;
    margin-top: 14px
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-links {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--white)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .35)
}
.footer-copy a{    text-decoration: none;
    color: rgba(255, 255, 255, .35) !important;
}
.footer-socials {
    display: flex;
    gap: 10px
}

.soc-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s
}

.soc-ico:hover {
    background: var(--teal);
    color: var(--white)
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.fci-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(176, 204, 33, .15);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.fci-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px
}

.fci-value {
    font-size: 13.5px;
    color: var(--white);
    line-height: 1.65;
    text-decoration: none;
    transition: color .2s
}

a.fci-value:hover {
    color: var(--lime)
}

.page-hero {
    background: var(--teal);
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 50px solid rgba(176, 204, 33, .12)
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, .06)
}

.page-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(176, 204, 33, .18);
    border: 1px solid rgba(176, 204, 33, .4);
    color: var(--lime);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px
}

.page-hero-title span {
    color: var(--lime)
}

.page-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    max-width: 860px;
    margin-bottom: 24px
}

.breadcrumb-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

.breadcrumb-bar a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s
}

.breadcrumb-bar a:hover {
    color: var(--lime)
}

.breadcrumb-bar i {
    font-size: 10px
}

.breadcrumb-bar span {
    color: var(--lime);
    font-weight: 600
}

.svc-tabs-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 100
}

.svc-tabs {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none
}

.svc-tabs::-webkit-scrollbar {
    display: none
}

.svc-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    text-decoration: none;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    flex-shrink: 0
}

.svc-tab i {
    font-size: 16px
}

.svc-tab:hover {
    color: var(--teal)
}

.svc-tab.active {
    color: var(--teal);
    border-bottom-color: var(--lime)
}

.svc-detail-block {
    padding: 50px;
    border-bottom: 1px solid var(--border)
}

.svc-detail-img {
    position: relative
}

.svc-detail-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.svc-detail-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block
}

.svc-img-badge {
    position: absolute;
    bottom: 22px;
    left: -18px;
    background: var(--teal);
    color: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px
}

.sib-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(176, 204, 33, .25);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.sib-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--white)
}

.sib-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .65)
}

.svc-img-deco {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--lime);
    opacity: .5
}

.svc-detail-content .section-tag {
    margin-bottom: 10px
}

.svc-detail-content .section-heading {
    margin-bottom: 14px
}

.svc-detail-content .section-desc {
    margin-bottom: 22px
}

.svc-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px
}

.svc-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.65
}

.svc-point i {
    color: var(--lime);
    font-size: 17px;
    margin-top: 1px;
    flex-shrink: 0
}

.svc-procedure-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px
}

.svc-proc-tag {
    font-size: 12px;
    font-weight: 600;
    background: var(--lime-light);
    color: #4a6a00;
    border-radius: 20px;
    padding: 5px 13px;
    border: 1px solid rgba(176, 204, 33, .4)
}

.process-strip {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden
}

.process-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(176, 204, 33, .1)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.process-step {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    position: relative;
    transition: background .2s
}

.process-step:hover {
    background: rgba(255, 255, 255, .14)
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: rgba(176, 204, 33, .4);
    transform: translateY(-50%)
}

.ps-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: var(--font-display)
}

.ps-ico {
    font-size: 28px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 12px
}

.ps-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.ps-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7
}

.quick-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0
}

.quick-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.qs-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 28px;
    border-right: 1px solid var(--border);
    text-decoration: none;
    transition: background .2s
}

.qs-item:last-child {
    border-right: none
}

.qs-item:hover {
    background: var(--off-white)
}

.qs-ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background .2s, color .2s
}

.qs-item:hover .qs-ico {
    background: var(--teal);
    color: var(--white)
}

.qs-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 4px
}

.qs-value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark)
}

.qs-item:hover .qs-value {
    color: var(--teal)
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.info-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    transition: transform .2s, box-shadow .2s
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.info-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.ib-ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.ib-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark)
}

.ib-sub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px
}

.ib-rows {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ib-row {    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.6
}

.ib-row i {
    color: var(--lime);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.ib-row a {    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: color .2s
}

.ib-row a:hover {
    color: var(--teal)
}

.timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.timing-item {
    background: var(--off-white);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border)
}

.timing-day {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.timing-time {
    font-size: 12.5px;
    color: var(--teal);
    font-weight: 600
}

.timing-closed {
    font-size: 12.5px;
    color: var(--text-light)
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px
}

.soc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s
}

.soc-pill:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
}

.soc-pill i {
    font-size: 16px
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px
}

.form-header {
    margin-bottom: 28px
}

.form-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px
}

.form-title span {
    color: var(--teal)
}

.form-sub {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group.full {
    grid-column: 1 / -1
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark)
}

.form-label span {
    color: red
}

.form-control-custom {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s, background .2s;
    outline: none;
    resize: none
}

.form-control-custom:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 97, 131, .1)
}

.form-control-custom::placeholder {
    color: var(--text-light)
}

.form-select-custom {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%237a9aaa' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color .2s, box-shadow .2s, background-color .2s
}

.form-select-custom:focus {
    border-color: var(--teal);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 97, 131, .1)
}
.is-invalid{
    border: 1px solid red;
}
.is-valid{
    border: 1px solid green;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(16, 97, 131, .28)
}

.btn-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(16, 97, 131, .34)
}

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.form-note i {
    color: var(--lime)
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px
}

.form-success.show {
    display: block
}

.fs-ico {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--lime-light);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 16px
}

.fs-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px
}

.fs-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7
}

.map-section {
    padding: 0 0 90px;
    background: var(--off-white)
}

.map-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative
}

.map-container iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.moc-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.moc-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.moc-addr {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center
}

.intro-img-wrap {
    position: relative
}

.intro-img-main {
    border-radius: 28px;
    overflow: hidden
}

.intro-img-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top;
    display: block
}

.intro-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--lime);
    opacity: .5
}

.intro-deco-2 {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--teal);
    opacity: .3
}

.intro-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: var(--teal);
    color: var(--white);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px
}

.ib-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(176, 204, 33, .25);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.ib-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--lime);
    line-height: 1
}

.ib-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    margin-top: 2px
}

.medal-badge {
    position: absolute;
    top: 22px;
    right: -18px;
    background: var(--lime);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center
}

.medal-badge i {
    font-size: 22px;
    color: var(--text-dark)
}

.medal-badge .mb-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3
}

.timeline {
    position: relative;
    padding-left: 36px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border)
}

.tl-item {
    position: relative;
    margin-bottom: 36px
}

.tl-item:last-child {
    margin-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--teal);
    flex-shrink: 0
}

.tl-item.highlight .tl-dot {
    background: var(--lime);
    box-shadow: 0 0 0 2px var(--lime)
}

.tl-year {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--light-teal);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px
}

.tl-item.highlight .tl-year {
    background: var(--lime-light);
    color: #4a6a00
}

.tl-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px
}

.tl-sub {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--lime);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px
}

.edu-img-wrap {
    position: relative
}

.edu-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.edu-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top;
    display: block
}

.edu-deco {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--lime);
    opacity: .5
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.exp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.exp-card:hover::before {
    transform: scaleX(1)
}

.exp-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: background .2s, color .2s
}

.exp-card:hover .exp-ico {
    background: var(--teal);
    color: var(--white)
}

.exp-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px
}

.exp-desc {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.75
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform .2s, box-shadow .2s
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.why-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--light-teal);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px
}

.why-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background .2s, border-color .2s, transform .2s
}

.spec-item:hover {
    background: var(--light-teal);
    border-color: var(--teal);
    transform: translateY(-2px)
}

.spec-item i {
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0
}

.approach-strip {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden
}

.approach-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(176, 204, 33, .1)
}

.approach-strip::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, .06)
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.approach-card {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: background .2s
}

.approach-card:hover {
    background: rgba(255, 255, 255, .15)
}

.ac-ico {
    font-size: 30px;
    color: var(--lime);
    margin-bottom: 14px
}

.ac-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.ac-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7
}

.stats-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.stats-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.strip-stat {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid var(--border)
}

.strip-stat:last-child {
    border-right: none
}

.ss-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1
}

.ss-num span {
    color: var(--lime)
}

.ss-lbl {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px
}

@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-card.featured {
        grid-column: span 2
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-step:not(:last-child)::after {
        display: none
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-form-wrap {
        position: static
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {

    .nav-menu,
    .btn-nav {
        display: none
    }

    .nav-toggler {
        display: flex;
        align-items: center
    }

    .hero-inner,
    .about-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 48px 0 0
    }

    .hero-inner {
        gap: 36px;
        display: flex;
        flex-direction: column-reverse
    }

    .hero-img-card img {
        height: 100%;
        object-fit: contain
    }

    .float-card.fc1 {
        left: 10px;
        bottom: 20px
    }

    .float-card.fc2 {
        right: 8px;
        top: 30px
    }

    .float-card.fc3 {
        display: none
    }

    .hero-desc {
        max-width: 100%
    }

    .about-exp-badge {
        left: 10px;
        bottom: 18px
    }

    .why-stat-card {
        right: 10px;
        bottom: 16px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-contact {
        grid-column: span 4
    }

    .footer-tagline {
        max-width: 100%
    }

    .sec {
        padding: 40px 0
    }

    .quick-strip-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .qs-item:nth-child(2) {
        border-right: none
    }

    .qs-item:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .qs-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none
    }

    .map-overlay-card {
        display: none
    }

    .svc-img-badge {
        left: 10px;
        bottom: 16px
    }

    .svc-tabs-wrap {
        top: 72px
    }

    .svc-detail-img-main img {
        height: 300px
    }

    .intro-grid,
    .edu-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .intro-badge {
        left: 10px;
        bottom: 18px
    }

    .medal-badge {
        right: 10px;
        top: 14px
    }

    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .strip-stat:nth-child(2) {
        border-right: none
    }

    .strip-stat:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .strip-stat:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none
    }

    .why-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .testi-card.featured {
        grid-column: span 1
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .about-img-main img,
    .why-img-main img {
        height: 700px
    }

    .why-stat-card {
        position: static;
        margin-top: 16px;
        width: 100%
    }

    .sec {
        padding: 30px 0
    }
.contact-pills {
    grid-template-columns: repeat(2, 1fr);
}

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-group.full {
        grid-column: auto
    }

    .contact-form-wrap {
        padding: 28px 20px
    }

    .timing-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .expertise-grid {
        grid-template-columns: 1fr
    }

    .spec-grid {
        grid-template-columns: 1fr
    }

    .approach-grid {
        grid-template-columns: 1fr
    }

    .intro-img-main img,
    .edu-img-main img {
        height: 700px
    }
}
.gallery{
    margin: 50px 0;
}
@media (max-width:540px) {
    .hero-btns {
        flex-direction: column
    }
.contact-pills {
    grid-template-columns: repeat(1, 1fr);
}
    .btn-prim,
    .btn-sec,
    .btn-prim,
    .btn-outline-w {
        justify-content: center
    }

    .footer-grid {
        display: block
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .hero-stats {
        gap: 14px
    }

    .stat-item .num {
        font-size: 24px
    }

    .about-exp-badge {
        position: static;
        margin-top: 14px;
        display: inline-block;
        border-radius: 12px
    }

    .why-stat-card {
        grid-template-columns: repeat(2, 1fr)
    }

    .quick-strip-inner {
        grid-template-columns: 1fr
    }

    .qs-item {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .qs-item:last-child {
        border-bottom: none
    }

    .social-row {
        flex-wrap: wrap
    }

    .map-container iframe {
        height: 300px
    }

    .svc-img-badge {
        display: none
    }

    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .intro-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        border-radius: 14px
    }

    .medal-badge {
        display: none
    }

    .btn-lime,
    .btn-outline-w {
        justify-content: center
    }
    .float-card.fc1,.about-exp-badge,
    .float-card.fc2{
        display: none;
    }
}