@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    /* Elegant Bright Purple Theme */
    --bg-main: #2e0249;
    /* Deep Purple */
    --bg-secondary: #570a57;
    /* Rich Violet */
    --bg-card: rgba(255, 255, 255, 0.1);
    /* Crystal Glass */

    /* Neon Accents */
    --primary-blue: #a91079;
    /* Magenta/Pink Highlight */
    --primary-light: #ff74b1;
    --accent-orange: #ffa500;
    /* Gold/Orange Pop */
    --accent-blue: #f806cc;
    /* Neon Pink */
    --accent-green: #00e5ff;
    /* Cyan highlight */

    /* Text Colors */
    --text-main: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a91079 0%, #2e0249 100%);
    --gradient-text: linear-gradient(to right, #ff74b1, #a91079);
    --gradient-dark: linear-gradient(to bottom, #2e0249, #570a57);

    /* Shadows & Glows */
    --shadow-card: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glow-cyan: 0 0 20px rgba(59, 130, 246, 0.5);
    /* Blue Glow */
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    /* Purple Glow */
    --shadow-hover: 0 0 25px rgba(124, 58, 237, 0.4);

    --border-light: 1px solid rgba(139, 92, 246, 0.2);
    --border-neon: 1px solid rgba(139, 92, 246, 0.6);

    /* Global Settings */
    --radius-lg: 12px;
    /* Slightly rounded for modern look */
    --radius-xl: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-main: 'Rajdhani', 'Inter', sans-serif;
}

/* Utility Backgrounds */


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* Fallback Curved Gradient */
    background: radial-gradient(circle at 50% 0%, #a91079 0%, #2e0249 60%, #000000 100%);
    background-attachment: fixed;
}

/* ============================================
   MOVING GRID BACKGROUND (M-GRID STYLE)
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
    /* Hide CSS background for Vanta.js */
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Ensure content sections are transparent to show grid, while keeping headers intact */
section:not(.hero-pattern-theme):not(.hero):not(.services-page-hero):not(.hero-contact),
.ai-recruitment-section,
.services-colorful,
.why-choose-vibrant,
.cta-vibrant {
    background: transparent !important;
}

.home-page section:not(.hero-pattern-theme),
.home-page .ai-recruitment-section,
.home-page .services-colorful,
.home-page .why-choose-vibrant,
.home-page .cta-vibrant {
    background: transparent !important;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    /* Readable White-Grey */
    font-size: 1.125rem;
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 2.5rem 0;
    /* Reduced from 5rem */
}

/* ============================================
   HEADER & NAVIGATION - PROFESSIONAL
   ============================================ */
/* ============================================
   HEADER & NAVIGATION - LIGHT THEME
   ============================================ */
/* ============================================
   HEADER & NAVIGATION - DYNAMIC HOVER
   ============================================ */
/* Services Page Hero Navigation */
.services-hero-nav {
    position: absolute;
    right: 0;
    /* Aligned with screen edge */
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6);
    /* Slightly darker for better contrast */
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem 2.5rem 3rem;
    /* More padding on left */
    border-radius: 16px 0 0 16px;
    /* Rounded only on left */
    border-left: 1px solid rgba(139, 92, 246, 0.5);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: -5px 0 30px rgba(59, 130, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.1);
    z-index: 10;
    text-align: left;
    min-width: 260px;
    opacity: 0;
    animation: slideInFromSide 0.8s ease-out 0.5s forwards;
    display: none;
}

@keyframes slideInFromSide {
    from {
        opacity: 0;
        transform: translate(100%, -50%);
        /* Start off-screen right */
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    padding: 0.75rem 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space logo and nav */
    width: 100%;
}

/* LOGO: Default Centered (When nav closed) */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
    filter: none;
    /* Restored original logo colors */
}

/* NAV: Default Hidden */
nav {
    display: flex;
    opacity: 1;
    /* Always visible */
    visibility: visible;
}

/* Removed Dynamic Active States as header is now persistent */

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    color: #FFFFFF !important;
    /* Navigation Buttons to White */
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

nav ul li a:hover,
nav ul li a.active {
    color: #FFFFFF !important;
    /* Keep buttons white even on hover/active */
    opacity: 0.8;
}

