/* =========================
   Reset + Base
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    transition: background 0.4s ease;
}

body {
    background: whitesmoke;
}

/* =========================
   Container
========================= */
.background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background: url('images/Bg.jpg') no-repeat center top;
    background-size: cover;
}

.glass-card {
    width: 90%;
    max-width: 1000px;
    min-height: 68vh;
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    margin-bottom: 40px;
    animation: fadeInCard 0.6s ease forwards;
}

.glass-card:hover {
    backdrop-filter: blur(18px) saturate(200%);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

@keyframes fadeInCard {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.landing-page-wrapper {
    background: url('images/Bg.jpg') no-repeat center top;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Vertically center the content */
}



/* =========================
   Header
========================= */
header {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
    position: relative;
}

.logo {
    position: relative;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
    transition: transform .22s ease, filter .22s ease;
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px #4cc9f0);
}

@keyframes santaWiggle {

    0%,
    100% {
        transform: rotate(25deg);
    }

    50% {
        transform: rotate(20deg);
    }
}

/* Desktop nav */
.desktop-nav {
    margin-left: auto;
}

.desktop-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all .25s ease, text-shadow .25s ease, box-shadow .25s ease;
}

.desktop-nav a:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
    text-shadow: 0 0 8px #4cc9f0, 0 0 16px #4cc9f0;
    box-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
}

/* Desktop instant-quote pulse */
.desktop-nav .quote-btn {
    background: linear-gradient(45deg, #0704ee, #945901);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    animation: pulse 2.2s infinite;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, text-shadow .2s ease;
}

.desktop-nav .quote-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28), 0 0 12px #ffdf00;
    text-shadow: 0 0 8px #ffdf00;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    position: absolute;
    top: 10px;
    right: 18px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    border: none;
    cursor: pointer;
    z-index: 1200;
    transition: background .25s ease, transform .25s ease;

    .mobile-top-bar,
    .mobile-contact-icon,
    .mobile-social-icons {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

.hamburger i {
    font-size: 26px;
    color: #fff;
    transition: transform .22s ease, filter .22s ease;
}

.hamburger i:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px #4cc9f0);
}

/* =========================
   Main Content
========================= */
main {
    text-align: center;
    padding: 22px 6px;
    z-index: 10;
}

.brand {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
    animation: brandFade 0.7s ease forwards;
    transition: text-shadow .3s ease;
}

.brand .highlight {
    color: #4cc9f0;
    text-shadow: 0 0 12px #4cc9f0;
}

.brand:hover {
    text-shadow: 0 0 20px #4cc9f0, 0 0 40px #4cc9f0;
}

@keyframes brandFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.subtitle {
    margin-top: 10px;
    font-size: 1.5rem;
    opacity: 0.86;
    animation: fadeUp .5s ease forwards 0.2s;
}

.description {
    margin: 14px auto 0;
    max-width: 640px;
    line-height: 1.6;
    opacity: 0.94;
    font-size: 1rem;
    animation: fadeUp .5s ease forwards 0.4s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

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

.main-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ── GWC VISION AI BUTTON ── */
.vision-ai-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 50px;
    overflow: hidden;
    border: 1.5px solid rgba(79,195,247,0.6);
    background: rgba(2,11,24,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(79,195,247,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: visionPulse 2.5s ease-in-out infinite;
}

.vision-ai-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(79,195,247,0.15) 50%, transparent 60%);
    animation: visionShine 2.5s ease-in-out infinite;
}

@keyframes visionShine {
    0% { transform: translateX(-150%); }
    60% { transform: translateX(150%); }
    100% { transform: translateX(150%); }
}

@keyframes visionPulse {
    0%,100% { box-shadow: 0 0 20px rgba(79,195,247,0.3), inset 0 1px 0 rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 35px rgba(79,195,247,0.6), 0 0 60px rgba(79,195,247,0.2), inset 0 1px 0 rgba(255,255,255,0.1); }
}

.vision-ai-btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-ai-btn i {
    font-size: 18px;
    color: #4FC3F7;
    animation: visionCameraFlash 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes visionCameraFlash {
    0%,90%,100% { color: #4FC3F7; transform: scale(1); }
    92% { color: #fff; transform: scale(1.3); filter: drop-shadow(0 0 6px #4FC3F7); }
    96% { color: #4FC3F7; transform: scale(1); }
}

.vision-ai-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.vision-ai-btn-label {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vision-ai-btn-sub {
    font-size: 10px;
    font-weight: 500;
    color: #4FC3F7;
    letter-spacing: 0.5px;
}

.vision-ai-btn-badge {
    background: linear-gradient(135deg, #4FC3F7, #0288d1);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 50px;
    letter-spacing: 1px;
    animation: badgeBounce 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badgeBounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.vision-ai-btn:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: #4FC3F7;
    background: rgba(79,195,247,0.15);
    box-shadow: 0 10px 40px rgba(79,195,247,0.5), 0 0 80px rgba(79,195,247,0.2);
    animation-play-state: paused;
}

.vision-ai-btn:hover .vision-ai-btn-label { color: #4FC3F7; }

@media (max-width: 768px) {
    .vision-ai-btn {
        padding: 10px 18px;
    }
    .vision-ai-btn-label { font-size: 12px; }
    .vision-ai-btn-sub { font-size: 9px; }
    .vision-ai-btn i { font-size: 16px; }
}

.learn-more-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #c41e3a, #ffd700, #165b33, #ffd700, #c41e3a);
    background-size: 300% 300%;
    animation: festiveButtonGradient 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    transition: all .3s ease;
}

.learn-more-btn::after {
    content: '✨';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    animation: buttonSparkle 1.5s ease-in-out infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes buttonIconBounce {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes buttonSparkle {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) rotate(180deg);
    }
}

.learn-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.7), 0 0 50px rgba(255, 215, 0, 0.6);
    animation-duration: 1.5s;
}

/* =========================
   Footer Icons
========================= */
footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
}

.icons {
    display: flex;
    gap: 60px;
    align-items: center;
}

.icons a {
    position: relative;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.icons a:nth-child(1) {
    animation-delay: 0s;
}

.icons a:nth-child(2) {
    animation-delay: 0.5s;
}

.icons a:nth-child(3) {
    animation-delay: 1s;
}

.icons a:nth-child(4) {
    animation-delay: 1.5s;
}

.icons img {
    height: 20px;
    display: block;
    opacity: 0.85;
    transition: all .3s ease;
    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.5));
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6));
    }

    25% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(22, 91, 51, 0.6));
    }

    75% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6));
    }
}

.icons a:hover img {
    opacity: 1;
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
}

.icons a::before {
    content: '✨';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0;
    animation: sparkleAppear 3s ease-in-out infinite;
}

@keyframes sparkleAppear {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    95% {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================
   Pulse Animations
========================= */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.35);
    }

    60% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(255, 92, 0, 0.18);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* =========================
   Side Menu (Right Drawer) Glass Effect
========================= */
.side-menu {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.08);
    /* Glass background */
    backdrop-filter: blur(16px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 0 16px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.32);
    transition: right .38s cubic-bezier(.2, .9, .3, 1), background .3s ease;
    z-index: 1200;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
}

.side-menu.open {
    right: 0;
    opacity: 1;
    transform: translateX(0);
    animation: menuSlideFade 0.38s forwards;
}

/* Close button */
.side-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    /* semi-transparent black */
    border-radius: 50%;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.side-menu .close-btn i {
    font-size: 24px;
    color: #fff;
    transition: transform .18s ease, color .18s ease, text-shadow .22s ease;
}

.side-menu .close-btn i:hover {
    transform: rotate(90deg);
    color: #ffd700;
    text-shadow: 0 0 12px #ffd700;
}

/* Menu links */
.side-menu .menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    padding: 0;
}

