:root {
    --emerald: #0D7C4F;
    --emerald-light: #E8F5EE;
    --emerald-dark: #065A3A;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-mid: #E9ECEF;
}



body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----- EMRALD UTILITY ----- */
.text-emerald {
    color: var(--emerald) !important;
}
.bg-emerald {
    background-color: var(--emerald) !important;
}
.border-emerald {
    border-color: var(--emerald) !important;
}
.btn-outline-emerald {
    background: transparent !important;
    border: 2px solid var(--emerald) !important;
    color: var(--black) !important;
    border-radius: 0 !important;
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-outline-emerald:hover {
    background: var(--emerald) !important;
    color: var(--white) !important;
    border-color: var(--emerald) !important;
}
.btn-outline-emerald-white {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 2px solid var(--emerald) !important;
    color: var(--black) !important;
    border-radius: 0 !important;
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.btn-outline-emerald-white:hover {
    background: var(--emerald) !important;
    color: var(--white) !important;
    border-color: var(--emerald) !important;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-weight: 400;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.emerald-divider {
    width: 60px;
    height: 4px;
    background: var(--emerald);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 0;
}

/* ----- NAVBAR ----- */
.navbar-custom {
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0rem 0;
    transition: all 0.3s ease;
}
.navbar-custom .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.navbar-custom .navbar-brand i {
    color: var(--emerald);
    font-size: 1.6rem;
}
.navbar-custom .navbar-brand span {
    color: var(--emerald);
}

.navbar-custom .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--black) !important;
    padding: 0.3rem 0.8rem !important;
    transition: color 0.2s ease;
    position: relative;
}
.navbar-custom .nav-link:hover {
    color: var(--emerald) !important;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after {
    width: 60%;
}

/* Navbar button override */
.navbar-custom .btn-get-quote {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 2px solid var(--emerald) !important;
    color: var(--black) !important;
    border-radius: 0 !important;
    padding: 0.3rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin-left: 0.5rem;
}
.navbar-custom .btn-get-quote:hover {
    background: var(--emerald) !important;
    color: var(--white) !important;
    border-color: var(--emerald) !important;
}

/* Hamburger icon */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,26,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav adjustments */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }
    .navbar-custom .nav-link {
        padding: 0.6rem 0 !important;
        text-align: center;
    }
    .navbar-custom .nav-link::after {
        display: none;
    }
    .navbar-custom .btn-get-quote {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0 0.25rem 0;
        padding: 0.6rem;
    }
    .navbar-custom .navbar-collapse {
        padding-bottom: 0.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ----- HERO ----- */
.hero {
    padding: 3rem 0 2rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Asset/logo5.png');  /* ← change to your image path */
    background-size: cover;
    background-position: center;
    opacity: 1;              
    z-index: 0;
    pointer-events: none;        
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 124, 79, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);  /* semi‑transparent dark */
    z-index: 1;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}


.hero h1,
.hero h1 .highlight,
.hero p,
.hero .hero-stats .stat .number,
.hero .hero-stats .stat .label {
    color: #fff !important;
}

/* Keep emerald colour for the highlight text */
.hero h1 .highlight {
    color: var(--emerald) !important;
}

/* Stats label colour (lighter) */
.hero .hero-stats .stat .label {
    color: rgba(255, 255, 255, 0.7) !important;
}



.hero h1 {
    font-weight: 700;
    font-size: 3.8rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}
.hero h1 .highlight {
    color: var(--emerald);
    position: relative;
}
.hero p {
    font-size: 1.2rem;
    color: #4A4A4A;
    max-width: 520px;
    margin-bottom: 2rem;
    font-weight: 400;
}
.hero .hero-badge {
    display: inline-block;
    background: var(--emerald-light);
    color: var(--emerald-dark);
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    border-radius: 0;
}
.hero .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.hero .hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.hero .hero-stats .stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.2;
}
.hero .hero-stats .stat .label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}
.hero .hero-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.hero .hero-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.hero .hero-image-wrapper .floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-left: 4px solid var(--emerald);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.hero .hero-image-wrapper .floating-badge i {
    color: var(--emerald);
    margin-right: 0.5rem;
}
.hero .hero-image-wrapper .floating-badge strong {
    font-weight: 600;
}