nav ul li a::after {
    background: #e2c08d;
    height: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle,
.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--grey-700);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover,
.mobile-toggle:hover {
    background: var(--grey-100);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ============================================
   HERO SECTION - LUXURY DARK BLUE THEME
   Diamond Pattern Overlay
   ============================================ */
/* ============================================
   HERO SECTION - CREAM & WHITE THEME
   ============================================ */
/* ============================================
   HERO SECTION - SPLIT LAYOUT (Reference Style)
   ============================================ */
/* Hero with Background Image & Gradient Overlay */
.hero-pattern-theme,
.hero-about,
.services-page-hero,
.hero-contact {
    /* Hero with Background Image - Enhanced Visibility */
    background-image:
        linear-gradient(to right, rgba(46, 2, 73, 0.75), rgba(46, 2, 73, 0.75)),
        url('Screenshot 2026-02-14 115715.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    /* Soft border to separate */
    border-bottom: 1px solid rgba(217, 70, 239, 0.2);
}

/* Remove Tech Grid Overlay if it exists */
.hero-pattern-theme::before {
    display: none;
}

/* Remove animated blobs */
.hero-pattern-theme::before,
.hero-pattern-theme::after {
    display: none;
}

@keyframes pulseFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

.hero-content-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-content {
    text-align: center;
    padding: 0;
    z-index: 2;
}

.hero-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    /* Fill height */
}

.hero-image-content img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    /* Allow it to be taller and more impressive */
    object-fit: contain;
    /* Ensure the whole person is visible */
    z-index: 1;
}