.side-menu .menu-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.15rem;
    transition: color .18s ease, transform .18s ease, opacity .4s ease, text-shadow .22s ease, background .22s ease;
    display: inline-block;
    opacity: 0;
    transform: translateX(40px);
    padding-left: 4px;
    border-radius: 6px;
}

.side-menu.open .menu-links a {
    animation: slideFadeIn 0.38s forwards;
}

.side-menu.open .menu-links a:nth-child(1) {
    animation-delay: 0.05s;
}

.side-menu.open .menu-links a:nth-child(2) {
    animation-delay: 0.12s;
}

.side-menu.open .menu-links a:nth-child(3) {
    animation-delay: 0.19s;
}

.side-menu.open .menu-links a:nth-child(4) {
    animation-delay: 0.26s;
}

.side-menu.open .menu-links a:nth-child(5) {
    animation-delay: 0.33s;
}

.side-menu .menu-links a:hover {
    color: #4cc9f0;
    transform: translateX(6px);
    text-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
    background: rgba(76, 201, 240, 0.08);
    padding-left: 6px;
}

/* Keyframes */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes menuSlideFade {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: background .38s ease, opacity .38s ease;
    z-index: 1100;
}

.overlay.show {
    background: rgba(0, 0, 0, 0.55);
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Mobile Styles
========================= */
@media (max-width: 768px) {
    .mobile-top-bar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        left: 0 !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.3);
        top: 0;
        z-index: 100;
    }

    .mobile-phone-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(76, 175, 80, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s;
    }

    .mobile-phone-icon:hover {
        background: rgba(76, 175, 80, 0.5);
        transform: scale(1.1);
    }

    .mobile-social-icons {
        display: flex;
        gap: 8px;
    }

    .mobile-social-icons a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        transition: all 0.3s;
    }

    .mobile-social-icons a:hover {
        background: #4FC3F7;
        transform: scale(1.1);
    }

    header {
        align-items: center;
        padding-top: 50px;
    }

    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: block;
        top: 8px;
    }

    .glass-card {
        width: 100%;
        padding: 28px 16px;
    }

    .brand {
        font-size: 1.8rem;
        white-space: nowrap;
        text-align: center;
        animation: blink 1s infinite;
        text-shadow: 0 0 10px red;
        text-align: center;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
        max-width: 92%;
    }

    .side-menu {
        width: 75%;
        right: -75%;
        padding-top: 20px;
    }

    .side-menu.open {
        right: 0;
    }

    .side-menu .menu-links a {
        font-size: 1.1rem;
        padding: 10px 6px;
        display: block;
    }

    .side-menu .quote-btn {
        width: calc(100% - 12px);
        margin-top: 6px;
        display: block;
        text-align: center;
        border-radius: 10px;
        color: #fff;
        background: linear-gradient(45deg, #4FC3F7, #29B6F6);
        padding: 12px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 90px;
        right: 20px;
        left: auto;
        padding: 0;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* =========================
   Why Choose Section
========================= */
.why-choose-section {
    display: block;
    width: 100%;
    padding: 60px 20px;
    margin: 40px 0;
    background-color: #fff;
    text-align: center;
    position: relative;
    /* allow pseudo-elements to position relative to section */
}

/* Title with dot background & styling */
.section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
    margin-left: -20px;
    /* move slightly left */
    padding: 12px 24px;
    background: rgba(76, 201, 240, 0.1);
    /* subtle bluish background */
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    /* align text to left */
    z-index: 1;
}

/* Add lots of bluish dots behind the title */
.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-image: radial-gradient(#4cc9f0 2px, transparent 2px);
    background-size: 15px 15px;
    /* more space between dots */
    opacity: 0.15;
    z-index: -1;
    border-radius: 16px;
    pointer-events: none;
}

/* Span inside title to style specific words if needed */
.section-title span {
    position: relative;
    color: #4cc9f0;
    /* highlight if needed */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-section .section-title {
        font-size: 1.0rem;
        /* readable and attractive on phones */
        padding: 10px 16px;
        margin-left: -5px;
        /* slight left shift */
    }

    .section-title::after {
        top: 0;
        left: 0;
        width: 50px;
        /* shorter accent line on mobile */
        height: 4px;
        background-size: 12px 12px;
        /* smaller dot spacing if needed */
        margin: 8px auto 0;
        /* center under title */
    }
}


/* Styling for the reasons container */
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center items horizontally */
    gap: 100px;
    /* Space between each reason */
    padding: 20px;
}

/* Styling for each reason */
.reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items vertically */
    text-align: center;
    width: 200px;
    /* Adjust as needed */
}

/* Styling for the icon */
.reason img {
    width: 50px;
    /* Adjust icon size as needed */
    height: 50px;
    margin-bottom: 10px;
    /* Space between icon and title */
}

@media (max-width: 768px) {
    .reasons-container {
        gap: 40px;
        /* Reduce gap on mobile */
    }

    .reason {
        width: 100%;
        /* Allow reason to take full width */
        max-width: 300px;
        /* But not more than 300px */
    }
}

/* =========================
   Latest Projects Section
========================= */
.latest-projects-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #f5f9ff;
    text-align: center;
    position: relative;
}

.latest-projects-section .section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-left: 0;
    /* Remove the left margin to allow true centering */
}

.latest-projects-section .section-title span {
    color: #4cc9f0;
    position: relative;
}

.latest-projects-section .section-title::before {
    content: '';
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    background-image: radial-gradient(#4cc9f0 2px, transparent 2px);
    background-size: 12px 12px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 12px;
}

/* Projects Container */
.projects-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}