/* 🔧 FIX: Ensure hero button stays visible at all times */
.hero .btn-outline-emerald {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: none !important;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 3rem 0 2rem 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero .hero-stats {
        justify-content: center;
        gap: 1.8rem;
        flex-wrap: wrap;
    }
    .hero .hero-image-wrapper img {
        height: 280px;
        margin-top: 2rem;
    }
    .hero .hero-image-wrapper .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0.8rem;
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}
@media (max-width:767.98px){

.hero{

    min-height:100vh;
    padding:4rem 0;
    text-align:left;
    overflow:hidden;
}

.hero .container{

    position:relative;
    z-index:2;
}

.hero h1{

    font-size:2.2rem;
}

.hero p{

    font-size:1rem;
    margin-bottom:1.5rem;
}

.hero .hero-stats{

    gap:1.5rem;
    flex-wrap:wrap;
}

.hero .btn-outline-emerald{

    display:inline-flex;
}

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .hero-stats .stat .number {
        font-size: 1.6rem;
    }
    .hero .hero-image-wrapper img {
        height: 200px;
    }
}

/* ----- OUR WORK (PORTFOLIO) ----- */
.our-work {
    padding: 5rem 0;
    background: var(--white);
}
.our-work .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.our-work .portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10);
}
.our-work .portfolio-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.our-work .portfolio-item:hover img {
    transform: scale(1.04);
}
.our-work .portfolio-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
    transition: opacity 0.3s ease;
}
.our-work .portfolio-item .overlay h6 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}
.our-work .portfolio-item .overlay small {
    opacity: 0.8;
    font-weight: 400;
}
.our-work .portfolio-item .overlay .tag {
    display: inline-block;
    background: var(--emerald);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
    border-radius: 0;
}

/* ----- HOW IT'S DONE ----- */
.how-its-done {
    padding: 5rem 0;
    background: var(--gray-light);
}
.how-its-done .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: 0;
    transition: box-shadow 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}
.how-its-done .step:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    border-left-color: var(--emerald);
}
.how-its-done .step .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--emerald);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
.how-its-done .step .step-content h6 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.how-its-done .step .step-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .how-its-done .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid transparent;
    }
    .how-its-done .step:hover {
        border-left-color: transparent;
        border-top-color: var(--emerald);
    }
}

/* ----- TESTIMONIALS ----- */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}
.testimonials .testimonial-card {
    background: var(--gray-light);
    padding: 2rem 2rem 1.8rem 2rem;
    border-radius: 0;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
    height: 100%;
}
.testimonials .testimonial-card:hover {
    border-bottom-color: var(--emerald);
}
.testimonials .testimonial-card .stars {
    color: var(--emerald);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}
.testimonials .testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}
.testimonials .testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonials .testimonial-card .client .avatar {
    width: 44px;
    height: 44px;
    background: var(--emerald);
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.testimonials .testimonial-card .client .info strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}
.testimonials .testimonial-card .client .info span {
    font-size: 0.85rem;
    color: #777;
}

