/* ===== MANAN CONSULTING - AHEAD.COM INSPIRED DESIGN ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-50: #f0fcff;
    --primary-100: #e0f9ff;
    --primary-200: #c7f5fe;
    --primary-300: #9aecfd;
    --primary-400: #5cdffb;
    --primary-500: #0dcdf0;
    --primary-600: #0cb8db;
    --primary-700: #0ba3c6;
    --primary-800: #098eb1;
    --primary-900: #07799c;
    
    --secondary-50: #f0f1ff;
    --secondary-100: #e5e7ff;
    --secondary-200: #d0d4ff;
    --secondary-300: #a9b3ff;
    --secondary-400: #8391ff;
    --secondary-500: #667eea;
    --secondary-600: #5a6fd8;
    --secondary-700: #4e5fc6;
    --secondary-800: #424fb4;
    --secondary-900: #363fa2;
    
    --accent-500: #72d345;
    --accent-600: #5fbf37;
    
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    
    --pink-50: #fdf4ff;
    --pink-100: #fae8ff;
    --pink-200: #f5d0fe;
    --pink-300: #f0abfc;
    --pink-400: #e879f9;
    --pink-500: #d946ef;
    --pink-600: #c026d3;
    --pink-700: #a21caf;
    --pink-800: #86198f;
    --pink-900: #701a75;
    
    --success-500: #10b981;
    --success-600: #059669;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Enterprise Application Colors - Professional Light Shades */
    --enterprise-50: #f8fafc;
    --enterprise-100: #f1f5f9;
    --enterprise-200: #e2e8f0;
    --enterprise-300: #cbd5e1;
    --enterprise-400: #94a3b8;
    --enterprise-500: #64748b;
    --enterprise-600: #475569;
    --enterprise-700: #334155;
    --enterprise-800: #1e293b;
    --enterprise-900: #0f172a;
    
    /* Data & Analytics Colors - Fresh Light Shades */
    --data-50: #f0fdfa;
    --data-100: #ccfbf1;
    --data-200: #99f6e4;
    --data-300: #5eead4;
    --data-400: #2dd4bf;
    --data-500: #14b8a6;
    --data-600: #0d9488;
    --data-700: #0f766e;
    --data-800: #115e59;
    --data-900: #134e4a;
    
    /* Application Colors - Modern Light Shades */
    --app-50: #fefce8;
    --app-100: #fef9c3;
    --app-200: #fef08a;
    --app-300: #fde047;
    --app-400: #facc15;
    --app-500: #eab308;
    --app-600: #ca8a04;
    --app-700: #a16207;
    --app-800: #854d0e;
    --app-900: #713f12;
    
    /* Typography */
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

h1 { font-size: 56px; font-weight: var(--font-weight-black); }
h2 { font-size: 48px; font-weight: var(--font-weight-extrabold); }
h3 { font-size: 32px; font-weight: var(--font-weight-bold); }
h4 { font-size: 24px; font-weight: var(--font-weight-semibold); }
h5 { font-size: 20px; font-weight: var(--font-weight-semibold); }
h6 { font-size: 16px; font-weight: var(--font-weight-medium); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-700);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
    z-index: 1000;
}

.navbar-brand {
    font-weight: var(--font-weight-bold);
    font-size: 28px;
    color: var(--gray-900) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand:hover {
    text-decoration: none;
    color: var(--primary-600) !important;
}

.navbar-brand .logo {
    height: 40px;
    margin-right: var(--space-3);
}

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: var(--font-weight-medium);
    padding: var(--space-3) var(--space-4) !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-600) !important;
    background: var(--primary-50);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    transition: width var(--transition-base);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-600) !important;
    background: var(--primary-50);
}

.navbar-nav .btn-primary {
    background: var(--primary-600);
    border: none;
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.navbar-nav .btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mega Menu */

.mega-menu .dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.mega-menu .dropdown-item {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mega-menu .dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* ===== BUTTONS ===== */
.btn {
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
}

.btn-primary:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-600);
    border-color: var(--primary-600);
}

.btn-outline-primary:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 18px;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000; /* Fallback background to prevent white screen */
}

.carousel-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-video,
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-carousel .hero-content {
    position: absolute;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding-left: 200px;
    width: 70% !important;
}

.hero-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--space-4);
    animation: fadeInUp 1s ease-out both;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: left;
}