.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Project Overlay (Info) - Only title and description */
.project-overlay {
    padding: 16px;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.project-overlay h3 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-overlay p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Navigation Buttons */
.mobile-nav {
    display: none;
    /* Hidden by default on desktop */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.mobile-nav button {
    background: #4cc9f0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* =========================
   Latest Projects Section - Mobile Fixes
========================= */
@media (max-width: 768px) {
    .latest-projects-section {
        padding: 40px 15px;
        overflow: hidden;
        /* Prevent horizontal scrolling */
    }

    .projects-container {
        display: flex;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 400px;
        /* Fixed height for better mobile experience */
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: #fff;
    }

    .project-card {
        position: absolute;
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            opacity 0.4s ease;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        background: #fff;
        overflow: hidden;
    }

    .project-card.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 10;
    }

    .project-card.prev {
        transform: translateX(-100%);
        opacity: 0.3;
        z-index: 5;
    }

    .project-card.next {
        transform: translateX(100%);
        opacity: 0.3;
        z-index: 5;
    }

    .project-card img {
        width: 100%;
        height: 240px;
        /* Increased height for better visibility */
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .project-card:hover img {
        transform: scale(1.03);
    }

    .project-overlay {
        padding: 20px;
        background-color: #fff;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .project-overlay h3 {
        margin-bottom: 12px;
        color: #1e293b;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .project-overlay p {
        color: #64748b;
        line-height: 1.5;
        margin: 0;
        font-size: 1rem;
    }

    /* Enhanced mobile navigation buttons */
    .mobile-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        position: relative;
        z-index: 20;
    }

    .mobile-nav button {
        background: linear-gradient(135deg, #4cc9f0, #3b82f6);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-nav button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(76, 201, 240, 0.4);
    }

    .mobile-nav button:active {
        transform: translateY(1px);
    }

    /* Carousel indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #4cc9f0;
        transform: scale(1.3);
    }


    /* Card entrance animation for mobile */
    @keyframes slideInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .project-card.active {
        animation: slideInUp 0.5s ease forwards;
    }
}

/* Enhanced touch interaction for mobile */
@media (max-width: 768px) and (hover: none) {
    .project-card {
        width: 100%;
        /* Take full width on small screens */
        margin: 10px 0;
        /* Add spacing between cards */
        padding: 16px;
        /* Extra padding for touch */
        font-size: 1rem;
        /* Adjust text size for readability */
        border-radius: 12px;
        /* Slightly round corners */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* Subtle shadow */
        transition: transform 0.2s ease;
        /* Smooth hover/tap effect */
    }

    .project-card:active {
        transform: scale(0.98);
        /* Slight scale effect on tap */
    }

    .mobile-nav button {
        padding: 14px 28px;
        /* Larger touch targets */
    }
}

/* =========================
   Testimonials Section - Enhanced with Animations
========================= */
.testimonials {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9faff 0%, #eef2ff 100%);
    text-align: center;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(76, 201, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(50, 205, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonials .section-title {
    display: inline-block;
    margin-bottom: 70px;
    margin-left: 0;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.testimonials .section-title span {
    color: #4cc9f0;
    position: relative;
}

.testimonials .section-title::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 140%;
    background-image:
        radial-gradient(#4cc9f0 2px, transparent 2px),
        radial-gradient(#32cd99 2px, transparent 2px);
    background-size: 20px 20px, 15px 15px;
    background-position: 0 0, 10px 10px;
    top: -20%;
    left: -10%;
    opacity: 0.15;
    z-index: -1;
    border-radius: 20px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0, 10px 10px;
    }

    100% {
        background-position: 100px 100px, 110px 110px;
    }
}

/* =========================
   Enhanced Carousel Container
========================= */
.testimonials-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 380px;
    margin: 0 auto;
    perspective: 1200px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

/* =========================
   Enhanced Testimonial Cards
========================= */
.testimonial-card {
    position: absolute;
    width: 350px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.07);
    background: white;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

/* State for the card that is about to enter from the right */
.testimonial-card.next {
    transform: translateX(calc(-50% + 400px)) scale(0.8);
    opacity: 0;
    z-index: 5;
}

/* State for the card that is currently in the center */
.testimonial-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

/* State for the card that is exiting to the left */
.testimonial-card.prev {
    transform: translateX(calc(-50% - 400px)) scale(0.8);
    opacity: 0;
    z-index: 5;
}

/* Remove old classes that are not needed anymore */
.testimonial-card.second,
.testimonial-card.third {
    display: none;
}

.testimonial-card .card-content {
    position: relative;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    overflow: hidden;
}

.testimonial-card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4cc9f0, #32cd99);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: #4cc9f0;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

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

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-card .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4cc9f0;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card.active .client-avatar {
    animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    }

    50% {
        box-shadow: 0 5px 20px rgba(76, 201, 240, 0.6);
    }
}

.testimonial-card .client-details h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.testimonial-card .client-details p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777;
}

/* =========================
   Enhanced Navigation
========================= */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.nav-btn {
    background: linear-gradient(135deg, #4cc9f0, #32cd99);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 201, 240, 0.6);
}

.nav-btn:active {
    transform: translateY(-1px);
}

/* =========================
   Enhanced Indicators
========================= */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4cc9f0, #32cd99);
    transition: left 0.4s ease;
}

.indicator.active::before {
    left: 0;
}

.indicator.active {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.indicator.pulse {
    animation: indicatorPulse 0.6s ease-in-out;
}

@keyframes indicatorPulse {

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

    50% {
        transform: scale(1.5);
    }
}

/* =========================
   Auto-rotation Animation
========================= */
@keyframes autoRotateHint {

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

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.auto-rotate-notice {
    margin-top: 20px;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: autoRotateHint 3s ease-in-out infinite;
}

/* =========================
   Floating Elements
========================= */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(50, 205, 153, 0.1));
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 90%;
    animation-duration: 18s;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 10%;
    animation-duration: 22s;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* =========================
   Mobile Responsive Styles
========================= */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonials .section-title {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    .testimonials-carousel {
        height: 320px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        margin: 0 10px;
    }

    .testimonial-card .card-content {
        padding: 20px;
    }

    .testimonial-card .testimonial-text {
        font-size: 1rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .floating-element {
        display: none;
        /* Hide on mobile for better performance */
    }
}

/* =========================
   Animation for Card Transitions
========================= */
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

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

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }

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

.testimonial-card.slide-in-right {
    animation: slideInFromRight 0.6s ease-out forwards;
}

.testimonial-card.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

/* =========================
   Enhanced Grateful Section
========================= */
.grateful-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 40px;
    background: linear-gradient(135deg, #e0f7fa, #fce4ec);
    position: relative;
    overflow: hidden;
}

.grateful-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(76, 201, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(242, 34, 114, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.grateful-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Shift testimonial cards left */
.testimonial-cards-left {
    flex: 1 1 55%;
    position: relative;
    left: -20px;
    animation: slideInFromLeft 1s ease-out;
}

/* Grateful message styling */
.grateful-message {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInFromRight 1s ease-out;
}

.grateful-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4cc9f0, #f06292);
}

.grateful-message h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(76, 201, 240, 0.1);
    animation: titleFloat 6s ease-in-out infinite;
}

.grateful-message h2 .highlight {
    color: #0288d1;
    position: relative;
    z-index: 1;
}

/* Dotted background behind heading */
.grateful-message h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background-image:
        radial-gradient(#4cc9f0 2px, transparent 2px),
        radial-gradient(#f06292 2px, transparent 2px);
    background-size: 15px 15px, 10px 10px;
    background-position: 0 0, 7px 7px;
    opacity: 0.15;
    border-radius: 16px;
    z-index: 0;
    animation: backgroundMove 15s linear infinite;
}

.grateful-message p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* Animated box cards */
.grateful-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

.box-card {
    flex: 0 1 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    animation: cardEntrance 0.8s ease-out forwards;
}

.box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(242, 34, 114, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.box-card:hover::before {
    opacity: 1;
}

.box-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: all 0.5s ease;
}

.box-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.box-card:hover img {
    transform: scale(1.1);
}

/* =========================
   Mobile Styles for Grateful Section
========================= */
@media (max-width: 768px) {
    .grateful-section {
        flex-direction: column;
        gap: 30px;
        margin-top: 0;
        padding: 60px 15px;
    }

    .testimonial-cards-left,
    .grateful-message {
        flex: 1 1 100%;
        left: 0;
    }

    .grateful-message {
        text-align: center;
        padding: 25px 15px;
        margin-top: 0;
    }

    .grateful-message h2 {
        font-size: 1.8rem;
    }

    .grateful-message p {
        font-size: 1.1rem;
    }

    .grateful-boxes {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .box-card {
        width: 90%;
        max-width: 350px;
    }
}

/* =========================
   Latest Insights Section
========================= */
.latest-insights-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    background-image: radial-gradient(#c0e7ff 1px, transparent 1px);
    background-size: 15px 15px;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #004d7a;
    position: relative;
    margin-left: 0;
    /* Ensure centering */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4cc9f0, #0288d1);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================
   Insights Grid
========================= */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.insight-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #eee;
    transition: transform 0.4s ease;
}

.insight-card:hover .card-image {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 18px 16px 12px;
    color: #004d7a;
    transition: color 0.3s ease;
    align-items: center;
}

.card-snippet {
    font-size: 1rem;
    color: #555;
    text-align: center;
    padding: 0 16px 24px;
    line-height: 1.6;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 1.8rem;
        justify-content: center;
    }

    .card-image {
        height: 180px;
    }
}

/* ========================= 
   Footer Section - Updated for Top-Left Logo
========================= */
/* ============================================================
   AURORA SHIMMER GLASS FOOTER
============================================================ */

.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0015 0%, #000d2e 40%, #001a0d 100%);
    color: #fff;
    padding: 60px 0 30px;
    font-family: "Arial", sans-serif;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

/* Frosted glass overlay on top of aurora */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(0px);
    z-index: 0;
    pointer-events: none;
}

/* Top edge gleam pulse */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.3) 20%,
        rgba(6, 182, 212, 0.9) 50%,
        rgba(139, 92, 246, 0.3) 80%,
        transparent 100%);
    animation: footerGleam 4s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes footerGleam {
    0%, 100% { opacity: 0.3; filter: blur(1px); }
    50%       { opacity: 1;   filter: blur(0px); }
}

/* Make all footer content sit above aurora layers */
.footer-container,
.footer-bottom {
    position: relative;
    z-index: 3;
}

/* ── 1. AURORA ORBS ── */
.footer-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(139,92,246,0.8), transparent 70%);
    top: -120px; left: -80px;
    animation: orbFloat1 18s infinite alternate ease-in-out;
}
.orb-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(6,182,212,0.7), transparent 70%);
    top: -60px; right: -60px;
    animation: orbFloat2 22s infinite alternate ease-in-out;
}
.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.6), transparent 70%);
    bottom: -80px; left: 25%;
    animation: orbFloat3 16s infinite alternate ease-in-out;
}
.orb-4 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.55), transparent 70%);
    bottom: -60px; right: 20%;
    animation: orbFloat4 20s infinite alternate ease-in-out;
}
.orb-5 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.45), transparent 70%);
    top: 30%; left: 45%;
    animation: orbFloat5 25s infinite alternate ease-in-out;
}

