:root {
      --primary: #00A86B;
      --primary-dark: #008556;
      --accent: #FFB800;
      --accent-teal: #0891B2;
      --accent-lime: #84cc16;
      --dark: #0A1F1A;
      --gray: #64748B;

      /* Shadow System */
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-sm: 0 3px 6px rgba(0,0,0,0.07);
      --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
      --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    }
    *{box-sizing:border-box}
    body{font-family:'Inter',sans-serif;color:var(--dark);overflow-x:hidden;background:#FBFDFF;line-height:1.7;font-size:clamp(1rem,1.5vw,1.125rem)}
    h1,h2,h3,h4,h5,h6{font-family:'Space Grotesk',sans-serif;font-weight:700}
    h1{font-size:clamp(2.5rem,5vw,4rem)}
    h2{font-size:clamp(2rem,4vw,3rem)}
    h3{font-size:clamp(1.5rem,3vw,2.25rem)}
    h4{font-size:clamp(1.25rem,2.5vw,1.75rem)}
    h5{font-size:clamp(1.125rem,2vw,1.5rem)}
    h6{font-size:clamp(1rem,1.75vw,1.25rem)}

    /* Navbar */
    .navbar{position:fixed;top:0;width:100%;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);z-index:1000;transition:all .25s ease;border-bottom:1px solid rgba(0,0,0,.04)}
    .navbar.scrolled{box-shadow:var(--shadow-sm)}

    /* Mobile Menu */
    .mobile-menu{position:fixed;top:0;right:-100%;width:80%;max-width:320px;height:100vh;background:#fff;box-shadow:var(--shadow-lg);transition:right .28s ease;z-index:9999;padding:2rem}
    .mobile-menu.active{right:0}
    .overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:all .28s ease;z-index:9998}
    .overlay.active{opacity:1;visibility:visible}

    /* Hero */
    .hero{min-height:100vh;background:linear-gradient(135deg,#0A1F1A 0%,#0F4037 100%);position:relative;overflow:hidden;padding-top:70px; background-attachment: fixed;}
    .hero::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle at 20% 50%,rgba(0,168,107,.08) 0%,transparent 40%),radial-gradient(circle at 80% 80%,rgba(255,184,0,.06) 0%,transparent 40%);animation:float 22s ease-in-out infinite;pointer-events:none}
    @keyframes float{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(20px,20px) scale(1.05)}}
    .hero-pattern{position:absolute;inset:0;opacity:.03;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}

    /* Hero decorative glows */
    .glow-wrap{position:absolute;inset:0;pointer-events:none;z-index:10}
    .glow-main{position:absolute;left:50%;top:6%;transform:translateX(-50%);width:28rem;height:9rem;border-radius:999px;background:radial-gradient(closest-side,rgba(0,168,107,.6),transparent);filter:blur(36px);opacity:.85}
    .glow-lamp{position:absolute;left:50%;top:2%;transform:translateX(-50%);width:6rem;height:9rem;border-radius:999px;background:rgba(0,168,107,.45);filter:blur(22px);opacity:.9;transition:width .8s ease}
    .glow-line{position:absolute;left:50%;top:4%;transform:translateX(-50%);height:1px;width:240px;background:rgba(0,168,107,.5);opacity:.85;transition:width .8s ease}
    .cone-left,.cone-right{position:absolute;top:4.5rem;height:14rem;width:30rem;filter:blur(28px);opacity:.8}
    .cone-left{right:50%;transform:translateX(10%);background:conic-gradient(from 70deg at 50% 0%, rgba(0,168,107,.55), rgba(0,168,107,0) 60%)}
    .cone-right{left:50%;transform:translateX(-10%);background:conic-gradient(from 290deg at 50% 0%, rgba(0,168,107,0), rgba(0,168,107,.55) 70%)}

    /* Hero content */
    .hero-content{position:relative;z-index:20;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:3rem 1rem;padding-top:0;transform:translateY(-2rem)}
    .hero-title{line-height:1.05;margin:0;color:white;text-align:center}
    .hero-sub{color:rgba(255,255,255,.88);max-width:48rem;text-align:center}
    .hero-cta{display:flex;gap:.75rem;flex-wrap:wrap;justify-content:center}
    .btn{display:inline-flex;align-items:center;gap:.6rem;padding:.9rem 1.4rem;border-radius:999px;font-weight:600;text-decoration:none}
    .btn-primary{background:var(--primary);color:#fff;box-shadow:var(--shadow-md)}
    .btn-outline{background:transparent;color:white;border:2px solid rgba(255,255,255,.18)}
    .hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.25rem;width:100%;max-width:48rem}
    .stat-card{background:rgba(255,255,255,.07);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:1rem;text-align:center}

    /* Service Cards */
    .service-card {
      position: relative;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 1.5rem; /* 24px */
      padding: 2rem;
      box-shadow: var(--shadow-md);
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.5s ease-out;
      transform: scale(0.98);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .service-card.is-visible {
        transform: scale(1);
    }

    @keyframes pulseOnClick {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.03);
        }
        100% {
            transform: scale(1);
        }
    }

    .service-card.clicked {
        animation: pulseOnClick 0.3s ease-in-out;
    }

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

    .service-icon {
      width: 4rem; /* 64px */
      height: 4rem; /* 64px */
      border-radius: 1rem; /* 16px */
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem; /* 28px */
      color: white;
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
    }

    .service-card:hover .service-icon {
  transform: scale(1.05);
    }

    /* Icon Gradients */
    .service-card:nth-child(7n+1) .service-icon { background: linear-gradient(135deg, #00A86B, #86efac); }
    .service-card:nth-child(7n+2) .service-icon { background: linear-gradient(135deg, #FFB800, #ffd166); }
    .service-card:nth-child(7n+3) .service-icon { background: linear-gradient(135deg, #4F46E5, #818cf8); }
    .service-card:nth-child(7n+4) .service-icon { background: linear-gradient(135deg, #DB2777, #f9a8d4); }
    .service-card:nth-child(7n+5) .service-icon { background: linear-gradient(135deg, #0891B2, #67e8f9); }
    .service-card:nth-child(7n+6) .service-icon { background: linear-gradient(135deg, #D97706, #fbbf24); }
    .service-card:nth-child(7n+7) .service-icon { background: linear-gradient(135deg, #6D28D9, #c4b5fd); }

    .service-card .service-card-link .fa-arrow-right {
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    }

    .service-card:hover .service-card-link .fa-arrow-right {
      transform: translateX(6px);
    }


    /* Decorative Accent Bar */
    .service-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      opacity: 0.8;
    }
    .service-card:nth-child(7n+1)::after { background: linear-gradient(90deg, #00A86B, #86efac); }
    .service-card:nth-child(7n+2)::after { background: linear-gradient(90deg, #FFB800, #ffd166); }
    .service-card:nth-child(7n+3)::after { background: linear-gradient(90deg, #4F46E5, #818cf8); }
    .service-card:nth-child(7n+4)::after { background: linear-gradient(90deg, #DB2777, #f9a8d4); }
    .service-card:nth-child(7n+5)::after { background: linear-gradient(90deg, #0891B2, #67e8f9); }
    .service-card:nth-child(7n+6)::after { background: linear-gradient(90deg, #D97706, #fbbf24); }
    .service-card:nth-child(7n+7)::after { background: linear-gradient(90deg, #6D28D9, #c4b5fd); }
    .stat-number{font-weight:700;color:var(--accent)}
    .hero-form{background:white;border-radius:28px;padding:1.25rem;box-shadow:var(--shadow-lg);max-width:520px;margin:auto}

    .small-hero {
        padding: 6rem 1rem 4rem;
        background-size: cover;
        background-position: center;
        margin-top: 70px; /* Adjust this value to match your navbar's height */
    }

    .input-group { position: relative; }
    .input{width:100%;padding:1.25rem .75rem .5rem .75rem;border:1px solid #E6E6E6;border-radius:12px; transition: border-color 0.2s ease;}
    .input-label { position: absolute; top: .8rem; left: .75rem; color: #9ca3af; transition: all 0.2s ease; pointer-events: none; }
    .input:focus + .input-label, .input:not(:placeholder-shown) + .input-label {
        top: .25rem;
        font-size: 0.75rem;
        color: var(--primary);
    }
    .input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(0,168,107,.2);
    }

    /* Animated Process Timeline */
    .process-timeline {
        margin: 0 auto;
        padding: 4rem 1rem;
    }
    .timeline-svg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: 4px;
    }
    .timeline-path {
        stroke: #e2e8f0;
    }
    .timeline-item {
        position: relative;
        margin-bottom: 4rem;
        width: 50%;
        padding: 0 2rem;
        transition: transform 0.5s ease;
        transform: scale(0.98);
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 2rem;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
        padding-right: 2rem;
    }
    .timeline-icon {
        position: absolute;
        top: 0;
        transform: translateY(-50%);
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: var(--primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        z-index: 10;
        box-shadow: 0 0 0 8px rgba(0,168,107,.1), var(--shadow-sm);
    }
    .timeline-item:nth-child(odd) .timeline-icon {
        right: -1.5rem;
    }
    .timeline-item:nth-child(even) .timeline-icon {
        left: -1.5rem;
    }
    .timeline-content {
        background: white;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: var(--shadow-md);
        border-top: 4px solid var(--primary);
    }
    .timeline-item.is-visible {
        transform: scale(1);
    }

/* Trust Badges */
.trust-badge {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0 auto;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}
.trust-badge .badge-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #1e3a2b, #008556);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.4), var(--shadow-lg);
    z-index: -1;
}
.trust-badge::before { /* Metallic shine */
    content: '';
    position: absolute;
    top: 5px;
    left: 10%;
    width: 80%;
    height: 40%;
    border-radius: 50% / 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
}
.trust-badge i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.trust-badge span {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
}
.verified-checkmark {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Tooltip */
.trust-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: var(--shadow-md);
}
.trust-badge:hover::after {
        opacity: 1;
    visibility: visible;
    }

    /* Testimonials */
.testimonial-card-polaroid {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: -50px auto 1rem;
    position: relative;
    z-index: 2;
}
.testimonial-decor-quote {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    z-index: 1;
}
.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
}
.company-logo {
    max-height: 40px;
    margin-top: 0.5rem;
    opacity: 1;
    filter: none;
}

/* Star Rating */
.star-rating {
    --star-size: 20px;
    --star-color: #eee;
    --star-background: var(--accent);
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
    margin-bottom: 1rem;
}
.star-rating::before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Video Testimonial */
.video-testimonial .play-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.video-testimonial .play-button:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(-45deg, #0A1F1A, #008556, #0A1F1A, #00A86B);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-section::before { /* Pattern Overlay */
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide 20s linear infinite;
}

@keyframes slide {
  from { background-position: 0 0; }
  to { background-position: -120px 60px; }
}

.cta-section .spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    transition: transform 0.1s linear;
}

.cta-section .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section .btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-section .btn i {
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}


    /* Map */
    .map-embed{width:100%;height:320px;border-radius:12px;border:1px solid #e6e6e6;overflow:hidden;position:relative;}
    .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.1);
        cursor: pointer;
    }
    .map-overlay::before {
        content: "Click to interact with the map";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background: rgba(0,0,0,0.6);
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
    }

    /* Scroll button */
    #scrollTop{transition:all .25s ease}
/* Filter buttons */
.filter-btn{padding:.5rem 1.25rem;border-radius:999px;font-weight:600;background:white;color:var(--dark);border:1px solid #e2e8f0;transition:all .2s ease; box-shadow: var(--shadow-xs);}
.filter-btn:hover{background:#f8fafc;border-color:#cbd5e1; box-shadow: var(--shadow-sm);}
.filter-btn.active{background:var(--primary);color:white;border-color:var(--primary)}

/* Typography */
.uppercase-label{text-transform:uppercase;letter-spacing:0.4px}
.text-gradient{background:linear-gradient(90deg,var(--primary),var(--accent));-webkit-background-clip:text;background-clip:text;color:transparent}

/* Text Shadows */
.hero-title, .hero-sub, .btn-outline, .stat-card .text-xs,
.cta-section h2, .cta-section p,
footer h3, footer h4, footer a, footer p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.sector-item {
    transition: opacity 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0,168,107,.4);
}

.section-gradient-overlay {
    position: relative;
}
.section-gradient-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.8;
    background: linear-gradient(to top, rgba(251, 253, 255, 0.8), transparent 50%);
}

.section-padding {
    padding: 6rem 1rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 1rem;
    }
}

.wave-divider {
    position: relative;
    height: 100px;
    width: 100%;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path d="M1440,100H0V0C480,133.3,960,133.3,1440,0Z" fill="%23FBFDFF"></path></svg>');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100px;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.animated-icon {
    transition: transform 0.3s ease;
}

.animated-icon:hover {
    transform: scale(1.2) rotate(-10deg);
}

.zoom-in-image {
    transition: transform 0.3s ease;
}

.zoom-in-image:hover {
    transform: scale(1.1);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple 600ms linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInUp 0.5s ease-in-out;
}

.toast-success {
    background-color: var(--primary);
}

.toast-error {
    background-color: #ef4444;
}

@keyframes slideInUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--dark);
    margin: 2px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding-top: 5rem;
        min-height: auto;
    }
    .hero-content {
        padding: 2rem 1rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-card {
        padding: 1.5rem;
    }
    .hero-form {
        border-radius: 20px;
    }

    .timeline-svg { display: none; }
    .process-timeline {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        background-color: #e2e8f0;
        transform: translateX(-50%);
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 1rem;
        text-align: center;
    }
    .timeline-icon {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: auto;
        right: auto;
    }
    .timeline-content {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

/* Bottom Sheet Form for Mobile */
@media (max-width: 640px) {
    .hero-form, .bg-white.rounded-3xl.shadow-xl.p-8 {
        padding: 1.5rem;
    }
    .contact-form-modal {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem 1.5rem;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
        z-index: 10000;
    }
    .contact-form-modal.active {
        transform: translateY(0);
    }
    .form-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999;
    }
    .form-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .service-card:hover {
        transform: none;
    }

    .service-card:hover .service-icon {
        transform: none;
    }

    .service-card:hover::before {
        left: -80%;
    }

    .sector-item:hover {
        transform: none;
    }

    .animated-icon:hover {
        transform: none;
    }

    .zoom-in-image:hover {
        transform: none;
    }
}

/* Footer */
.site-footer {
    position: relative;
    background-color: #0A1F1A;
    color: #cbd5e1;
    padding-top: 120px;
    padding-bottom: 2rem;
    overflow: hidden;
    z-index: 10;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100C480,0,960,0,1440,100V101H0Z' fill='%23FBFDFF'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100px;
}
.footer-heading {
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}
.footer-link {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.social-icon:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 168, 107, 0.2);
}
.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}
.newsletter-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    color: white;
    transition: border-color 0.2s ease;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0,168,107,.3);
}
.newsletter-btn {
    position: absolute;
    right: 4px;
    height: calc(100% - 8px);
    width: 2.5rem;
    background: var(--primary);
    border: none;
    border-radius: 999px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.newsletter-btn:hover {
    background-color: var(--primary-dark);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.scroll-top-btn {
    transition: all 0.3s ease;
}
.scroll-top-btn i {
    transition: transform 0.3s ease;
}
.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 168, 107, 0.5);
}
.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

/* Skeleton Loading */
.skeleton {
    background-color: #e2e8f0;
    border-radius: 0.25rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}

/* Lazy Loading Image */
img.lazy {
    filter: blur(20px);
    transition: filter 0.5s;
}

img:not(.lazy) {
    filter: blur(0);
}


/* Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-teal);
    outline-offset: 2px;
}

@media (min-width: 1024px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .service-card {
        padding: 3rem;
    }

    .card {
        padding: 3rem;
    }
    .sector-item {
        padding: 1.5rem;
        /* aspect-ratio: 1 / 1; Removed aspect ratio to allow variable content height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .sector-icon {
        height: 6rem;
        font-size: 3rem;
    }
}

.zoom-in-image {
    transition: transform 0.5s ease;
}

.zoom-in-image:hover {
    transform: scale(1.1);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#preloader video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}



/* Responsive styling for the main training image */
.main-training-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}



/* Staff Training Swiper */
.training-swiper-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
}

.training-swiper .swiper-slide {
    padding: 0 2rem; /* Add some spacing between slides */
}

.training-swiper .swiper-button-next,
.training-swiper .swiper-button-prev {
    color: var(--primary);
}

.training-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}