.hero-description {
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    opacity: 0.8;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: var(--space-8);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    color: white;
    transform: translateY(0);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.hero-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 4;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 100px;
    /* left: 50%; */
    display: flex;
    gap: 15px;
    z-index: 4;
}

.carousel-indicators.carousel-indicators-right {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 4 !important;
    left: auto !important;
    margin-right: 0% !important;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
}



/* ===== HERO SECTION ===== */

.carousel-controls {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    opacity: 1;
    transform: scale(1.3);
    border-color: white;
}



/* Responsive carousel controls */
@media (max-width: 768px) {
    .carousel-controls {
        right: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        gap: 10px;
    }

}

@media (max-width: 480px) {
    .carousel-controls {
        right: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        gap: 8px;
    }
}

 /* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-content-home {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 90%;
    animation: heroContentSlide 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    top:30%;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding-left: 50px;
    max-width: 90%;
    animation: heroContentSlide 1s ease-out;
}

.hero-content-clean {
    position: relative;
    z-index: 10;
    color: white;
    padding: var(--space-8) 0;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-clean {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-clean {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions-clean {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
    animation: heroLineGlow 2s ease-in-out infinite alternate;
}

@keyframes heroLineGlow {
    0% { box-shadow: 0 0 10px rgba(0, 82, 204, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 82, 204, 0.8); }
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content .container {
    padding-left: 0;
    margin-top: -15vh;
}

.hero-title {
    font-size: 64px;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleGlow 3s ease-in-out infinite alternate, fadeInUp 1s ease-out both;
}

@keyframes heroTitleGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2); }
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-8);
    position: relative;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    transform: translateY(0);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.hero-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 50%, var(--primary-900) 100%);
}

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

.hero-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 50%, var(--primary-900) 100%);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, 
        var(--primary-50) 0%, 
        var(--secondary-50) 50%, 
        var(--purple-50) 100%);
}

.section-title {
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-600);
    margin-bottom: var(--space-6);
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

.bg-light {
    background-color: var(--gray-50);
}

/* ===== MISSION SECTION ===== */
.mission-section {
    background: white;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.mission-metric {
    text-align: center;
    padding: var(--space-8);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.mission-metric:hover {
    transform: translateY(-4px);
}

.metric-number {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    color: var(--primary-600);
    margin-bottom: var(--space-2);
}

.metric-label {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--primary-600);
}

.service-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.service-link {
    color: var(--primary-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-700);
    gap: var(--space-3);
}

/* ===== INDUSTRIES GRID ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.industry-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--secondary-600);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.industry-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.industry-link {
    color: var(--secondary-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-fast);
}

.industry-link:hover {
    color: var(--secondary-700);
    gap: var(--space-3);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-12);
}

.partner-category h3 {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-700);
    margin-bottom: var(--space-6);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.partner-logo {
    padding: var(--space-4) var(--space-8);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.partner-logo:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary-600);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, 
        var(--primary-100) 0%, 
        var(--secondary-100) 50%, 
        var(--purple-100) 100%);
    color: var(--gray-900);
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section Button Overrides */
.cta-section .btn-primary {
    background: var(--primary-600);
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 205, 240, 0.3);
}

.cta-section .btn-outline-light {
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
    background: transparent;
}

.cta-section .btn-outline-light:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 205, 240, 0.3);
}

/* ===== SERVICE HERO SECTIONS ===== */
.service-hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Service-specific hero backgrounds - Distinct Brand Color Schemes */
.service-hero.cloud {
    background: linear-gradient(135deg, #0dcdf0 0%, #0a9bc7 50%, #72d345 100%);
    position: relative;
}

.service-hero.cloud::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(13, 205, 240, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(114, 211, 69, 0.3) 0%, transparent 50%);
}

.service-hero.analytics {
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 50%, #764ba2 100%);
    position: relative;
}

.service-hero.analytics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.4) 0%, transparent 60%);
}

.service-hero.security {
    background: linear-gradient(135deg, #f093fb 0%, #e879f9 50%, #c471f5 100%);
    position: relative;
}

.service-hero.security::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(240, 147, 251, 0.5) 0%, transparent 70%),
                radial-gradient(circle at 75% 25%, rgba(196, 113, 245, 0.5) 0%, transparent 70%);
}