@keyframes orbFloat1 {
    0%   { transform: translate(0,   0)   scale(1);    opacity: 0.55; }
    33%  { transform: translate(60px, 40px) scale(1.1); opacity: 0.65; }
    66%  { transform: translate(20px, 80px) scale(0.95);opacity: 0.45; }
    100% { transform: translate(80px, 20px) scale(1.15);opacity: 0.6;  }
}
@keyframes orbFloat2 {
    0%   { transform: translate(0,   0)    scale(1);    opacity: 0.5;  }
    40%  { transform: translate(-70px,50px) scale(1.2); opacity: 0.7;  }
    70%  { transform: translate(-30px,90px) scale(0.9); opacity: 0.4;  }
    100% { transform: translate(-90px,10px) scale(1.1); opacity: 0.6;  }
}
@keyframes orbFloat3 {
    0%   { transform: translate(0,   0)   scale(1);    opacity: 0.5;  }
    50%  { transform: translate(50px,-60px) scale(1.15);opacity: 0.65; }
    100% { transform: translate(-40px,-30px) scale(0.9);opacity: 0.4; }
}
@keyframes orbFloat4 {
    0%   { transform: translate(0,   0)    scale(1);    opacity: 0.45; }
    45%  { transform: translate(-60px,-50px) scale(1.2);opacity: 0.6;  }
    100% { transform: translate(40px, -80px) scale(0.95);opacity: 0.35;}
}
@keyframes orbFloat5 {
    0%   { transform: translate(0,   0)   scale(1);    opacity: 0.4;  }
    30%  { transform: translate(80px,-40px) scale(1.3); opacity: 0.55; }
    70%  { transform: translate(-50px,60px) scale(0.85);opacity: 0.3;  }
    100% { transform: translate(30px, 80px) scale(1.1); opacity: 0.5;  }
}

/* ── 2. CRYSTAL SHIMMER SWEEP ── */
.footer-shimmer-sweep {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.footer-shimmer-sweep::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -60%;
    width: 40%;
    height: 300%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.06) 45%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.06) 55%,
        transparent 70%
    );
    animation: shimmerSweep 7s ease-in-out infinite;
    transform: skewX(-15deg);
}
@keyframes shimmerSweep {
    0%   { left: -60%;  opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 130%;  opacity: 0; }
}

/* ── 3. RISING PARTICLES ── */
.footer-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.fp {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: fpRise linear infinite;
}

/* Colors matching aurora palette */
.fp-1  { left:  5%; background: rgba(139,92,246,0.9);  animation-duration: 8s;  animation-delay: 0s;    width:3px; height:3px; }
.fp-2  { left: 12%; background: rgba(6,182,212,0.9);   animation-duration: 11s; animation-delay: 1.5s;  }
.fp-3  { left: 20%; background: rgba(236,72,153,0.9);  animation-duration: 9s;  animation-delay: 3s;    width:5px; height:5px; }
.fp-4  { left: 28%; background: rgba(16,185,129,0.9);  animation-duration: 13s; animation-delay: 0.8s;  }
.fp-5  { left: 36%; background: rgba(245,158,11,0.9);  animation-duration: 10s; animation-delay: 2.2s;  width:3px; height:3px; }
.fp-6  { left: 45%; background: rgba(139,92,246,0.9);  animation-duration: 12s; animation-delay: 4s;    }
.fp-7  { left: 54%; background: rgba(6,182,212,0.9);   animation-duration: 7s;  animation-delay: 1s;    width:5px; height:5px; }
.fp-8  { left: 62%; background: rgba(236,72,153,0.9);  animation-duration: 14s; animation-delay: 3.5s;  }
.fp-9  { left: 70%; background: rgba(16,185,129,0.9);  animation-duration: 9s;  animation-delay: 0.5s;  width:3px; height:3px; }
.fp-10 { left: 78%; background: rgba(245,158,11,0.9);  animation-duration: 11s; animation-delay: 2.8s;  }
.fp-11 { left: 86%; background: rgba(139,92,246,0.9);  animation-duration: 8s;  animation-delay: 1.8s;  width:5px; height:5px; }
.fp-12 { left: 93%; background: rgba(6,182,212,0.9);   animation-duration: 13s; animation-delay: 4.5s;  }

@keyframes fpRise {
    0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0;   }
    10%  { opacity: 0.9; }
    50%  { transform: translateY(-180px) translateX(15px)  scale(1.3); opacity: 0.6; }
    90%  { opacity: 0.1; }
    100% { transform: translateY(-380px) translateX(-10px) scale(0.4); opacity: 0;   }
}


.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr 0.7fr;
    /* Newsletter (wide-left) | Identity | Our Location | Products */
    gap: 50px;
    padding: 0 60px 0 0;
    align-items: start;
    box-sizing: border-box;
}

/* === Left Column: Logo + Contact Info === */
.footer-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

/* Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #130e0e;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #d9e3ed;
    margin-top: 3px;
}

/* Contact info (under the logo) */
.contact-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #d9e3ed;
    line-height: 1.6;
    text-align: center;
}

/* === Middle Column: Products === */
.footer-section h3 {
    font-size: 0.95rem;
    color: rgba(6,182,212,0.9);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(6,182,212,0.5);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(139,92,246,1), rgba(6,182,212,1));
    transition: width 0.35s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 0 8px rgba(6,182,212,0.6);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

/* === Right Column: Map === */
.footer-map iframe {
    width: 100%;
    height: 200px;
    /* Adjust height as needed */
    border: 0;
    border-radius: 8px;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
}

.footer-map iframe:hover {
    filter: grayscale(0%) contrast(1);
}

/* === Footer Bottom Bar === */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 40px 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
}

.footer-bottom-top-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-bottom-line {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(209,228,237,0.75);
}

/* separator between items on desktop */
.footer-bottom-top-row .footer-bottom-line + .footer-bottom-line::before {
    content: '|';
    margin-right: 6px;
    opacity: 0.4;
}

.web-design-btn {
    background: linear-gradient(to left, rgb(114, 1, 1), blue);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 30px;
    /* Fixed: removed space between 30 and px */
    font-size: 0.8rem;
    /* Fixed: changed font-weight to font-size */
    text-decoration: none !important;
    animation: blinkRed 1.5s infinite;
    transition: all 0.3s ease;
    position: relative;
    /* Add this */
    top: 10px;
    /* Move down */
    left: -20px;
    /* Move to the left */
    display: inline-block;
    /* Add this */
}