.hero-title-future {
    font-family: var(--font-main);
    /* Gradient from White -> Light Blue (from image) -> Deep Blue (from image) */
    background: linear-gradient(to right, #ffffff, #5aa7ff, #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* Updated shadow to match blue theme */
    text-shadow: 0 0 40px rgba(90, 167, 255, 0.5);
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-description-future {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInText 1s ease 0.5s forwards;
    opacity: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-left: 3px solid var(--accent-orange);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}



.logo {
    display: inline-block;
    background: #e2e8f0;
    /* Light Grey */
    padding: 3px 8px;
    /* Smaller box */
    border-radius: 8px;
    /* Curved corners */
    line-height: 0;
}

.logo img {
    height: 28px;
    /* Smaller logo */
    display: block;
}

/* Gold RECTANGULAR Button */
.btn-gold-rect {
    display: inline-block;
    background: #d4af7a;
    /* Gold background */
    color: #1a2236;
    /* Dark text */
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    /* Slight crisp radius, mostly rectangular */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gold-rect:hover {
    background: #e6cba0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #000;
}

header.nav-active {
    background: rgba(240, 247, 255, 0.95);
    /* Semi-transparent Light Blue */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* More space for the image */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-left {
    animation: slideInLeft 0.5s ease;
    /* Faster animation */
}

.gradient-text-animated {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

.hero-description strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.feature-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    /* Removed card background */
    padding: 0;
    /* Removed padding */
    border: none;
    /* Removed border */
    font-weight: 500;
    color: #e2e8f0;
    font-size: 1rem;
}

.feature-item:hover {
    transform: translateX(5px);
    background: transparent;
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    font-size: 1.25rem;
    color: var(--accent-orange);
    /* Neon Magenta Icon */
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.hero-image-right {
    animation: slideInRight 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    border: 1px solid var(--primary-blue);
    /* Neon Blue Border */

    width: 100%;
    max-width: 700px;
    /* Limit max width */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    pointer-events: none;
}

/* ============================================
   BUTTONS - MODERN PILL STYLE
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2.5rem;
    border-radius: 100px;
    /* Perfect pill shape */
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary-neon {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--accent-orange);
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.3), inset 0 0 10px rgba(217, 70, 239, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.btn-primary-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-neon:hover {
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

.btn-primary-neon:hover::before {
    width: 100%;
}

.btn-secondary-vibrant {
    background: transparent;
    color: var(--primary-blue);
    /* Dark text for white BG */
    border: 2px solid var(--primary-blue);
}

.btn-secondary-vibrant:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   AI RECRUITMENT SECTION
   ============================================ */
/* ============================================
   SERVICES SECTION - CORPORATE HORIZONTAL
   ============================================ */
.services-colorful {
    background: transparent !important;
    /* Transparent to show Vanta */
    padding: 1.5rem 2rem;
    /* Further reduced from 3rem */
}

.services-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Horizontal Boxes */
    gap: 2rem;
    margin-top: 1.5rem;
    /* Reduced from 3rem */
}

@media (max-width: 1200px) {
    .services-grid-vibrant {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-vibrant {
        grid-template-columns: 1fr;
    }
}

.ai-recruitment-section {
    background: transparent !important;
    /* Transparent to show Vanta */
    padding: 1.5rem 2rem;
    /* Further reduced from 2rem */
    position: relative;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Horizontal Boxes */
    gap: 1.5rem;
    margin-top: 1.5rem;
    /* Reduced from 3rem */
}

@media (max-width: 1200px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
}

.ai-feature-card,
/* Glass Card Base */
.ai-feature-card,
.service-card,
.info-card,
.office-card,
.contact-form,
.why-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Center Content */
}

/* Hover Effects */
/* Hover Effects */
.ai-feature-card:hover,
.service-card:hover,
.info-card:hover,
.office-card:hover,
.why-card:hover {
    background: rgba(124, 58, 237, 0.1) !important;
    /* Purple Tint */
    border: 1px solid var(--accent-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(8px);
}

/* Corner Accents */
.ai-feature-card::after,
.service-card-vibrant::after,
.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-top: 3px solid var(--primary-blue);
    border-right: 3px solid var(--primary-blue);
    opacity: 0.8;
    transition: all 0.3s ease;
    border-top-right-radius: var(--radius-lg);
    /* Rounded Corner */
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.ai-feature-card:hover::after,
.service-card-vibrant:hover::after,
.why-card:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-top-color: var(--accent-orange);
    border-right-color: var(--accent-orange);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(217, 70, 239, 0.2), transparent 70%);
}



.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent !important;
    /* Show true background */
    backdrop-filter: none;
    /* Remove blur to avoid greying */
}

.ai-icon {
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    /* Center Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.1);
    width: 70px;
    height: 70px;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.ai-feature-card:hover .ai-icon {
    background: var(--accent-blue);
    color: #FFFFFF;
    transform: none;
    box-shadow: none;
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #ffffff;
    /* White Heading */
}

.ai-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION - CORPORATE
   ============================================ */
.services-colorful {
    background: transparent !important;
    padding: 2rem 2rem;
}

.service-card-vibrant {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    text-align: left;
}

.service-card-vibrant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    top: auto;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card-vibrant:hover::before {
    transform: scaleX(1);
}

.service-card-vibrant:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 0, 0, 0.4) !important;
}

.service-card-vibrant h3 {
    color: var(--text-main);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.service-card-header {
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
}

.service-icon-large {
    font-size: 2.5rem;
    /* Reduced from 3rem */
    margin-bottom: 0.75rem;
    /* Reduced from 1rem */
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.service-card-vibrant h3 {
    font-size: 1.5rem;
    /* Reduced from 1.75rem */
    margin-bottom: 0.75rem;
    /* Reduced from 1rem */
    color: #ffffff;
    /* White Heading */
}

.service-card-vibrant>p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
    line-height: 1.5;
    /* Reduced from 1.7 */
    font-size: 0.95rem;
    /* Slightly smaller */
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
}

.service-features li {
    padding: 0.35rem 0;
    /* Reduced from 0.5rem */
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    /* Slightly smaller */
    line-height: 1.4;
    /* More compact */
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-card {
    margin-top: 1.5rem;
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 700;
    transition: var(--transition-normal);
}

.btn-card:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US - MODERN CARDS
   ============================================ */
.why-choose-vibrant {
    background: transparent !important;
    /* Transparent to show Vanta */
    padding: 2rem 2rem;
    /* Further reduced from 6rem */
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Horizontal Boxes */
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Blurred */
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-purple);
    border-color: var(--accent-orange);
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    transition: all var(--transition-normal);
    color: white;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Remove individual color backgrounds */
.purple-bg,
.blue-bg,
.teal-bg,
.orange-bg,
.green-bg,
.pink-bg {
    background: transparent;
    /* Remove gradients */
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    /* White Heading */
    /* Dark color for visibility */
}

.why-card p {
    color: var(--text-secondary);
    /* Dark grey for visibility */
    line-height: 1.7;
}

/* ============================================
   CTA SECTION - PROFESSIONAL
   ============================================ */
/* ============================================
   CTA SECTION - NEON
   ============================================ */
.cta-vibrant {
    background: transparent !important;
    /* Transparent to show Vanta */
    padding: 3rem 2rem;
    /* Reduced from 6rem */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-vibrant::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

/* Corporate Hero for Inner Pages */
.hero-about,
.services-page-hero,
.hero-contact {
    background:
        linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
        url('Professional-Image-940x500.jpg') center/cover no-repeat;
    padding: 6rem 2rem 3rem;
    /* Reduced from 8rem ... 5rem */
    text-align: center;
    color: #ffffff;
    background-attachment: scroll;
}

.hero-about h1,
.services-page-hero h1,
.hero-contact h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-about .subtitle,
.services-page-hero .subtitle,
.hero-contact .subtitle {
    color: var(--accent-orange);
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-about p,
.services-page-hero p,
.hero-contact p {
    color: #FFFFFF;
    /* High visibility pure white */
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for even better visibility */
}

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

.cta-title {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.39) !important;
    border-radius: 50px;
    font-weight: 800 !important;
    padding: 1.25rem 3.5rem !important;
    font-size: 1.2rem !important;
    border: none !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
}

.btn-cta-white:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 118, 255, 0.23) !important;
    background: #2563eb !important;
}

.btn-cta-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    padding: 1.25rem 2rem;
}

.btn-cta-outline:hover {
    background: #eff6ff;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px 0 rgba(0, 118, 255, 0.1);
}

/* ============================================
   SECTION HEADER
   ============================================ */
/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    /* Reduced from 4rem */
}