.service-hero.automation {
    background: linear-gradient(135deg, #764ba2 0%, #6b46c1 50%, #667eea 100%);
    position: relative;
}

.service-hero.automation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(118, 75, 162, 0.4) 0%, transparent 65%),
                radial-gradient(circle at 60% 40%, rgba(102, 126, 234, 0.4) 0%, transparent 65%);
}

.service-hero.platform {
    background: linear-gradient(135deg, #c471f5 0%, #b865f2 50%, #f093fb 100%);
    position: relative;
}

.service-hero.platform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 35% 65%, rgba(196, 113, 245, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 65% 35%, rgba(240, 147, 251, 0.4) 0%, transparent 60%);
}

.service-hero.iot {
    background: linear-gradient(135deg, #72d345 0%, #5fb834 50%, #0dcdf0 100%);
    position: relative;
}

.service-hero.iot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(114, 211, 69, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(13, 205, 240, 0.3) 0%, transparent 50%);
}

/* ===== ENTERPRISE APPLICATION STYLES ===== */
.enterprise-section {
    background: linear-gradient(135deg, 
        var(--enterprise-50) 0%, 
        var(--enterprise-100) 50%, 
        var(--data-50) 100%);
    color: var(--enterprise-900);
}

.enterprise-card {
    background: white;
    border: 1px solid var(--enterprise-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--enterprise-300);
}

.enterprise-icon {
    width: 80px;
    height: 80px;
    background: var(--enterprise-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--enterprise-600);
}

.enterprise-title {
    color: var(--enterprise-800);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.enterprise-description {
    color: var(--enterprise-600);
    margin-bottom: var(--space-6);
}

.enterprise-link {
    color: var(--enterprise-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.enterprise-link:hover {
    color: var(--enterprise-700);
    gap: var(--space-3);
}

/* ===== DATA & ANALYTICS STYLES ===== */
.data-section {
    background: linear-gradient(135deg, 
        var(--data-50) 0%, 
        var(--data-100) 50%, 
        var(--enterprise-50) 100%);
    color: var(--data-900);
}

.data-card {
    background: white;
    border: 1px solid var(--data-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.data-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--data-300);
}

.data-icon {
    width: 80px;
    height: 80px;
    background: var(--data-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--data-600);
}

.data-title {
    color: var(--data-800);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.data-description {
    color: var(--data-600);
    margin-bottom: var(--space-6);
}

.data-link {
    color: var(--data-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.data-link:hover {
    color: var(--data-700);
    gap: var(--space-3);
}

/* ===== APPLICATION DEVELOPMENT STYLES ===== */
.app-section {
    background: linear-gradient(135deg, 
        var(--app-50) 0%, 
        var(--app-100) 50%, 
        var(--enterprise-100) 100%);
    color: var(--app-900);
}

.app-card {
    background: white;
    border: 1px solid var(--app-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--app-300);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--app-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--app-600);
}

.app-title {
    color: var(--app-800);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.app-description {
    color: var(--app-600);
    margin-bottom: var(--space-6);
}

.app-link {
    color: var(--app-600);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.app-link:hover {
    color: var(--app-700);
    gap: var(--space-3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer h5 {
    color: white;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.footer h6 {
    color: white;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.social-link {
    color: var(--gray-400);
    text-decoration: none;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .hero-carousel .hero-content {
        padding-left: 35px;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .navbar {
        padding: var(--space-3) 0;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-brand .logo {
        height: 32px;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-carousel .hero-content {
        padding-left: 25px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: var(--space-6);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .carousel-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .industries-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .service-card,
    .industry-card {
        padding: var(--space-6);
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mission-visual {
        gap: var(--space-4);
    }
    
    .mission-metric {
        padding: var(--space-6);
    }
    
    .metric-number {
        font-size: 40px;
    }
    
    .service-card,
    .industry-card {
        padding: var(--space-5);
    }
    
    .footer {
        padding: var(--space-12) 0 var(--space-6);
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.ms-auto {
    margin-left: auto;
}

.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--space-4) * -1);
}

.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }

.col-md-6 { flex: 0 0 50%; max-width: 50%; }

.col-12 { flex: 0 0 100%; max-width: 100%; }

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        margin-top: var(--space-4);
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--gray-200);
    }
    
    .mega-menu {
        position: static;
    }
    
    .mega-menu .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: var(--space-3);
    }
    
    .navbar-nav .btn-primary {
        width: 100%;
        margin-top: var(--space-4);
    }
}
