:root {
    --primary: #0F172A;
    --secondary: #10B981; /* Emerald/Gold feel */
    --white: #ffffff;
}

/* Glassmorphism based on your screenshot background */
.glass-nav {
    background: rgba(15, 23, 42, 0.85); /* Darker Navy Base (Primary) */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dark .glass-nav {
    background: rgba(2, 6, 23, 0.95); /* Nearly black for maximum contrast */
}

.nav-link {
    color: #F8FAFC; /* Bright Slate White */
    letter-spacing: 0.12em; /* Slightly more space for readability */
    opacity: 0.9; /* Higher opacity than before */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow to lift text */
    transition: all 0.3s ease;
}

.nav-link:hover, .active-line {
    opacity: 1;
    color: var(--secondary); /* Emerald/Gold */
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3); /* Glow effect on hover */
}

/* Gold line under active link like in your photo */
.active-line {
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 4px;
}

/* Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--white);
    font-size: 13px;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

/* Login Button like the photo outline */
.login-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    text-shadow: none;
}

.login-btn:hover {
    background: var(--white);
    color: var(--primary);
}

/* Mobile Nav Logic */
.mobile-side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #000;
    padding: 40px;
    transition: 0.4s ease;
}

.mobile-side-nav.active {
    right: 0;
}

/* Syncra Professional Glass Header */
.glass-header {
    background: rgba(15, 23, 42, 0.7); /* Dark Navy tint */
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Light Mode Override */
html:not(.dark) .glass-header {
    background: rgba(255, 255, 255, 0.8); /* White tint */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #0F172A; /* Navy text for light mode */
}

/* Sticky Shrink Effect */
.header-scrolled {
    padding-top: 1.25rem !important; /* py-5 */
    padding-bottom: 1.25rem !important;
    background: rgba(15, 23, 42, 0.95) !important; /* More solid on scroll */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

html:not(.dark) .header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}



/* home-1 hero section  */
  .syncra-headline {
        font-size: 2.8rem; /* Adjusted base size */
        word-wrap: break-word;
    }

    @media (min-width: 381px) and (max-width: 1023px) {
        .syncra-headline {
            font-size: 10.5vw !important; /* Slightly smaller to keep the word together */
        }
    }

    @media (min-width: 1024px) {
        .syncra-headline { font-size: 8rem !important; }
    }

    .syncra-pan-zoom {
        animation: syncraPan 30s infinite alternate ease-in-out;
    }
    @keyframes syncraPan {
        0% { transform: scale(1.05); }
        100% { transform: scale(1.18) translate(-1%, -1%); }
    }

    


    /* home 1 testimonial section  */

     .testimonial-swiper .swiper-slide-active blockquote {
        animation: syncraQuoteIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes syncraQuoteIn {
        0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
        100% { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
    
    #client-portrait.changing {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(4px);
    }
    

 /* home 2 tab section */
    .tab-btn.active { background: white !important; box-shadow: inset 4px 0 0 0 #10b981; }
    .dark .tab-btn.active { background: rgba(255,255,255,0.03) !important; }
    #content-display { transition: opacity 0.4s ease, transform 0.4s ease; }


      /*about second Section Animations */
    .reveal-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }



      /* Testimonial Active State */
    .testimonial-slide.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Logo Marquee Animation */
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .animate-marquee {
        display: flex;
        width: 200%;
        animation: marquee 30s linear infinite;
    }
    .animate-marquee:hover {
        animation-play-state: paused;
    }



  /*blog-detail section banner */
    .animate-syncra-up {
        opacity: 0;
        transform: translateY(30px);
        animation: syncraFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes syncraFadeUp {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }


 /* home 2 Pricing Reveal Logic */
.pricing-card-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-center {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.is-visible .pricing-card-left,
.is-visible .pricing-card-right {
    opacity: 1;
    transform: translateX(0);
}

.is-visible .pricing-card-center {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Hover for the Green Card */
.hover-glow:hover {
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
}

    






    /* banner css  */

      /* Clean, Professional Fade for Banners */
    .animate-fade-in-up {
        animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

  
    .reveal-active { opacity: 1 !important; transform: translate(0,0) !important; }
    
    @keyframes scan {
        0% { transform: translateY(-10px); opacity: 0; }
        50% { opacity: 1; }
        100% { transform: translateY(200px); opacity: 0; }
    }
    .animate-scan { animation: scan 4s linear infinite; }



       /* comming soon page */
    @keyframes scan-fast { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
    @keyframes fade-in-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
    @keyframes fade-in-right { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }
    
    .animate-scan-fast { animation: scan-fast 2s linear infinite; }
    .animate-pulse-slow { animation: pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
    .animate-fade-in-up { animation: fade-in-up 1.2s ease-out forwards; }
    .animate-fade-in-right { animation: fade-in-right 1.4s ease-out forwards; }

    /* Modern Text Reveal */
    .reveal-text { 
        background: linear-gradient(to right, #10b981, #10b981) no-repeat; 
        background-size: 0% 100%; 
        animation: text-reveal 1.5s 0.5s ease-out forwards; 
        -webkit-background-clip: text; 
        color: transparent; 
    }
    @keyframes text-reveal { to { background-size: 100% 100%; } }
    
    

       /* service Section Animation Utilities */
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-on-scroll.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    .animate-fade-in-up {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }



    /* home 2 sixth section measure excellence */

      /* Ensures numbers don't jump during counting */
    .tabular-nums { font-variant-numeric: tabular-nums; }

    /* Layout Animations */
    .animate-on-scroll {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, opacity;
    }
    
    .fade-in-left { transform: translateX(-30px); }
    .fade-in-up { transform: translateY(30px); }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Column Border Fix for Tablet/Mobile */
    @media (max-width: 1024px) {
        .lg\:border-r { border-right: none !important; }
        .lg\:pl-20 { padding-left: 0 !important; }
    }