/* --- 1. Global & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #111111;        /* Deep Black */
    --secondary: #666666;      /* Slate Gray */
    --highlight: #2fc1ff;      /* Your Brand Blue */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; /* Makes text look thinner & sharper (Mac style) */
    color: var(--primary);
    background-color: #ffffff;
}

/* --- 2. Premium Navbar (Transparent -> Slide In) --- */
.navbar {
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth Apple-like ease */
    background: #ffffff; /* Start Transparent */
}

/* The state when user scrolls down */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0; /* Shrink slightly */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(0);
}

/* Logo Styling */
.logo-box {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--highlight), #0099cc);
    border-radius: 10px; /* Modern Squircle */
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px;
    box-shadow: 0 4px 12px rgba(47, 193, 255, 0.4);
}

.brand-text {
    font-weight: 700; letter-spacing: -0.5px; font-size: 1.1rem; color: var(--primary);
}

/* Nav Links */
.nav-link {
    color: #555 !important;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover { color: var(--highlight) !important; }

/* Premium Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 10px;
    margin-top: 15px !important; /* Offset from nav */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.2s;
}
.dropdown-item:hover {
    background: rgba(47, 193, 255, 0.08);
    color: var(--highlight);
    transform: translateX(5px); /* Slide right hint */
}

/* --- 3. Hero Section (SaaS Style) --- */
.hero-section {
    position: relative;
    /* Extra top padding because nav sits ON TOP now */
    padding-top: 160px; 
    padding-bottom: 100px;
    background: #fff;
    overflow: hidden;
}

/* Mesh Gradient Background */
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* A very subtle blue glow at the top center */
    background: radial-gradient(80% 50% at 50% -20%, rgba(47, 193, 255, 0.15) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}
.grid-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(#f5f5f5 1px, transparent 1px), linear-gradient(90deg, #f5f5f5 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    z-index: -1;
}

/* Typography Overrides */
h1.hero-title {
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--primary);
    line-height: 1.1;
}

.highlight-gradient {
    background: linear-gradient(90deg, #2fc1ff 0%, #0070f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons (Glow Effect) */
.btn-premium-dark {
    background: var(--primary);
    color: white;
    border-radius: 50px; /* Pill Shape */
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
}
.btn-premium-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(47, 193, 255, 0.4); /* Blue glow */
    color: white;
}

.btn-premium-outline {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
.btn-premium-outline:hover {
    border-color: var(--primary);
    background: #fafafa;
}

/* Glass Cards (Stats & Icons) */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* --- 4. Entrance Animations --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}
/* --- Trusted Partners Marquee --- */
.partners-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden; /* Hides the scrollbar */
}

.partners-title {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* The Scrolling Track */
.marquee-track {
    display: flex;
    width: max-content; /* Ensure it fits all logos */
    gap: 60px; /* Space between logos */
    /* ANIMATION: Change 'scrollLeft' to 'scrollRight' for opposite direction */
    animation: scrollLeft 30s linear infinite;
}

/* Pause animation on hover (Optional, usually good for UX) */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Logo Styling */
.partner-logo {
    height: 40px; /* Fixed height for consistency */
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* --- Keyframes for Infinite Scroll --- */

/* Option 1: Move Left (Standard) */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
    /* We move -50% because we duplicated the logos. 
       Once the first set is off-screen, it snaps back to 0. */
}

/* Option 2: Move Right (If you strictly want Left-to-Right) */
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Gradient Fade on Edges (Premium Touch) */
.marquee-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
    pointer-events: none; /* Let clicks pass through */
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background-color: #fafafa; /* Slight contrast from white sections */
}

/* Checklist Styling */
.about-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}
.about-checklist i {
    font-size: 20px;
    color: var(--highlight) !important; /* Use your blue color */
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px; /* Space for the decorative border/shadow */
}

.main-img {
    width: 100%;
    /* Optional: A subtle border */
    border: 1px solid rgba(0,0,0,0.1); 
    transition: transform 0.3s ease;
}

/* Floating Card (The "Success" Badge) */
.floater-card {
    position: absolute;
    bottom: 50px;
    left: -20px; /* Floats slightly off the image */
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    animation: float 6s ease-in-out infinite;
}

.icon-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .floater-card {
        left: 20px; /* Move inside on mobile so it doesn't get cut off */
        bottom: 20px;
    }
}
/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Card Container */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover State: Lift & Blue Border */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 193, 255, 0.5); /* Your Brand Blue */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.icon-box {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: #f8f9fa; /* Light Gray Default */
    color: #444;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Icon Hover State */
.service-card:hover .icon-box {
    background: var(--highlight); /* Turns Blue */
    color: white;
    transform: scale(1.1) rotate(-5deg); /* Subtle pop animation */
}

/* Link Styling */
.service-link {
    text-decoration: none;
    color: var(--highlight);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex; align-items: center;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 8px; /* Arrow moves right */
    color: #0077aa; /* Darker blue */
}

/* Optional: Add a subtle gradient overlay on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(47, 193, 255, 0.03) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.service-card:hover::after {
    opacity: 1;
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    background: #f9f9f9; /* Light contrast background */
    position: relative;
    overflow: hidden;
}

