:root {
    /* Axis Live Black, Blue & White Palette */
    --bs-primary: #1243E8; /* Logo Blue */
    --bs-primary-rgb: 18, 67, 232;
    --bs-secondary: #1243E8; /* Double check if we need secondary, using same for accent uniformity */
    --bs-secondary-rgb: 18, 67, 232;
    --bs-white: #FFFFFF;
    --bs-dark: #000000; /* Primary Background */
    --bs-dark-rgb: 0, 0, 0;

    /* Advanced Shading/Glass Effects */
    --glass-border: rgba(18, 67, 232, 0.2); /* Accent border */
    --glass-bg: rgba(0, 0, 0, 0.9);
    --dark-glass-border: rgba(255, 255, 255, 0.08);

    /* Mappings for components to allow depth while sticking to 3 colors */
    --card-bg: #050505; /* Just slightly off black for depth, still very dark */
    --section-alt-bg: #050505;

    /* Supporting colors - simplified/removed or mapped to variables */
    --bs-light: #000000;
    --bs-light-primary: #050505;
}

/* Global Reset & Base */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bs-dark);
    color: var(--bs-white);
    overflow-x: hidden;
    font-size: 14px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    z-index: 1060;
    transition: width 0.2s ease-out;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.preloader-logo i {
    margin-right: 10px;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

.preloader-logo {
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 5px rgba(255,255,255,0.4)); }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(255,255,255,0.8)); }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-white);
    font-weight: 700;
}

.gradient-heading {
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #4338CA;
    --bs-btn-hover-border-color: #4338CA;
    --bs-btn-active-bg: #3730A3;
    --bs-btn-active-border-color: #3730A3;
}