.section-tag,
.section-tag.vibrant {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    /* Glassy background */
    backdrop-filter: blur(5px);
    color: #00f3ff;
    /* Bright Cyan for high contrast */
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    /* Slightly rounded */
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Increased spacing */
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.5);
    /* Brighter border */
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    /* Stronger glow */
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
    transition: 0.5s;
}

.section-tag:hover::before {
    left: 100%;
}

.gradient-text {
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentcolor;
    background-clip: border-box;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    /* Force White */
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    border-left: 2px solid var(--accent-orange);
    padding-left: 1.5rem;
    text-align: left;
    display: block;
    /* Changed from inline-block for better centering as a block */
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
/* Services Grid - updated to center items */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: var(--border-light);
    transition: all var(--transition-normal);
    text-align: center;
    flex: 1 1 300px;
    max-width: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent !important;
    /* Show true background */
    backdrop-filter: none;
    /* Remove blur to avoid greying */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    /* White Heading */
}

.service-card ul {
    list-style: none;
    /* Removed the dots */
    padding: 0;
    margin: 0;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: var(--border-light);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: #ffffff;
    color: #1a202c;
    /* Dark text for white background */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Blurred */
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Lightly visible margin/border */
    transition: all var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: transparent !important;
    /* Show true background */
    backdrop-filter: none;
    /* Remove blur to avoid greying */
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
    /* White Heading */
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.info-card a:hover {
    color: var(--accent-purple);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1100px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

.office-card {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Blurred */
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Lightly visible margin/border */
    margin-bottom: 0;
    transition: all var(--transition-normal);
}

.office-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: transparent !important;
    /* Show true background */
    backdrop-filter: none;
    /* Remove blur to avoid greying */
}

.office-card h3 {
    color: #ffffff;
    /* White Heading */
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.office-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* ============================================
   HERO VARIATIONS
   ============================================ */
/* ============================================
   HERO VARIATIONS
   ============================================ */
.hero {
    background: radial-gradient(circle at 50% 50%, #1e40af 0%, #0b0f19 80%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-text);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Hero - Luxury Dark Blue Theme */
.hero.hero-about {
    background:
        linear-gradient(rgba(215, 190, 245, 0.85), rgba(215, 190, 245, 0.85)),
        url('about kutti.webp') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 6rem;
}

/* Remove overlays for clean cream look */
.hero.hero-about::before,
.hero.hero-about::after {
    display: none;
}

.hero.hero-about .hero-content-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced 50/50 split */
    gap: 6rem;
    /* Increased gap for better separation */
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.about-text-content {
    text-align: left;
    z-index: 2;
    align-self: center;
    /* Ensure vertical centering */
    padding-left: 2rem;
    /* Add some breathing room from the left edge */
}

.about-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-image-content img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-bottom-left-radius: 30px;
    /* Curve bottom edges */
    border-bottom-right-radius: 30px;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    /* Blur/Fade effect at bottom */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

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



.hero.hero-about h1 {
    font-family: 'Playfair Display', serif !important;
    background: linear-gradient(to right, #0f172a, #1e40af, #60a5fa, #1e40af, #0f172a) !important;
    /* Shining Dark Blue */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: none !important;
}

.hero.hero-about .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #000000 !important;
    /* Black text */
    font-weight: 700 !important;
    /* Bold */
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.hero.hero-about p:not(.subtitle) {
    font-size: 1.125rem;
    color: #000000 !important;
    /* Black text */
    max-width: 100%;
    line-height: 1.7;
    font-weight: 500;
}

/* Contact Page Hero - Luxury Dark Blue Theme */
.hero.hero-contact {
    background:
        linear-gradient(rgba(215, 190, 245, 0.85), rgba(215, 190, 245, 0.85)),
        /* Lightened Overlay for Black Text */
        url('Screenshot 2026-02-14 121514.png') center/cover no-repeat;
    min-height: 50vh;
    /* Increased from 35vh */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
    /* increased padding */
    text-align: center;
}

/* Removed Diamond Pattern Overlays for Contact to show clear background */
.hero.hero-contact::before,
.hero.hero-contact::after {
    display: none;
}

.hero.hero-contact>div {
    position: relative;
    z-index: 2;
}

.hero.hero-contact h1 {
    font-family: 'Playfair Display', serif !important;
    background: linear-gradient(to right, #0f172a, #1e40af, #60a5fa, #1e40af, #0f172a) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 4.5rem !important;
    font-weight: 700 !important;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: none !important;
}

.hero.hero-contact .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    color: #000000 !important;
    /* Black Text */
    font-weight: 700 !important;
    margin-bottom: 1.5rem;
    padding: 0;
    display: inline-block;
    text-shadow: none;
    animation: fadeInUp 1s ease;
}

.hero.hero-contact p:not(.subtitle) {
    font-size: 1.25rem;
    color: #000000;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

/* Services Page Hero - Luxury Dark Blue Theme */
.services-page-hero {
    background:
        linear-gradient(rgba(215, 190, 245, 0.85), rgba(215, 190, 245, 0.85)),
        url('3096293490096929.png') center/cover no-repeat;
    min-height: 50vh;
    /* Increased from 35vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    /* Increased padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Removed Diamond Pattern Overlays for Services to show clear background */
.services-page-hero::before,
.services-page-hero::after {
    display: none;
}

.services-page-hero>div {
    position: relative;
    z-index: 2;
}

.services-page-hero h1 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #0f172a, #1e40af, #60a5fa, #1e40af, #0f172a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: none;
}

.services-page-hero .subtitle {
    font-size: 1.75rem;
    color: #000000;
    /* Black Text */
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0;
    display: inline-block;
    animation: fadeInUp 1s ease;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
}

.services-page-hero p:not(.subtitle) {
    font-size: 1.25rem;
    color: #000000;
    /* Black Text */
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

#digital .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Allow smaller columns */
}

@media (min-width: 1200px) {
    #digital .services-grid {
        grid-template-columns: repeat(5, 1fr);
        /* Force 5 columns on large screens */
        gap: 1.5rem;
    }
}

#digital .service-icon {
    font-size: 2rem;
    /* Reduced icon size */
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER - PROFESSIONAL
   ============================================ */
footer {
    background: #020202;
    color: var(--text-secondary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-logo-visible {
    filter: brightness(0) invert(1);
    /* Ensure logo is white */
}

.services-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Horizontal Boxes */
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-grid-vibrant {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-vibrant {
        grid-template-columns: 1fr;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Use grid for columns */
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
    text-align: left;
    /* Ensure left alignment */
}

.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-logo-visible,
.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: inline-block;
    filter: none;
    background: #e2e8f0;
    /* Light Grey Background */
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-logo-highlight {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-highlight .footer-logo-visible,
.footer-logo-highlight .footer-logo {
    margin-bottom: 0;
}

.footer-section h3 {
    color: #FFFFFF;
    /* White for dark background */
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section p a {
    display: inline !important;
    margin-bottom: 0 !important;
}

.footer-section a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: scale(0.9) skewX(20deg);
        filter: blur(10px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) skewX(-10deg);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) skewX(0);
        filter: blur(0);
    }
}



/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-vibrant {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .gradient-text-animated {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    nav ul {
        position: fixed;
        top: 77px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 77px);
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: right var(--transition-normal);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    nav ul.active {
        right: 0;
    }

    .mobile-menu-toggle,
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .gradient-text-animated {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-dynamic {
        padding: 4rem 1.5rem;
    }

    .cta-buttons,
    .cta-buttons-center {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .services-grid-vibrant,
    .ai-features-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Section Background Utilities */
/* Section Background Utilities */
.bg-white {
    background: var(--bg-secondary) !important;
}

.bg-grey {
    background: var(--bg-main) !important;
}

.bg-grey-light {
    background: var(--bg-secondary) !important;
}

/* ============================================
   END OF STYLES
   ============================================ */
/* Services Page Hero Navigation */
.services-hero-nav {
    position: absolute;
    right: 1rem;
    /* Slight spacing from edge */
    top: auto;
    bottom: 2rem;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    z-index: 10;
    text-align: right;
    /* Align buttons to right */
    min-width: auto;
    /* Allow shrink */
    opacity: 0;
    animation: slideInFromSide 0.8s ease-out 0.5s forwards;
    display: none;
}

@keyframes slideInFromSide {
    from {
        opacity: 0;
        transform: translateX(100%);
        /* Start off-screen right */
    }

    to {
        opacity: 1;
        transform: translateX(0);
        /* End at normal position */
    }
}

@media (min-width: 1024px) {
    .services-hero-nav {
        display: block;
    }

    .services-page-hero>div:first-child {
        margin-right: 0;
        /* Reset margin */
        text-align: center;
        /* Center text */
        align-items: center;
        max-width: 900px;
        /* Ensure readability */
        margin: 0 auto;
        /* Center horizontally */
    }

    .services-page-hero {
        justify-content: center;
        /* Center content */
        padding-left: 2rem;
        /* Reset padding */
        padding-right: 2rem;
    }
}

.services-hero-nav h3 {
    display: none;
    /* Hidden as requested */
}

.services-hero-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-hero-nav a {
    color: #1e3a8a;
    /* Dark Navy */
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    /* Adjusted Size */
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition for popup */
    display: block;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: none;
    white-space: nowrap;
    text-align: right;
}

.services-hero-nav a:hover {
    color: #7e22ce;
    /* Deep Purple Hover */
    transform: scale(1.2) translateX(-10px);
    /* Significant Pop */
    text-shadow: 0 0 30px rgba(126, 34, 206, 0.6);
    /* No background, just text pop */
}

/* ============================================
   AI RECRUITMENT TIMELINE - FLEX ACCORDION
   ============================================ */
.timeline-container {
    position: relative;
    display: flex;
    /* Flex layout */
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 0;
    margin: 2rem auto;
    max-width: 1200px;
    gap: 0;
    /* Removing gap for line continuity */
}

/* Connecting Horizontal Line Segments */
/* Each item draws a full-width line across its center */
.timeline-step::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Center of 80px circle */
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899);
    z-index: 0;
    opacity: 0.3;
}

/* Mask left side of first item */
.timeline-step:first-child::before {
    left: 50%;
}

/* Mask right side of last item */
.timeline-step:last-child::before {
    right: 50%;
}


.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    /* Equal width */
    min-width: 0;
    /* Allow shrinking */
    padding: 0 1rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth Flex Resize */
    cursor: default;
}

/* Expand Area on Hover */
.timeline-step:hover {
    flex: 2.5;
    /* Grow significantly */
    z-index: 10;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 3px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #3b82f6, #ec4899);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /* Sit on top of line */
}

.timeline-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    white-space: nowrap;
    /* Keep title one line if possible */
    transition: all 0.3s ease;
}

/* Timeline Content Text */
.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    min-width: 250px;
    /* Ensure readability */
}

/* Content Container - No Absolute Overlap */
.timeline-content {
    background: transparent;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.5s ease;
    width: 100%;
    /* Fill the expanded column */
}


/* HOVER EFFECTS */

/* Card Background Appearance */
.timeline-step:hover .timeline-content {
    background: linear-gradient(180deg, #2e1065 0%, #a855f7 100%);
    /* Dark Purple to Light Purple Gradient */
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    /* Strong Purple Glow */
    transform: translateY(-5px);
    padding: 1.5rem;
    margin-top: -10px;
    border: 1px solid #d946ef;
    /* Magenta/Purple Border */
}

/* Text Reveal */
.timeline-step:hover p {
    max-height: 500px;
    /* Reveal text */
    opacity: 1;
    margin-top: 1rem;
    color: #ffffff !important;
    /* White text for visibility */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: normal;
    /* Allow wrapping */
}

/* Step Title Highlight */
.timeline-step:hover h3 {
    color: #ffffff;
    /* White Heading */
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

/* Circle Animation */
.timeline-step:hover .timeline-circle {
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #ec4899, #3b82f6);
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
}


/* RESPONSIVE TIMELINE */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }

    /* Vertical Line for Mobile */
    .timeline-step::before {
        top: 0;
        bottom: 0;
        left: 40px;
        /* Center of circle */
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #ec4899);
    }

    .timeline-step:first-child::before {
        top: 40px;
        /* Start at circle */
        left: 40px;
    }

    .timeline-step:last-child::before {
        bottom: auto;
        height: 40px;
        /* End at circle */
        left: 40px;
    }

    .timeline-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    /* Reset Flex behavior on mobile */
    .timeline-step:hover {
        flex: 1;
    }

    .timeline-content {
        padding-left: 1.5rem;
        width: auto;
    }

    .timeline-step:hover .timeline-content {
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
        margin-top: 0;
    }

    .timeline-circle {
        margin-bottom: 0;
        margin-right: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .timeline-step::before {
        left: 30px;
    }

    /* Adjust for smaller circle */
    .timeline-step:first-child::before {
        left: 30px;
        top: 30px;
    }

    .timeline-step:last-child::before {
        left: 30px;
        height: 30px;
    }

    .timeline-step:hover p {
        max-height: 500px;
        opacity: 1;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Popup Theme - Dynamic Push Interaction (Services, Contact)
   ============================================ */

/* 1. Ensure Container Support flex for Push effect */
.popup-enabled .services-grid {
    display: flex !important;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    /* Fallback for mobile, refined below */
}

/* 2. Base Card Style */
.popup-enabled .service-card,
.popup-enabled .info-card,
.popup-enabled .office-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth expansion */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    /* Default Glass */
    backdrop-filter: blur(10px);
    flex: 1;
    /* Default equal width */
    min-width: 280px;
    /* Preserve readability */
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 3. HOVER Expand & Push Effect */
.popup-enabled .service-card:hover,
.popup-enabled .info-card:hover,
.popup-enabled .office-card:hover {
    flex: 1.5;
    /* Grow width relative to others */
    transform: scale(1.05);
    /* Slight pop up */
    z-index: 50;

    /* VISUAL: Dark Gradient + Gold/Yellow Glow (Reference Image) */
    background: linear-gradient(180deg, #2e1065 0%, #7e22ce 100%) !important;
    border: 2px solid #fbbf24;
    /* Golden Yellow Border */
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4), inset 0 0 15px rgba(251, 191, 36, 0.1);
    /* Gold Glow */
}

/* 4. Sibling Interaction (Optional: Dim others) */
.popup-enabled .services-grid:hover .service-card:not(:hover),
.popup-enabled .contact-grid:hover .info-card:not(:hover) {
    opacity: 0.7;
    /* Focus on active item */
    transform: scale(0.98);
    /* Shrink slightly */
}

/* 5. Content Styling on Hover */
.popup-enabled .service-card:hover h3,
.popup-enabled .info-card:hover h3,
.popup-enabled .office-card:hover h3 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    /* Gold text shadow */
}

.popup-enabled .service-card:hover p,
.popup-enabled .info-card:hover p,
.popup-enabled .office-card:hover p,
.popup-enabled .service-card:hover li,
.popup-enabled .info-card:hover a,
.popup-enabled .office-card:hover a {
    color: #f1f5f9 !important;
    /* Bright White Text */
    text-shadow: none !important;
}

.popup-enabled .service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* 6. Mobile Fallback */
@media (max-width: 900px) {

    .popup-enabled .services-grid,
    .popup-enabled .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .popup-enabled .service-card:hover,
    .popup-enabled .info-card:hover {
        width: 100%;
        transform: scale(1.03);
        flex: auto;
        /* Disable flex grow on column */
    }
}