.process-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

/* Hover Effect */
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(47, 193, 255, 0.3);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: #f0f0f0; /* Very light gray */
    line-height: 1;
    transition: color 0.3s;
}

.process-card:hover .step-number {
    color: rgba(47, 193, 255, 0.1); /* Turns faint blue on hover */
}

/* Icon Styling */
.icon-wrapper {
    width: 50px; height: 50px;
    background: rgba(47, 193, 255, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--highlight);
    font-size: 20px;
}

/* A subtle decorative line behind the cards (Optional) */
.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #eaeaea, transparent);
    z-index: 0;
}
/* --- Industries Section --- */
.industries-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Card Container */
.industry-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Hover Zoom Effect */
.industry-card:hover .industry-img {
    transform: scale(1.1);
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* Background Image */
.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Gradient Overlay (To make text readable) */
.industry-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

/* Text Content */
.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2; /* Sits above overlay */
}

/* Icon */
.industry-content .icon-circle {
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 18px;
}

/* --- Navigation Buttons --- */
.industry-nav .swiper-btn-prev,
.industry-nav .swiper-btn-next {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #111;
    background: white;
}

.industry-nav .swiper-btn-prev:hover,
.industry-nav .swiper-btn-next:hover {
    background: var(--highlight); /* Your Blue */
    color: white;
    border-color: var(--highlight);
}
/* --- Projects Section --- */
.projects-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Card Container */
.project-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(47, 193, 255, 0.3);
}

/* Image Area */
.project-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05); /* Subtle zoom */
}

/* Category Badge (Top Right of Image) */
.category-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Content Area */
.project-body {
    padding: 30px;
}

.icon-link {
    color: #ccc;
    transition: color 0.2s;
}
.project-card:hover .icon-link {
    color: var(--highlight);
}

/* Results Grid (The Stats) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    margin-bottom: 4px;
}

.result-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}
/* --- Active Link Highlighting --- */
.navbar-nav .nav-link.active {
    color: var(--highlight) !important; /* Your Brand Blue */
    font-weight: 700;
    position: relative;
}

/* Optional: Add a small dot below the active link */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Adjust based on navbar height */
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--highlight);
    border-radius: 50%;
    opacity: 1;
}
/* Tech Tags */
.tech-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 4px 12px;
    border-radius: 6px;
    margin-right: 6px;
    margin-bottom: 6px;
}
/* --- Testimonials Section --- */
.testimonials-section {
    padding: 20px 0;
    background: #fafafa; /* Distinct from white sections */
}

/* Card Styling */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}
.profile-card-2 {
        background: #fff;
        border-radius: 12px;
        padding: 30px 20px;
        position: relative;
        transition: transform 0.3s ease;
    }
    .profile-card-2:hover {
        transform: scale(1.02);
    }
    .img-ring {
        padding: 4px;
        background: linear-gradient(45deg, #007bff, #6610f2); /* Gradient Colors */
        border-radius: 50%;
        display: inline-block;
        margin-bottom: 15px;
    }
    .img-ring img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        display: block;
    }
    .role-badge {
        background-color: #eef2ff;
        color: #4f46e5;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 15px;
    }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(47, 193, 255, 0.2);
}

/* Quote Icon */
.quote-icon {
    font-size: 24px;
    color: var(--highlight);
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

/* Client Profile */
.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.client-img {
    width: 45px; height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pagination Dots Customization */
.swiper-pagination-bullet-active {
    background-color: var(--highlight) !important;
}
/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Custom Accordion Styling */
.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eaeaea; /* Only bottom border for clean look */
    background: transparent;
    margin-bottom: 10px;
}

.custom-accordion .accordion-item:last-child {
    border-bottom: none;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    padding: 24px 0; /* More vertical space */
    box-shadow: none !important; /* Remove blue glow focus */
}

/* Hover effect on question */
.custom-accordion .accordion-button:hover {
    color: var(--highlight);
}

/* Content Body */
.custom-accordion .accordion-body {
    padding: 0 0 24px 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Custom Icon (Transforming the arrow) */
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232fc1ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 20px; height: 20px;
    background-size: contain;
}

/* Rotate icon when open */
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

/* Active State Text Color */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--highlight);
    background: transparent; /* Prevent default light blue background */
}
/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: #ffffff;
}