.web-design-btn:hover {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes blinkRed {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 65, 77, 0.5), 0 0 10px rgba(255, 65, 77, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 65, 77, 1), 0 0 25px rgba(255, 65, 77, 1);
    }
}

.separator {
    margin: 0 10px;
}

/* === Social Icons (bottom right) === */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* === Social Icons Section (Right Column) === */
.social-icons-section h3 {
    font-size: 0.95rem;
    color: #b6c3d4;
}

/* === FINAL FIXED MOBILE FOOTER (Single Vertical Stack) === */
@media (max-width: 768px) {

    /* Overall footer container stacked vertically */
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
        gap: 25px;
    }

    /* Each section full width */
    .footer-section {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    /* Logo section */
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .footer-logo p {
        font-size: 0.9rem;
        color: #aee1d5;
    }

    .contact-info {
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Product section */
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        color: #dff8f0;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .footer-section ul li a:hover {
        color: #7ed6c2;
    }

    /* Social icons centered */
    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 22px;
        margin-top: 25px;
        padding-bottom: 25px;
        /* space between icons and underline */
        border-bottom: 2px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        text-align: center;
        position: relative;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        /* makes it pop off the bg */
        color: #fff;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: linear-gradient(135deg, #00d1a0, #0075ff);
        transform: scale(1.15);
        box-shadow: 0 4px 12px rgba(0, 209, 160, 0.6);
    }


    /* Footer bottom — centered and stacked */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 10px 100px 10px;
        width: 100%;
        margin-top: 10px;
        gap: 12px;
    }

    .footer-bottom-top-row {
        flex-direction: column;
        gap: 12px;
    }

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

    .footer-bottom-top-row .footer-bottom-line + .footer-bottom-line::before {
        display: none;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .footer-bottom-left .separator {
        display: none;
    }

    .footer-bottom-left .copyright {
        font-size: 0.85rem;
        color: #a0c7be;
        order: 99;
    }

    /* Web design button centered below copyright */
    .web-design-btn {
        background: linear-gradient(135deg, #1a02ee, #ff006a);
        color: #fff;
        padding: 10px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.70rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0;
        position: static;
    }

    .web-design-btn:hover {
        background: linear-gradient(135deg, #1306c7, #76048d);
        transform: scale(1.05);
    }

    /* Map section — last element, full width */
    .footer-map {
        order: 99;
        /* force it to be at the bottom */
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer-map iframe {
        width: 100%;
        height: 250px;
        border: none;
        border-radius: 10px;
        filter: grayscale(30%) contrast(1.1);
        transition: filter;
        display: block;
    }
}

/* === Dropdown Menu === */
.dropdown {
    position: relative;
}

/* Two-Row Navigation Layout */
.desktop-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

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

/* Email Link Styling */
/* Email Link Styling */
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #25D366;
    color: #fff;
}

.phone-link i {
    font-size: 16px;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Search Feature */
.search-wrapper {
    position: relative;
}

.search-icon {
    background: #4FC3F7;
    border: none;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.4);
}

.search-icon:hover {
    background: #29B6F6;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.6);
}

.search-box {
    position: absolute;
    top: 45px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 15px;
    min-width: 300px;
    display: none;
    z-index: 1000;
}

.search-box.active {
    display: block;
}

#searchInput {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-result-item a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.no-results {
    color: #888;
    padding: 10px;
    text-align: center;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #4FC3F7;
    color: #000;
}

.email-link i {
    font-size: 16px;
}

/* Social Media Icons */
.nav-top-row .social-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-top-row .social-group a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-top-row .social-group a:hover {
    background: #4FC3F7;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 195, 247, 0.4);
}

.dropdown-toggle {
    cursor: pointer;
    /* Style to match other nav links */
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .25s ease, text-shadow .25s ease, box-shadow .25s ease;
    line-height: inherit;
    /* Ensure vertical alignment */

}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to right, blue, rgba(8, 8, 8, 0.15));
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 0;
    list-style: none;
    display: none;
    flex-direction: column;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.25);
}

.desktop-nav .dropdown-toggle:hover {
    color: #4cc9f0;
    transform: translateY(-2px);
    text-shadow: 0 0 8px #4cc9f0, 0 0 16px #4cc9f0;
    box-shadow: 0 0 12px #4cc9f0, 0 0 24px #4cc9f0;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Mobile-friendly dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 0;
        display: none;
        background: linear-gradient(to right, rgb(47, 47, 248), rgba(255, 255, 255, 0.15));
        backdrop-filter: blur(8px);
        border-radius: 10px;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }

    .side-menu .dropdown-toggle,
    .side-menu .menu-links>li>a {
        color: #fff;
        font-size: 1.1rem;
        padding: 10px 6px;
        display: block;
        width: 100%;
        text-align: left;
        /* Glass effect */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
    }

    .side-menu .dropdown-toggle {
        font-family: 'Poppins', sans-serif;
    }
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    height: 55px;
    bottom: 40px;
    left: 40px;
    right: auto;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 8px 20px;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-float .whatsapp-text {
    display: block;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes wa-shake {
    0%,100% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(-15deg) scale(1.1); }
    20% { transform: rotate(15deg) scale(1.1); }
    30% { transform: rotate(-10deg) scale(1.05); }
    40% { transform: rotate(10deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 90px;
        right: 20px;
        left: auto;
        padding: 0;
        border-radius: 50%;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: wa-shake 3s ease-in-out infinite;
    }
    .whatsapp-float .whatsapp-text {
        display: none;
    }
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Mobile Search Box */
.mobile-search-box {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
    width: 200px;
}

.mobile-search-box input {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    outline: none;
    transition: all 0.3s;
}

.mobile-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-search-box input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4FC3F7;
}

.mobile-search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: #4FC3F7;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 11px;
}

.mobile-search-box button:hover {
    background: #29B6F6;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .mobile-search-box {
        display: block;
    }

    header {
        position: relative;
    }
}

/* =========================================
   ACTURA STYLE REDESIGN (Hero Section)
   ========================================= */

/* 1. Main Wrapper Setup */
.landing-page-wrapper.actura-style {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    background: #000;
}

/* 2. Background Image & Dark Overlay */
.actura-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uses your existing image path */
    background-image: url('https://images.pexels.com/photos/34076538/pexels-photo-34076538.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.actura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Dark on left, transparent on right */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.container-width {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 3. Header Adjustments for Dark Theme */
.landing-page-wrapper.actura-style header {
    padding-top: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 4. The "Bracket" Text Box (Crucial for the design) */
.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    /* Vertically center the text */
    position: relative;
    padding-bottom: 100px;
    /* Space for bottom cards */
}

.bracket-box {
    position: relative;
    padding: 30px 0 30px 40px;
    /* Space inside the bracket */
    margin-left: 15px;
    margin-top: 60px;
    max-width: 700px;
    /* THE YELLOW LEFT BORDER */
    border-left: 5px solid #4FC3F7;
}

/* THE YELLOW TOP BORDER (The bracket arm) */
.bracket-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    /* Length of the top line */
    height: 5px;
    background-color: #4FC3F7;
}

/* THE YELLOW BOTTOM BORDER (The bracket arm) */
.bracket-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    /* Length of the bottom line */
    height: 5px;
    background-color: #4FC3F7;
}

/* Typography Overrides */
.top-tag {
    color: #ccc;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bracket-box h1.brand {
    text-align: left;
    /* Align left unlike previous center */
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: none;
    /* Remove neon glow for cleaner look */
    animation: none;
}

.bracket-box .highlight {
    color: #fff;
    /* Keep title white */
}

.bracket-box .description {
    text-align: left;
    margin: 0 0 35px 0;
    max-width: 500px;
    color: #b0b0b0;
    font-size: 16px;
}

/* Button Alignment */
.main-actions {
    display: flex;
    gap: 20px;
    margin-top: 0;
}