/* ----- CTA SECTION ----- */
.cta-section {
    padding: 4rem 0;
    background: var(--emerald);
    color: #fff;
}
.cta-section h2 {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.cta-section p {
    opacity: 0.85;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.cta-section .btn-cta {
    background: #fff;
    color: var(--emerald);
    border: 2px solid #fff;
    border-radius: 0;
    padding: 0.7rem 2.8rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.cta-section .btn-cta:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
@media (max-width: 767.98px) {
    .cta-section {
        text-align: center;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ----- FOOTER ----- */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem 0;
}
.footer .footer-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer .footer-brand i {
    color: var(--emerald);
}
.footer .footer-brand span {
    color: var(--emerald);
}
.footer p {
    font-size: 0.95rem;
    max-width: 320px;
}
.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
    font-size: 0.95rem;
}
.footer ul li a:hover {
    color: var(--emerald);
}
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.footer .social-links a:hover {
    background: var(--emerald);
    color: #fff;
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    .footer .footer-brand {
        justify-content: center;
    }
    .footer p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer .social-links {
        justify-content: center;
    }
}

/* ----- MISC ----- */
.rounded-0 {
    border-radius: 0 !important;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 1rem;
}

/* SERVICES */
.services {
    background: #fff;
}
.services h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 700;
    color: #3c9779;
}
.services .lead {
    max-width: 720px;
    line-height: 1.9;
    color: #6b6b6b;
}

/* Video frames — responsive with aspect-ratio */
.video-frame {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.video-frame:hover video {
    transform: scale(1.05);
}
.video-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.service-number {
    font-size: 7rem;
    font-weight: 700;
    color: rgba(46, 94, 78, .12);
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}
.service-text:hover .service-number {
    color: rgba(46, 94, 78, .30);
}
.service-text h3 {
    color: #3c9779;
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.service-text p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .video-frame {
        width: 100%;
        min-height: 340px;
    }
    .video-frame video {
        height: 340px;
    }
    .service-number {
        font-size: 5rem;
    }
}

/* Mobile: video frame maintains aspect ratio */
@media (max-width: 767.98px) {
    .video-frame {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 200px;
    }
    .video-frame video {
        height: 100%;
        object-fit: cover;
    }
}

/* PROCESS */
.process-section {
    background: #fff;
}
.process-list {
    position: relative;
    margin-left: 25px;
    padding-left: 45px;
}
.process-list::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(46, 94, 78, .22);
}
.process-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 65px;
    transition: transform 0.3s ease;
}
.process-item:hover {
    transform: translateX(8px);
}
.process-item:last-child {
    margin-bottom: 0;
}
.process-number {
    position: absolute;
    left: -45px;
    top: 2px;
    font-family: "DM Serif Display", serif;
    font-size: 1rem;
    color: #2E5E4E;
    font-weight: 400;
    letter-spacing: .08em;
}
.process-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2E5E4E;
    transition: transform 0.3s ease, background 0.3s ease;
}
.process-item:hover::before {
    transform: scale(1.6);
    background: #3c9779;
}
.process-content {
    width: 100%;
}
.process-content h3 {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 400;
}
.process-content p {
    max-width: 700px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 0;
}

/* METRICS CARD */
.metrics-section {
    padding: 80px 0;
    background: #fff;
}
.metrics-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}
.metric-item {
    padding: 28px 18px;
    text-align: center;
    position: relative;
    transition: .35s;
}
.metric-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .08);
}
.metric-value {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    color: #2E5E4E;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.metric-value i {
    font-size: 1.8rem;
    color: #2E5E4E;
}
.metric-number {
    display: inline-block;
}
.metric-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .70rem;
    font-weight: 600;
    line-height: 1.5;
}
.metric-item:hover {
    background: #fafafa;
    transform: translateY(-3px);
}

/* Mobile: Metrics card — 2 rows, 2 columns, no gaps */
@media (max-width: 767.98px) {
    .metrics-card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: 10px;
    }
    .metric-item {
        padding: 20px 12px;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .metric-item:nth-child(even) {
        border-right: none;
    }
    .metric-item:nth-child(3),
    .metric-item:nth-child(4) {
        border-bottom: none;
    }
    .metric-value {
        font-size: 1.8rem;
    }
    .metric-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .metric-value {
        font-size: 1.6rem;
    }
    .metric-value i {
        font-size: 1.3rem;
    }
    .metric-label {
        font-size: 0.55rem;
    }
}