/* The Card Container */
.cta-card {
    background: #111111; /* Deep Black */
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Background Glow (The "Amazing" part) */
.cta-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 193, 255, 0.2) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* Subtle Grid Pattern Overlay */
.cta-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(#333 1px, transparent 1px), linear-gradient(90deg, #333 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
}

/* Text Highlight */
.text-highlight {
    color: var(--highlight);
    text-shadow: 0 0 20px rgba(47, 193, 255, 0.4);
}

/* --- Buttons Specific to Dark Card --- */

/* Primary Glow Button */
.btn-glow-primary {
    background: var(--highlight);
    color: #003355;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(47, 193, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glow-primary:hover {
    background: #fff;
    color: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(47, 193, 255, 0.6);
}

/* Secondary Glass Button */
.btn-glass-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-card {
        padding: 40px 25px;
        text-align: center;
    }
    
    .cta-bg-glow {
        width: 100%;
        right: 0;
    }
}
/* --- Footer Section --- */
.footer-section {
    background-color: #0b0c10; /* Premium Slate Black */
    color: #ffffff;
    padding-top: 80px;
    font-size: 14px;
}

/* Brand Styling */
.footer-logo-box {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--highlight), #0099cc);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
}

.footer-brand {
    font-weight: 700;
    font-size: 18px;
    color: white;
    letter-spacing: -0.5px;
}

/* Newsletter Input */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Pill shape */
    color: white;
    font-size: 14px;
    padding: 12px 20px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--highlight);
    box-shadow: 0 0 10px rgba(47, 193, 255, 0.2);
}

.btn-arrow {
    position: absolute;
    top: 5px; right: 5px;
    width: 38px; height: 38px;
    background: var(--highlight);
    border: none;
    border-radius: 50%;
    color: #003355;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}

.btn-arrow:hover {
    transform: translateX(3px); /* Slide effect */
    color: white;
}

/* Footer Links */
.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888; /* Muted gray default */
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--highlight);
    padding-left: 5px; /* Subtle slide right on hover */
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--highlight);
    color: #003355;
    transform: translateY(-3px);
}

/* Border Adjustment for Dark Mode */
.border-dark-subtle {
    border-color: rgba(255, 255, 255, 0.1) !important;
}
/* --- Modal Styling --- */
/* Glass Backdrop */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(8px); /* Blurs the website behind the popup */
    background-color: rgba(11, 12, 16, 0.9);
}

/* Modal Content */
.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Left Side Glow Effect */
.modal-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(47, 193, 255, 0.2) 0%, rgba(0,0,0,0) 60%);
    animation: rotateGlow 10s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Custom Form Inputs */
.form-control {
    padding: 12px 15px;
    font-size: 14px;
}
.form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--highlight); /* Blue border on focus */
}

/* Radio Button Toggle Styling */
.btn-check:checked + .btn-outline-light {
    background-color: var(--primary); /* Black when selected */
    color: white !important;
    border-color: var(--primary);
}
.btn-check:not(:checked) + .btn-outline-light:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
}
/* --- About Page Specifics --- */
.about-header {
    padding-top: 140px; /* Account for fixed nav */
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 0%, rgba(47, 193, 255, 0.05) 0%, transparent 60%);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}

.social-tiny a {
    margin: 0 5px;
    font-size: 14px;
    transition: color 0.2s;
}
.social-tiny a:hover i {
    color: var(--highlight) !important;
}
/* --- Contact Page Specifics --- */
.contact-header {
    padding-top: 150px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 100%, rgba(47, 193, 255, 0.05) 0%, transparent 50%);
}

/* The Map Card */
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* The Active Toggle Button (White background with shadow) */
.active-toggle {
    background-color: white !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #111 !important;
}

/* Form Input Focus */
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 2px var(--highlight);
    background: white !important;
}

/* Submit Button Hover */
.hover-scale {
    transition: transform 0.2s;
}
.hover-scale:hover {
    transform: translateY(-2px);
}
/* --- Clients Page Specifics --- */
.clients-header {
    padding-top: 150px;
    padding-bottom: 80px;
    background: #ffffff;
}

/* Vertical Dividers for Stats */
@media (min-width: 768px) {
    .divide-cols > div:not(:last-child) {
        border-right: 1px solid #eaeaea;
    }
}

/* Client Logo Card */
.client-logo-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--highlight);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
/* --- Services Page Specifics --- */
.services-header {
    padding-top: 150px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 100%, rgba(47, 193, 255, 0.05) 0%, transparent 60%);
}

.icon-box {
    width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}

/* Custom Table Styling */
.custom-table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.custom-table td {
    padding: 20px 10px;
    color: #555;
}