.btn-play {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-play:hover {
    color: #4FC3F7;
}

/* 5. The Hotspots (Yellow Dots) */
.hotspot {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(79, 195, 247, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.hotspot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #4FC3F7;
    border-radius: 50%;
    animation: pulseSpot 2s infinite;
}

/* Positioning the dots */
.spot-1 {
    top: 20%;
    right: 30%;
}

.spot-2 {
    top: 45%;
    right: 10%;
}

.spot-3 {
    bottom: 35%;
    right: 40%;
}

.spot-4 {
    top: 65%;
    right: 20%;
}

@keyframes pulseSpot {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

/* 6. The Bottom Cards - Overlapping Effect */
.hero-bottom-cards {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto -100px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    transform: translateY(10%);
}

.h-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.h-card:last-child {
    border-right: none;
}

.h-card:hover {
    background-color: #222;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Little yellow square accent on cards */
.card-line {
    width: 10px;
    height: 10px;
    background-color: #4FC3F7;
    margin-bottom: 20px;
}

.h-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.h-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #4FC3F7;
}

/* Large faded icon in card background */
.card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle */
    pointer-events: none;
}

/* 7. Mobile Responsive Fixes */
@media (max-width: 768px) {
    .landing-page-wrapper.actura-style {
        height: auto;
        min-height: auto;
    }

    .bracket-box {
        margin-left: 0;
        padding-left: 20px;
        margin-top: 40px;
    }

    .bracket-box h1.brand {
        font-size: 2.2rem;
    }

    .hero-bottom-cards {
        grid-template-columns: 1fr;
        margin: 50px auto 0 auto;
        transform: translateY(0);
    }

    .h-card {
        padding: 25px 20px;
    }

    .h-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .h-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .card-line {
        width: 8px;
        height: 8px;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 11px;
    }

    .card-icon {
        font-size: 40px;
    }

    .about-section {
        padding: 100px 20px;
    }

    .spot-1,
    .spot-2,
    .spot-3,
    .spot-4 {
        display: none;
        /* Hide dots on mobile */
    }

    .spot-5,
    .spot-6,
    .spot-7,
    .spot-8 {
        display: none;
    }

    .hero-content .spot-1 {
        display: block !important;
        top: 80%;
        left: 15%;
    }

    .hero-content .spot-2 {
        display: block !important;
        top: 85%;
        left: 65%;
    }

    .hero-content .spot-3 {
        display: block !important;
        top: 90%;
        left: 40%;
    }

    .hero-content .spot-4 {
        display: block !important;
        top: 88%;
        left: 80%;
    }

    .hero-content .spot-5 {
        display: block !important;
        top: 82%;
        left: 50%;
    }

    .hero-content .spot-6 {
        display: block !important;
        top: 87%;
        left: 25%;
    }

    .hero-content .spot-7 {
        display: block !important;
        top: 91%;
        left: 70%;
    }

    .hero-content .spot-8 {
        display: block !important;
        top: 84%;
        left: 90%;
    }

    .main-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================
   ABOUT US SECTION (Industrial Design)
   ========================================= */
.about-section {
    background: #fff;
    padding: 200px 20px 100px 20px;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wireframe-border {
    position: absolute;
    width: 90%;
    height: 95%;
    border: 3px solid #ddd;
    top: -20px;
    left: -30px;
    z-index: 0;
}

.dot-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 2;
}

.about-image-col img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    z-index: 1;
}

.about-content-col h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.yellow-square {
    width: 12px;
    height: 12px;
    background: #4FC3F7;
    display: inline-block;
    flex-shrink: 0;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #4FC3F7;
}

.body-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.clean-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #222;
    border: 2px solid #222;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.clean-btn:hover {
    background: #222;
    color: #fff;
}

/* =========================================
   OFFERS SECTION
   ========================================= */
.offers-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.offers-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    color: #fff;
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

.service-card.featured:hover {
    box-shadow: 0 20px 50px rgba(79, 195, 247, 0.6);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.service-card.featured h4 {
    color: #fff;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #4FC3F7;
}

.service-card.featured .price {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.95);
}

.service-includes {
    margin-bottom: 25px;
    flex-grow: 1;
}

.includes-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service-card.featured .includes-title {
    color: #fff;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    font-size: 0.85rem;
    color: #666;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FC3F7;
    font-weight: bold;
}

.service-card.featured .service-includes li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-includes li::before {
    color: #fff;
}

.order-link {
    color: #222;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 12px 20px;
    border: 2px solid #222;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.service-card.featured .order-link {
    color: #fff;
    border-color: #fff;
}

.order-link:hover {
    background: #222;
    color: #fff;
    transform: translateX(5px);
}

.service-card.featured .order-link:hover {
    background: #fff;
    color: #4FC3F7;
}

.pricing-notice {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border-left: 5px solid #fff;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.pricing-notice h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-notice p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        position: relative;
    }

    .about-image-col::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
        border: 3px solid #4FC3F7;
        z-index: 0;
        animation: borderPulse 3s infinite;
    }

    .about-image-col::after {
        content: '';
        position: absolute;
        top: 15px;
        right: -15px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4FC3F7, #29B6F6);
        opacity: 0.3;
        z-index: 3;
        animation: float 4s ease-in-out infinite;
    }

    .about-image-col img {
        height: 350px;
        box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
    }

    .about-content-col h2 {
        font-size: 2rem;
    }

    .offers-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }

    .service-card .price {
        font-size: 1.6rem;
    }

    .pricing-notice {
        padding: 20px;
        margin-top: 30px;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px) rotate(-2deg);
    }

    75% {
        transform: translateX(3px) rotate(2deg);
    }
}

@keyframes slideFromRight {
    0% {
        left: 100%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 50%;
    }
}