/* CONTACT CTA */
.contact-cta {
    background: #fff;
}
.contact-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.8rem;
    color: #2E5E4E;
    line-height: 1.1;
}
.contact-text {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    max-width: 520px;
}
.contact-phone {
    font-family: 'DM Serif Display', serif;
    color: #2E5E4E;
    font-size: 25px;
    margin-bottom: 10px;
}
.contact-email {
    color: #222;
    font-size: .95rem;
}
.license-badge {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #2E5E4E;
    border-radius: 8px;
    color: #2E5E4E;
    font-weight: 600;
    font-size: .85rem;
    transition: all 0.3s ease;
}
.license-badge:hover {
    background: #2E5E4E;
    color: #fff;
}
.contact-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}
.form-header {
    background: #f1f1f1;
    padding: 18px 30px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #222;
    border-bottom: 1px solid #ddd;
}
.contact-card form {
    padding: 30px;
}
.form-label {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}
.contact-input {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 54px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-input:focus {
    border-color: #2E5E4E;
    box-shadow: 0 0 0 3px rgba(46, 94, 78, 0.15);
    background: #fff;
}
.contact-message {
    background: #f4f4f4;
    border: 2px solid #2E5E4E;
    border-radius: 8px;
    resize: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-message:focus {
    box-shadow: 0 0 0 3px rgba(46, 94, 78, 0.15);
    background: #fff;
}
.send-btn {
    background: #2E5E4E;
    color: #fff;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    transition: .3s;
}
.send-btn:hover {
    background: #21463A;
    color: #fff;
}

/* FOOTER */
.site-footer {
    background: #1A1A1A;
    color: #bbb;
    padding: 80px 0 35px;
}
.footer-logo {
    font-family: 'DM Serif Display', serif;
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.footer-logo span {
    color: #2E5E4E;
}
.footer-about {
    line-height: 1.9;
    color: #999;
    margin-bottom: 30px;
}
.footer-badge {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: #ddd;
    font-size: .85rem;
}
.site-footer h5 {
    font-family: 'DM Serif Display', serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer li {
    margin-bottom: 14px;
}
.site-footer a {
    color: #9d9d9d;
    text-decoration: none;
    transition: .3s;
}
.site-footer a:hover {
    color: #2E5E4E;
}
.site-footer hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: .9rem;
}
.footer-social {
    display: flex;
    gap: 18px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
    background: #2E5E4E;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   ANIMATION & TRANSITION SYSTEM (GSAP-controlled)
   ============================================================ */

/* Scroll Reveal Base (used only for structure, opacity/transform handled by GSAP) */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
    will-change: opacity, transform;
}

/* Stagger items inside a container */
.stagger-item {
    will-change: opacity, transform;
}

/* Active State for Intersection Observer (fallback) */
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
    /* GSAP handles this, so we keep empty */
}

/* Fade-up text animation (simple) */
.fade-up-text {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive Icon Animations */
.animated-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

*:hover > .animated-icon,
a:hover .animated-icon,
button:hover .animated-icon,
.metric-item:hover .animated-icon {
    transform: scale(1.25) rotate(6deg);
    color: var(--emerald);
}

/* Button Animations */
.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.btn-animate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 124, 79, 0.25);
}

.btn-animate:active {
    transform: translateY(0);
}

/* Image Wrapper Hover Effect */
.hero-image-wrapper {
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.015);
}

.hero-image-wrapper img {
    transition: transform 0.7s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* ============================================================
   CONTINUOUS & FLASHY LOOPING ANIMATIONS
   ============================================================ */

/* 1. Floating Animation for Main Visual Media */
@keyframes floatContinuous {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
.float-anim {
    animation: floatContinuous 4.5s ease-in-out infinite;
}

/* 2. Sticker Float (similar but with a softer touch) */
@keyframes stickerFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}
.sticker-float {
    animation: stickerFloat 5s ease-in-out infinite;
}

.sticker-float-delayed {
    animation: stickerFloat 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* 3. Soft Glowing Pulsing Buttons */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 124, 79, 0.4);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(13, 124, 79, 0);
    }
}
.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

/* 4. Text Shimmering Metallic/Emerald Effect */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
.shimmer-text {
    background: linear-gradient(90deg, #0D7C4F 0%, #3c9779 25%, #88dfbe 50%, #3c9779 75%, #0D7C4F 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

/* 5. Glowing Border Pulse for Cards & Video Frames */
@keyframes borderGlowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(13, 124, 79, 0.15);
        border-color: rgba(13, 124, 79, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(13, 124, 79, 0.4);
        border-color: rgba(13, 124, 79, 0.6);
    }
}
.glowing-border {
    border: 1px solid rgba(13, 124, 79, 0.2);
    animation: borderGlowPulse 3s infinite ease-in-out;
}

/* 6. Continuous Slow Icon Spin */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.spin-slow {
    animation: spinSlow 12s linear infinite;
}

/* 7. Soft Icon Rotation & Wiggle Loop */
@keyframes rotateLoop {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}
.rotate-loop {
    animation: rotateLoop 3s ease-in-out infinite;
}

/* 8. Icon Bounce Loop */
@keyframes bounceLoop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.bounce-loop {
    animation: bounceLoop 2s ease-in-out infinite;
}

/* 9. Badge Scale & Shadow Pulse */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}
.badge-pulse {
    animation: badgePulse 3s ease-in-out infinite;
}

