/* --- 1. Global & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-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) --- */
/* --- KILL EXTRA NAVBAR SPACE --- */
nav.navbar {
    padding-top: 15px !important; 
    padding-bottom: 15px !important;
    margin-top: 0 !important;
    min-height: 0 !important;
}

/* Ensure the container isn't adding invisible margins */
nav.navbar > .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-items: center !important;
}

/* Ensure the nav list isn't getting pushed down */
.navbar-nav {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* 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);
}
/* --- Mobile Spacing Fixes --- */
/* --- Desktop Spacing Fixes --- */
@media (min-width: 992px) {
    /* 1. Eliminate the massive gap above the header */
    .projects-section,
    .hero-section {
        padding-top: 50px !important; /* Pulls the section up */
    }
    
    /* 2. Bring the text closer to the blog cards */
    .why-header {
        margin-bottom: 40px !important; 
    }
    
    /* 3. Make the desktop navbar slightly slimmer */
    .navbar {
        padding: 10px 0 !important;
    }
}
/* 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;
}
/* ===== COMPARISON TABLE (FIXED DESIGN) ===== */

.comparison-container {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* Heading */
.header-section {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.header-section .badge {
    display: inline-block;
    background: rgba(47, 193, 255, 0.1);
    color: var(--highlight);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.header-section .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.header-section .subtitle {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Card */
.table-card {
    max-width: 1400px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

/* Header */
.comparison-table thead th {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Legacy column */
.comparison-table thead th:nth-child(2) {
    background: #f1f5f9;
    color: #64748b;
}

/* GIP column */
.comparison-table thead th:nth-child(3) {
    background: linear-gradient(135deg, #2fc1ff, #0070f3);
    color: #fff;
}

/* Rows */
.comparison-table td {
    padding: 18px 20px;
    border-top: 1px solid #eee;
}

/* First column (titles) */
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* Highlight column */
.comparison-table td:nth-child(3) {
    background: rgba(47, 193, 255, 0.08);
    color: #0070f3;
    font-weight: 600;
}

/* Hover */
.comparison-table tbody tr:hover {
    background: #f9fafb;
}

/* Responsive */
.table-responsive {
    overflow-x: auto;
}
.insight-section {
  padding: 100px 0;
  background: var(--bg-gradient);
  overflow: hidden;
}

/* Header */
.insight-header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.insight-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.insight-header h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.insight-header p {
  font-size: 18px;
  color: var(--secondary);
  margin-top: 16px;
  line-height: 1.6;
}

/* Grid */
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content */
.insight-content .lead-text {
  font-size: 18px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.insight-content .highlight-text {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--highlight);
}

.insight-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.insight-points li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding-left: 32px;
  display: flex;
  align-items: center;
}

.insight-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--highlight-light);
  color: var(--highlight);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* Button */
.btn-premium-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-premium-dark:hover {
  background: var(--highlight);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.25);
}

.btn-premium-dark svg {
  transition: transform 0.3s ease;
}

.btn-premium-dark:hover svg {
  transform: translateX(5px);
}

/* Stats */
.insight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--highlight-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 500;
}

/* Animated Highlight Card */
.stat-card.highlight {
  background: linear-gradient(-45deg, #2563eb, #38bdf8, #4f46e5, #0ea5e9);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  color: white;
  border: none;
}

.stat-card.highlight h3, 
.stat-card.highlight p {
  color: white;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Services */
.insight-services {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-badge {
  background: var(--highlight-light);
  color: var(--highlight);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.insight-services h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.service-box {
  border: 1px solid #e2e8f0;
  padding: 35px 30px;
  border-radius: 20px;
  background: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-color: #cbd5e1;
}

.service-box:hover .service-indicator {
  background: linear-gradient(90deg, var(--highlight), var(--accent));
}

.service-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-box p {
  color: var(--secondary);
  line-height: 1.6;
  font-size: 15px;
}

/* Compliance Box - Dark Glassmorphism */
.compliance-box {
  margin-top: 80px;
  padding: 50px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #fff;
  position: relative;
}

.compliance-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background-color: #10b981; /* Emerald green */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.compliance-box h3 {
  font-size: 24px;
  font-weight: 700;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.compliance-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: #f8fafc;
}
.stat-icon svg {
  width: 24px;
  height: 24px;
}
.compliance-item p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== SIMPLE ENTRANCE ANIMATIONS ===== */
.fade-in { animation: fadeIn 1s ease-out; }
.fade-in-up { animation: fadeInUp 1s ease-out forwards; opacity: 0; transform: translateY(20px); }
.slide-in-left { animation: slideInLeft 1s ease-out; }
.slide-in-right { animation: slideInRight 1s ease-out; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .insight-header h2 { font-size: 34px; }
  .service-grid, .compliance-grid { grid-template-columns: 1fr; }
  .compliance-box { padding: 30px; }
}
.why-gip-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

/* Header */
.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.why-header h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.why-lead {
  font-size: 18px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Quote Styling */
.highlight-quote {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--primary);
  background: var(--bg-gradient);
  padding: 30px 40px;
  border-radius: 16px;
  border-left: 5px solid var(--highlight);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  margin: 0 auto;
}

.highlight-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: var(--highlight-light);
  font-family: Georgia, serif;
  opacity: 0.5;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

.feature-icon {
  font-size: 32px;
  background: var(--highlight-light);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Premium Card (Item 5 - Replacement Guarantee) */
.premium-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.premium-card h4 {
  color: #fff;
}

.premium-card p {
  color: #94a3b8;
}

.premium-card .feature-icon {
  background: rgba(255, 255, 255, 0.1);
}

/* Make the 5th card span full width on desktop to balance the layout */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 40px 50px;
  }
  .premium-card .feature-icon {
    margin-bottom: 0;
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}

/* Responsive constraints */
@media (max-width: 768px) {
  .why-header h2 { font-size: 32px; }
  .highlight-quote { padding: 25px 20px; font-size: 18px; }
  .features-grid { grid-template-columns: 1fr; }
}