.btn-secondary {
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-bg: #7C3AED;
    --bs-btn-hover-border-color: #7C3AED;
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) !important;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.full-screen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Cards */
.card {
    border: 1px solid var(--dark-glass-border) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    border-radius: 15px !important;
    color: var(--bs-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Ripple effect */
.card-ripple,
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

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

/* Trust Badges */
.trust-badge {
    background: rgba(18, 67, 232, 0.08);
    border-left: 3px solid var(--bs-primary);
    color: var(--bs-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-badge-enhanced {
    background: linear-gradient(135deg, var(--bs-light-primary) 0%, var(--bs-light-secondary) 100%);
    border-left: 3px solid var(--bs-primary);
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Navigation */
.top-bar {
    background: var(--bs-primary) !important;
    padding: 10px 0;
    z-index: 1030;
}

.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--bs-white);
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0 2px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bs-white);
    background-color: rgba(var(--bs-primary-rgb), 0.2);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 20px;
}

/* Utility Classes */
.section-light {
    background-color: var(--bg-color, #030303); /* Force dark background */
}

.section-spacing {
    padding: 80px 0;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1;
}

/* Animated Elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

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

.bounce:hover {
    animation: bounce 1s;
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

/* Service Card Interactive Spotlight */
.service-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--dark-glass-border);
    border-left: 3px solid var(--bs-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    height: 100%;
    color: var(--bs-white);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(79, 70, 229, 0.1) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

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

.service-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-left-color: var(--bs-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.back-to-top:hover {
    background-color: var(--bs-secondary);
    transform: translateY(-3px);
}

/* Industry Cards */
.industry-card {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    color: white;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.industry-card i,
.industry-card h5,
.industry-card p {
    color: white;
}

/* Counter */
.counter {
    display: inline-block;
    transition: all 0.5s ease;
}

/* Grayscale Utility for Partner Logos */
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    min-width: 200px;
    color: var(--bs-primary);

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-10px) scale(1.1);
    color: var(--bs-secondary);
}

.brand-logo i {
    filter: drop-shadow(0 0 0 rgba(79, 70, 229, 0));
    transition: all 0.4s ease;
}

.brand-logo:hover i {
    filter: drop-shadow(0 10px 15px rgba(79, 70, 229, 0.3));
}

.brand-logo span {
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-logo:hover span {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.italic {
    font-style: italic;
}

/* Google Review Cards */
.google-review-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease;
    border: 1px solid var(--dark-glass-border) !important;
    color: var(--bs-white);
}

.google-review-card:hover {
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 8px 16px 6px rgba(60, 64, 67, 0.15);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Google Verified Icon Styling */
.google-colored {
    background: conic-gradient(from -45deg,
            #ea4335 0deg 90deg,
            #4285f4 90deg 180deg,
            #34a853 180deg 270deg,
            #fbbc05 270deg 360deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.border-success-subtle {
    border-color: #c6e7d1 !important;
}

/* Footer Certification Styles */
.cert-icon-wrapper {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-item:hover .cert-icon-wrapper {
    background: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.cert-item:hover .text-white {
    color: var(--bs-primary) !important;
}

/* Social Links Footer */
.social-link-footer {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link-footer:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
    color: white !important;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.1);
}

/* Certifications Icons */
.fa-shield-check,
.fa-leaf,
.fa-award {
    transition: transform 0.3s ease;
}

.fa-shield-check:hover,
.fa-leaf:hover,
.fa-award:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--bs-primary);
}

/* Atmospheric Bokeh Effect */
.bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: var(--bs-dark);
}

.bokeh-item {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(147, 51, 234, 0.04) 100%);
    filter: blur(50px);
    animation: float-bokeh 25s infinite ease-in-out;
}

@keyframes float-bokeh {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(15vw, 25vh) scale(1.3);
        opacity: 0.5;
    }
    66% {
        transform: translate(-10vw, 15vh) scale(0.7);
        opacity: 0.3;
    }
}

/* Light Sweep for Headings */
.gradient-heading {
    position: relative;
    background: linear-gradient(90deg, 
        var(--bs-primary) 10%, 
        #fbbc05 30%, 
        var(--bs-secondary) 50%, 
        #fbbc05 70%,
        var(--bs-primary) 90%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: light-sweep 6s linear infinite;
}

@keyframes light-sweep {
    to {
        background-position: 200% center;
    }
}

/* Section Spacing Touch-up */
.section-spacing {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .full-screen-section {
        min-height: auto;
        padding: 60px 0;
    }

    body {
        font-size: 13px;
    }
}

/* === Dark Theme Additional Overrides === */
.section-light {
    background-color: #030303 !important; /* Extremely dark for alternating sections */
}

.accordion-item {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--dark-glass-border) !important;
}

.accordion-button {
    background-color: var(--card-bg) !important;
    color: var(--bs-white) !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(18, 67, 232, 0.1) !important;
    color: var(--bs-primary) !important;
}

.accordion-body {
    background-color: var(--card-bg) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Icons & Circles */
div.bg-white.rounded-circle {
    background-color: rgba(18, 67, 232, 0.1) !important;
    border: 1px solid rgba(18, 67, 232, 0.3) !important;
}

/* Text Muted for dark background */
.text-muted, .text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Background Utility Overrides for Dark Theme - Removed as it breaks intentional light background layers with tailwind templates
.bg-white {
    background-color: var(--bs-dark) !important;
} 
*/

/* Dark Form Controls */
.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--bs-white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/* Google Badges */
.badge.bg-light {
    background-color: rgba(18, 67, 232, 0.1) !important;
    color: var(--bs-white) !important;
    border-color: rgba(18, 67, 232, 0.3) !important;
}

/* Overriding cards with fixed white background in form wrapper or else */
.bg-white.p-5 {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--dark-glass-border) !important;
    color: var(--bs-white) !important;
}

/* Remove gradient border styles or adapt */
.border-success-subtle {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Preloaded adjust for dark loader background if needed, it is linear gradient so let's check */
#preloader {
    background: #000000 !important;
}

/* Partner Brands Marquee background */
section.py-5.border-bottom.bg-white {
    background-color: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}