/* 10. Pop-in animation for cards */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.pop-in {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* 11. Slide-in from left with bounce */
@keyframes slideInLeftBounce {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    60% {
        transform: translateX(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.slide-in-left {
    animation: slideInLeftBounce 0.8s ease forwards;
}

/* 12. Slide-in from right with bounce */
@keyframes slideInRightBounce {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    60% {
        transform: translateX(-8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.slide-in-right {
    animation: slideInRightBounce 0.8s ease forwards;
}

/* 13. Zoom-in pulse */
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}
.zoom-pulse {
    animation: zoomPulse 4s ease-in-out infinite;
}

/* Respect Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .stagger-item {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none !important;
    }
    
    .animated-icon,
    .btn-animate,
    .hero-image-wrapper,
    .float-anim,
    .sticker-float,
    .sticker-float-delayed,
    .pulse-glow,
    .shimmer-text,
    .glowing-border,
    .spin-slow,
    .rotate-loop,
    .bounce-loop,
    .badge-pulse,
    .zoom-pulse {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .fade-up-text {
        opacity: 1;
        animation: none !important;
    }
    
    .pop-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1;
        animation: none !important;
        transform: none !important;
    }
}

/* ============================================================
   SUCCESS MODAL — GSAP Animated
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: var(--white);
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    padding: 2.8rem 2.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9) translateY(30px);
    will-change: transform, opacity;
    border: 1px solid rgba(13, 124, 79, 0.1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}
.modal-close:hover {
    color: var(--black);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3.2rem;
    color: var(--emerald);
}

.modal-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.modal-message {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.modal-sub {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-btn {
    background: var(--emerald);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.75rem 3rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.modal-btn:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 124, 79, 0.3);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem 1.8rem;
    }
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2.4rem;
    }
    .modal-title {
        font-size: 1.6rem;
    }
    .modal-message {
        font-size: 0.95rem;
    }
}


/* ============================================================
   NAVBAR LOGO — Fixed Sizing
   ============================================================ */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.navbar-logo {
    height: 32px !important;
    width: auto !important;
    max-width: 110px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
}

/* Force the image to respect the height */
.navbar-logo[src] {
    height: 100px !important;
    width: auto !important;
}

/* Larger screens */
@media (min-width: 992px) {
    .navbar-logo {
        height: 48px !important;
        max-width: 160px !important;
    }
    .navbar-logo[src] {
        height: 48px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 30px !important;
        max-width: 100px !important;
    }
    .navbar-logo[src] {
        height: 30px !important;
    }
    .navbar-brand {
        gap: 0.4rem;
    }
    .navbar-brand span {
        font-size: 1.2rem;
    }
}

/* Hide the text on very small screens if logo is enough */
@media (max-width: 400px) {
    .navbar-brand span {
        font-size: 1rem;
    }
}

/* If you want the cards to be slightly smaller on desktop for 7 cards */
.testimonial-card {
    flex: 0 0 280px; /* slightly narrower for 7 cards */
    background: var(--white);
    padding: 1.8rem 1.5rem 1.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(13, 124, 79, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        flex: 0 0 260px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 220px;
        padding: 1rem 1.2rem 1.2rem;
    }
    .testimonial-card blockquote {
        font-size: 0.9rem;
    }
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0f172a;        /* change to your brand color */
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  #loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  #loader .logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #loader .logo-wrapper img {
    display: block;
    width: 160px;              /* adjust to your logo size */
    height: auto;
    border-radius: 16px;
    animation: logoPulse 1.8s ease-in-out infinite alternate;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  @keyframes logoPulse {
    0% {
      transform: scale(1) rotate(-2deg);
      opacity: 0.7;
      filter: brightness(0.9);
    }
    100% {
      transform: scale(1.06) rotate(2deg);
      opacity: 1;
      filter: brightness(1.2);
    }
  }

  #loader .loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  #loader .loader-bar .fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    border-radius: 4px;
    animation: barFill 2.2s ease-in-out infinite alternate;
  }

  @keyframes barFill {
    0% {
      width: 0%;
      transform: translateX(-10%);
    }
    100% {
      width: 100%;
      transform: translateX(0%);
    }
  }

  #loader .loader-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 0.25rem;
    animation: textPulse 1.4s ease-in-out infinite alternate;
  }

  @keyframes textPulse {
    0% {
      opacity: 0.3;
      letter-spacing: 2px;
    }
    100% {
      opacity: 0.9;
      letter-spacing: 4px;
    }
  }

  /* responsive tweaks – still scoped */
  @media (max-width: 480px) {
    #loader .logo-wrapper img {
      width: 120px;
    }
    #loader .loader-bar {
      width: 160px;
    }
  }