@keyframes slideFromLeft {
    0% {
        right: 100%;
    }

    50% {
        right: 50%;
    }

    100% {
        right: 50%;
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes borderPulse {

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

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    header {
        padding-top: 50px !important;
    }

    .hamburger {
        margin-top: 50px !important;
    }

    .projects-container {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-projects-intro {
        display: block !important;
        text-align: center;
        padding: 20px;
        background: #f8f8f8;
        border-radius: 10px;
        margin: 20px auto;
    }

    .mobile-projects-intro h3 {
        font-size: 20px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .mobile-projects-intro p {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .view-work-btn {
        background: linear-gradient(135deg, #4FC3F7, #29B6F6);
        color: #000;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }

    .view-work-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
    }

    .mobile-top-bar {
        position: relative;
        overflow: hidden;
    }

    .mobile-top-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, #4FC3F7, #29B6F6);
        animation: slideFromRight 3s infinite;
        z-index: 0;
    }

    .mobile-top-bar::after {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, #29B6F6, #4FC3F7);
        animation: slideFromLeft 3s infinite;
        z-index: 0;
    }

    .mobile-contact-icon,
    .mobile-social-icons a {
        animation: shake 0.5s infinite;
        position: relative;
        z-index: 2;
    }

    .mobile-contact-icon {
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(79, 195, 247, 0.3);
        border-radius: 50%;
        color: #fff;
        font-size: 11px;
        transition: all 0.3s;
    }

    .mobile-contact-icon:hover {
        background: rgba(79, 195, 247, 0.5);
        transform: scale(1.1);
    }

    .mobile-social-icons {
        display: flex;
        gap: 5px;
    }

    .mobile-social-icons a {
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 11px;
        transition: all 0.3s;
    }

    .mobile-social-icons a:hover {
        background: #4FC3F7;
        transform: scale(1.1);
    }

    .snow {
        position: absolute;
        width: 2px;
        height: 2px;
        background: white;
        border-radius: 50%;
        animation: snowfall 3s linear infinite;
        z-index: 1;
    }
}


/* Mobile Projects Modal */
.mobile-projects-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.mobile-projects-modal::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mobile-projects-modal.active {
    display: block;
}

.mobile-projects-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 1;
}

.mobile-projects-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4FC3F7, #29B6F6);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-projects-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(79, 195, 247, 0.6);
}

.mobile-projects-content h2 {
    color: #222;
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.mobile-projects-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
    border-radius: 2px;
}

.mobile-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mobile-project-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.mobile-project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
    border-color: #4FC3F7;
}

.mobile-project-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.mobile-project-item:hover img {
    transform: scale(1.05);
}

.mobile-project-info {
    padding: 12px;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.mobile-project-info h3 {
    color: #222;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.mobile-project-info p {
    color: #666;
    font-size: 11px;
    line-height: 1.5;
}

/* ============================================================
   FOOTER NEWSLETTER SECTION — Animated Glass Card
============================================================ */

.footer-newsletter {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 20px 60px;
    width: 100%;
    min-width: 0;
    text-align: center;
    margin-left: -80px;
    box-sizing: border-box;
}

.footer-newsletter .fnl-eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.footer-newsletter .fnl-stats {
    justify-content: center;
}

.footer-newsletter .fnl-pills {
    justify-content: center;
}

.footer-newsletter .fnl-note {
    text-align: center;
}

.fnl-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    margin-bottom: 16px;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fnl-card:hover {
    border-color: rgba(139,92,246,0.4);
    box-shadow: 0 0 30px rgba(139,92,246,0.15), 0 0 60px rgba(6,182,212,0.08);
}

.fnl-form {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.fnl-input-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.fnl-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 12px 12px 34px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.fnl-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}

/* ── Aurora micro-orbs behind newsletter ── */
.fnl-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(55px);
    opacity: 0.45;
}
.fnl-orb1 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(139,92,246,0.8), transparent 70%);
    top: -60px; left: -60px;
    animation: fnlOrb1 12s ease-in-out infinite alternate;
}
.fnl-orb2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(6,182,212,0.7), transparent 70%);
    bottom: 0; right: -40px;
    animation: fnlOrb2 15s ease-in-out infinite alternate;
}
@keyframes fnlOrb1 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(40px,30px) scale(1.2); }
}
@keyframes fnlOrb2 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-30px,-40px) scale(1.15); }
}

/* ── Scanline shimmer ── */
.fnl-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.012) 3px,
        rgba(255,255,255,0.012) 4px
    );
    animation: fnlScanMove 8s linear infinite;
    z-index: 0;
}
@keyframes fnlScanMove {
    0%   { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* ── Eyebrow badge ── */
.fnl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.35);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: rgba(200,180,255,0.95);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    animation: fnlBadgePulse 3s ease-in-out infinite;
}
.fnl-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa, 0 0 12px #a78bfa;
    animation: fnlDotBlink 1.5s ease-in-out infinite;
}
@keyframes fnlBadgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
    50%      { box-shadow: 0 0 0 5px rgba(139,92,246,0.12); }
}
@keyframes fnlDotBlink {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ── Heading ── */
.fnl-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.fnl-heading span {
    background: linear-gradient(90deg, #a78bfa, #06b6d4, #ec4899);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fnlGradientShift 4s linear infinite;
}
@keyframes fnlGradientShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Sub text ── */
.fnl-sub {
    font-size: 0.82rem;
    color: rgba(209,228,237,0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* ── Stats row ── */
.fnl-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.fnl-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fnl-stat-num {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fnlStatCount 0.6s ease-out;
}
.fnl-stat-label {
    font-size: 0.65rem;
    color: rgba(209,228,237,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fnl-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
}

/* ── Glass card ── */


/* ── Error ── */
.fnl-error {
    font-size: 0.75rem;
    color: #f87171;
    margin-top: 8px;
    display: none;
}
.fnl-error.active { display: block; }

/* ── Success state ── */
.fnl-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    gap: 4px;
}
.fnl-success.active { display: flex; }
.fnl-success-icon {
    font-size: 2rem;
    animation: fnlSuccessBounce 0.6s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes fnlSuccessBounce {
    0%,100% { transform: scale(1); }
    40%      { transform: scale(1.4); }
    70%      { transform: scale(0.9); }
}
.fnl-success-title {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a78bfa, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fnl-success p {
    font-size: 0.75rem;
    color: rgba(209,228,237,0.7);
    margin: 0;
}

/* ── Pills ── */
.fnl-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.fnl-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: rgba(209,228,237,0.8);
    cursor: default;
    transition: all 0.3s ease;
    animation: fnlPillFloat 4s ease-in-out infinite;
}
.fnl-pill:nth-child(2) { animation-delay: 0.5s; }
.fnl-pill:nth-child(3) { animation-delay: 1s; }
.fnl-pill:nth-child(4) { animation-delay: 1.5s; }
.fnl-pill:hover {
    background: rgba(139,92,246,0.2);
    border-color: rgba(139,92,246,0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,92,246,0.2);
}
@keyframes fnlPillFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* ── Note ── */
.fnl-note {
    font-size: 0.68rem;
    color: rgba(209,228,237,0.4);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ── Mobile: newsletter stacks with others ── */
@media (max-width: 768px) {
    .footer-newsletter {
        width: 100%;
        padding: 15px;
        text-align: center;
    }
    .fnl-eyebrow { margin: 0 auto 14px; }
    .fnl-stats   { justify-content: center; }
    .fnl-pills   { justify-content: center; }
    .fnl-form    { flex-direction: column; }
    .fnl-btn     { width: 100%; justify-content: center; }
}

/* ============================================================
   SHATTERED CRYSTAL MAINTENANCE MODAL
============================================================ */

/* ── Backdrop ── */
.sc-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 99990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.sc-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* ── White flash on close ── */
.sc-flash {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.08s ease;
}
.sc-flash.fire {
    opacity: 0.85;
    transition: opacity 0.08s ease;
}

/* ── Shards container ── */
.sc-shards-container {
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
    overflow: hidden;
}
.sc-shard {
    position: absolute;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(6,182,212,0.6));
    clip-path: polygon(50% 0%, 100% 60%, 75% 100%, 25% 100%, 0% 60%);
    opacity: 1;
    animation: scShardFly 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes scShardFly {
    0%   { transform: translate(0,0) rotate(0deg) scale(1);   opacity: 1; }
    100% { transform: var(--tx) rotate(var(--rot)) scale(0.2); opacity: 0; }
}

/* ── Modal ── */
.sc-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.05) rotateX(40deg);
    filter: blur(20px);
    z-index: 99995;
    width: min(620px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(8, 4, 28, 0.72);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition:
        transform 0.6s cubic-bezier(0.34,1.56,0.64,1),
        filter 0.5s ease,
        opacity 0.4s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(139,92,246,0.4) transparent;
}
.sc-modal.open {
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    filter: blur(0px);
    opacity: 1;
    pointer-events: all;
}
.sc-modal.closing {
    transform: translate(-50%, -50%) scale(0.05) rotateX(40deg);
    filter: blur(20px);
    opacity: 0;
    pointer-events: none;
}

/* ── Aurora orbs inside modal ── */
.sc-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.5;
}
.sc-orb1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(139,92,246,0.8), transparent 70%);
    top: -80px; left: -80px;
    animation: scOrb1 14s ease-in-out infinite alternate;
}
.sc-orb2 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(6,182,212,0.7), transparent 70%);
    bottom: -60px; right: -60px;
    animation: scOrb2 18s ease-in-out infinite alternate;
}
.sc-orb3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(236,72,153,0.5), transparent 70%);
    top: 40%; left: 50%;
    animation: scOrb3 11s ease-in-out infinite alternate;
}
@keyframes scOrb1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px,40px) scale(1.2); } }
@keyframes scOrb2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px,-50px) scale(1.15); } }
@keyframes scOrb3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-60px,30px) scale(0.85); } }

/* ── Prism border top ── */
.sc-prism-border {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg,
        #7c3aed, #06b6d4, #ec4899, #f59e0b, #10b981, #7c3aed);
    background-size: 300% 100%;
    animation: scPrismRun 3s linear infinite;
    z-index: 2;
}
@keyframes scPrismRun {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* ── Crystal shimmer sweep ── */
.sc-shimmer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
    z-index: 1;
}
.sc-shimmer::after {
    content: '';
    position: absolute;
    top: -100%; left: -60%;
    width: 35%; height: 300%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255,255,255,0.05) 45%,
        rgba(255,255,255,0.14) 50%,
        rgba(255,255,255,0.05) 55%,
        transparent 70%);
    transform: skewX(-15deg);
    animation: scSweep 5s ease-in-out infinite;
}
@keyframes scSweep {
    0%   { left: -60%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* ── Rising particles ── */
.sc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
    z-index: 1;
}
.sc-p {
    position: absolute;
    bottom: 0;
    width: 4px; height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: scPRise linear infinite;
}
.sc-p1  { left:  8%; background: rgba(139,92,246,0.9);  animation-duration: 7s;  animation-delay: 0s;   }
.sc-p2  { left: 18%; background: rgba(6,182,212,0.9);   animation-duration: 10s; animation-delay: 1.2s; width:5px; height:5px; }
.sc-p3  { left: 28%; background: rgba(236,72,153,0.9);  animation-duration: 8s;  animation-delay: 2.5s; }
.sc-p4  { left: 38%; background: rgba(245,158,11,0.9);  animation-duration: 12s; animation-delay: 0.7s; width:3px; height:3px; }
.sc-p5  { left: 50%; background: rgba(16,185,129,0.9);  animation-duration: 9s;  animation-delay: 3.1s; }
.sc-p6  { left: 60%; background: rgba(139,92,246,0.9);  animation-duration: 11s; animation-delay: 1.8s; width:5px; height:5px; }
.sc-p7  { left: 70%; background: rgba(6,182,212,0.9);   animation-duration: 7s;  animation-delay: 4s;   }
.sc-p8  { left: 80%; background: rgba(236,72,153,0.9);  animation-duration: 13s; animation-delay: 0.4s; width:3px; height:3px; }
.sc-p9  { left: 92%; background: rgba(245,158,11,0.9);  animation-duration: 9s;  animation-delay: 2s;   }
@keyframes scPRise {
    0%   { transform: translateY(0) translateX(0) scale(1);     opacity: 0; }
    10%  { opacity: 0.9; }
    50%  { transform: translateY(-150px) translateX(12px) scale(1.3); opacity: 0.5; }
    100% { transform: translateY(-320px) translateX(-8px) scale(0.3); opacity: 0; }
}

/* ── Content ── */
.sc-content {
    position: relative;
    z-index: 5;
    padding: 36px 36px 28px;
}

/* Close button */
.sc-close {
    position: absolute;
    top: 16px; right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}
.sc-close:hover {
    background: rgba(236,72,153,0.3);
    border-color: rgba(236,72,153,0.6);
    transform: rotate(90deg) scale(1.1);
}

/* Eyebrow */
.sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.35);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.72rem;
    color: rgba(200,180,255,0.95);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.sc-modal.open .sc-eyebrow { opacity: 1; transform: translateY(0); }

.sc-gem { animation: scGemPulse 2s ease-in-out infinite; display: inline-block; }
@keyframes scGemPulse {
    0%,100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 4px rgba(139,92,246,0.8)); }
    50%      { transform: scale(1.2) rotate(10deg); filter: drop-shadow(0 0 10px rgba(139,92,246,1)); }
}

.sc-eyebrow-text { font-weight: 700; }

.sc-version-badge {
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: scBadgeShimmer 2s ease-in-out infinite;
}
@keyframes scBadgeShimmer {
    0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
    50%      { box-shadow: 0 0 12px 3px rgba(124,58,237,0.5); }
}

/* Title */
.sc-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.sc-modal.open .sc-title { opacity: 1; transform: translateY(0); }
.sc-title span {
    background: linear-gradient(90deg, #a78bfa, #06b6d4, #ec4899);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scTitleGrad 4s linear infinite;
}
@keyframes scTitleGrad {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtitle */
.sc-subtitle {
    font-size: 0.9rem;
    color: rgba(209,228,237,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.sc-modal.open .sc-subtitle { opacity: 1; transform: translateY(0); }

.sc-ver {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}
.sc-ver-old { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.4); text-decoration: line-through; }
.sc-ver-new { background: rgba(16,185,129,0.2); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.4); animation: scVerPulse 1.5s ease-in-out infinite; }
@keyframes scVerPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
    50%      { box-shadow: 0 0 10px 3px rgba(16,185,129,0.4); }
}

/* Progress bar */
.sc-progress-wrap {
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}
.sc-modal.open .sc-progress-wrap { opacity: 1; transform: translateY(0); }
.sc-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(209,228,237,0.6);
    margin-bottom: 6px;
}
.sc-progress-pct {
    color: #a78bfa;
    font-weight: 700;
}
.sc-progress-track {
    position: relative;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}
.sc-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.sc-modal.open .sc-progress-fill { width: 78%; }
.sc-progress-glow {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: scProgressGlow 2s ease-in-out infinite;
}
@keyframes scProgressGlow {
    0%   { left: -40px; }
    100% { left: 110%; }
}

/* Feature cards */
.sc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.sc-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.sc-modal.open .sc-feat:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.sc-modal.open .sc-feat:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }
.sc-modal.open .sc-feat:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }
.sc-feat:hover {
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 20px rgba(139,92,246,0.15);
    transform: translateY(-2px) !important;
    background: rgba(139,92,246,0.08);
}
.sc-feat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.sc-feat strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 3px;
}
.sc-feat p {
    color: rgba(209,228,237,0.6);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.5;
}

/* Divider */
.sc-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease 0.65s;
}
.sc-modal.open .sc-divider { opacity: 1; }
.sc-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.sc-divider span {
    font-size: 0.72rem;
    color: rgba(209,228,237,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Vision AI section */
.sc-vision {
    background: rgba(6,182,212,0.06);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.7s, transform 0.4s ease 0.7s;
}
.sc-modal.open .sc-vision { opacity: 1; transform: translateY(0); }

.sc-vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.35);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.7rem;
    color: #6ee7b7;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.sc-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: scLivePulse 1.2s ease-in-out infinite;
}
@keyframes scLivePulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

.sc-vision-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.sc-vision-title span {
    background: linear-gradient(90deg, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sc-vision-sub {
    font-size: 0.82rem;
    color: rgba(209,228,237,0.65);
    margin-bottom: 14px;
}
.sc-vision-caps {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.sc-cap {
    font-size: 0.82rem;
    color: rgba(209,228,237,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 2px solid rgba(6,182,212,0.4);
    transition: all 0.3s ease;
}
.sc-cap:hover {
    background: rgba(6,182,212,0.08);
    border-left-color: #06b6d4;
    color: #fff;
    transform: translateX(4px);
}

/* Footer buttons */
.sc-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.8s, transform 0.4s ease 0.8s;
}
.sc-modal.open .sc-footer { opacity: 1; transform: translateY(0); }

.sc-btn-vision {
    position: relative;
    overflow: hidden;
    flex: 1;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.sc-btn-vision::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0s;
}
.sc-btn-vision:hover::before { left: 150%; transition: left 0.5s ease; }
.sc-btn-vision:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,58,237,0.6);
}

.sc-btn-close {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(209,228,237,0.8);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sc-btn-close:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .sc-content { padding: 28px 20px 22px; }
    .sc-title    { font-size: 1.5rem; }
    .sc-footer   { flex-direction: column; }
    .sc-btn-vision, .sc-btn-close { width: 100%; }
}
