/* Base Styles & Variables */
:root {
    --primary: #0a2463;
    --primary-dark: #071a45;
    --primary-light: #3a4d8f;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5ee;
    --dark-gray: #4a5568;
    --text: #2d3748;
    --accent: #3a86ff;
    --success: #48bb78;
    --error: #e53e3e;
    
    /* Enhanced shadows for depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 25px -8px rgba(10, 36, 99, 0.15);
    
    /* Refined border radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    
    /* Professional easing curves */
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Refined transitions */
    --transition-fast: all 200ms var(--ease-out-cubic);
    --transition-base: all 300ms var(--ease-in-out-cubic);
    --transition-slow: all 500ms var(--ease-in-out-cubic);
    --transition-spring: all 350ms var(--ease-spring);
    
    /* Focus ring for accessibility */
    --focus-ring: 0 0 0 3px rgba(58, 134, 255, 0.2);
    --focus-ring-offset: 0 0 0 2px var(--white), 0 0 0 4px var(--accent);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    letter-spacing: -0.01em;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.025em;
    font-feature-settings: 'kern' 1;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--primary-light);
}

/* Enhanced focus states for accessibility */
a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-sm);
}

/* Subtle link underline animation */
a:not(.btn):not(.logo-logo)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-light);
    transition: width var(--transition-base);
}

a:not(.btn):not(.logo-logo):hover::after {
    width: 100%;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring-offset);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
    transition: var(--transition-fast);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: inset 0 0 0 0 var(--primary);
    transition: var(--transition-base), box-shadow var(--transition-base);
}

.btn-secondary:hover {
    color: var(--white);
    box-shadow: inset 0 0 0 100px var(--primary);
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(0) scale(1);
    transition: var(--transition-fast);
}

/* Enhanced Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-logo, .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
}

.logo-logo:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.logo-logo:hover {
    transform: scale(1.02);
}

.logo-logo .logo-img {
    width: 200px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-base);
}

.logo-logo .logo-wrap {
    width: 200px;
    height: 50px;
    overflow: hidden;
    display: flex;
    border-radius: var(--radius-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    font-weight: 400;
    color: var(--dark-gray);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    position: relative;
    display: block;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
    background-color: rgba(10, 36, 99, 0.05);
}

.nav-links a:not(.btn):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Active nav indicator */
.nav-links a:not(.btn)::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
    transition: transform var(--transition-base);
}

.nav-links a:not(.btn):hover::before,
.nav-links a:not(.btn).active::before {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Enhanced Hero Slider Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 1s var(--ease-in-out-cubic);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s var(--ease-out-cubic) 0.3s both;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s var(--ease-out-cubic) 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s var(--ease-out-cubic) 0.7s both;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.hero-nav-btn:hover,
.hero-nav-btn.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-nav-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    color: var(--white);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

/* Auto-play progress indicator */
.hero-nav-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.hero-nav-btn.active::after {
    opacity: 1;
    transform: scale(1);
    animation: progressRing 5s linear;
}

@keyframes progressRing {
    0% {
        stroke-dasharray: 0 100;
    }
    100% {
        stroke-dasharray: 100 0;
    }
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.hero-nav-btn:hover,
.hero-nav-btn.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-nav-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    color: var(--white);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        display: none; /* Hide arrows on mobile, use swipe instead */
    }
    
    .hero-nav {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .hero-nav-btn {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease;
    }
    
    .hero h1,
    .hero .lead,
    .cta-buttons {
        animation: none;
    }
    
    .hero-nav-btn.active::after {
        animation: none;
    }
}

/* Slide Transition Effects */
.hero-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-slide.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
}

.hero-slide.slide-in-right.active {
    transform: translateX(0);
    opacity: 1;
}

/* Auto-play progress indicator */
.hero-nav-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.hero-nav-btn.active::after {
    opacity: 1;
    transform: scale(1);
    animation: progressRing 5s linear;
}

@keyframes progressRing {
    0% {
        stroke-dasharray: 0 100;
    }
    100% {
        stroke-dasharray: 100 0;
    }
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}

.mission, .vision {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
}

/* Gradient background overlay for mission/vision */
.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(58, 134, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

/* Animated border glow effect for mission/vision */
.mission::after, .vision::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary-light), var(--accent));
    background-size: 300% 300%;
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -2;
    animation: gradientShift 4s ease infinite;
    transition: opacity var(--transition-base);
}

/* Enhanced hover state with spectacular effects */
.mission:hover, .vision:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        var(--shadow-lg),
        0 20px 40px -10px rgba(10, 36, 99, 0.2),
        0 0 0 1px rgba(58, 134, 255, 0.1);
    border-left-color: var(--accent);
    border-left-width: 6px;
}

.mission:hover::before, .vision:hover::before {
    opacity: 1;
}

.mission:hover::after, .vision:hover::after {
    opacity: 0.7;
}

.mission h3, .vision h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Heading hover effects */
.mission:hover h3, .vision:hover h3 {
    color: var(--accent);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(10, 36, 99, 0.2);
}

/* Add icon before headings */
.mission h3::before {
    content: '🎯';
    margin-right: 0.5rem;
    font-size: 1.2em;
    transition: var(--transition-spring);
}

.vision h3::before {
    content: '🚀';
    margin-right: 0.5rem;
    font-size: 1.2em;
    transition: var(--transition-spring);
}

.mission:hover h3::before, .vision:hover h3::before {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(10, 36, 99, 0.3));
}

.mission p, .vision p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Text hover effects */
.mission:hover p, .vision:hover p {
    color: var(--text);
    transform: translateY(-1px);
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
}

/* Gradient background overlay */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.02) 0%, rgba(58, 134, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

/* Animated border glow effect */
.solution-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary-light), var(--accent));
    background-size: 300% 300%;
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -2;
    animation: gradientShift 3s ease infinite;
    transition: opacity var(--transition-base);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced hover state with multiple effects */
.solution-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        var(--shadow-lg),
        0 25px 50px -12px rgba(10, 36, 99, 0.25),
        0 0 0 1px rgba(58, 134, 255, 0.1);
    border-color: transparent;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:focus-within {
    outline: none;
    box-shadow: var(--shadow-lg), var(--focus-ring);
    transform: translateY(-4px);
}

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-spring);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Icon hover effects with multiple transformations */
.solution-card:hover .icon {
    transform: scale(1.2) rotate(10deg) translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(10, 36, 99, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1.2) rotate(10deg) translateY(-5px);
    }
    50% { 
        transform: scale(1.25) rotate(12deg) translateY(-8px);
    }
}

/* Icon glow effect */
.solution-card .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-base);
    z-index: -1;
}

.solution-card:hover .icon::before {
    transform: translate(-50%, -50%) scale(2);
}

.solution-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

/* Text hover effects */
.solution-card:hover h3 {
    color: var(--primary);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(10, 36, 99, 0.2);
}

.solution-card p {
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.solution-card:hover p {
    color: var(--text);
    transform: translateY(-1px);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    border: 1px solid var(--medium-gray);
}

/* Gradient background overlay for industries */
.industry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.02) 0%, rgba(58, 134, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

/* Animated border glow effect for industries */
.industry::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary-light), var(--accent));
    background-size: 300% 300%;
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -2;
    animation: gradientShift 3.5s ease infinite;
    transition: opacity var(--transition-base);
}

/* Enhanced hover state with spectacular effects */
.industry:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        var(--shadow-lg),
        0 25px 50px -12px rgba(10, 36, 99, 0.25),
        0 0 0 1px rgba(58, 134, 255, 0.1);
    border-color: transparent;
}

.industry:hover::before {
    opacity: 1;
}

.industry:hover::after {
    opacity: 1;
}

.industry h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
}

/* Industry heading hover effects */
.industry:hover h3 {
    color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 4px 8px rgba(10, 36, 99, 0.2);
}

/* Add industry-specific icons */
.industry:nth-child(1) h3::before { content: '✈️ '; }
.industry:nth-child(2) h3::before { content: '🏛️ '; }
.industry:nth-child(3) h3::before { content: '⚡ '; }
.industry:nth-child(4) h3::before { content: '🔬 '; }
.industry:nth-child(5) h3::before { content: '🏦 '; }
.industry:nth-child(6) h3::before { content: '🏥 '; }
.industry:nth-child(7) h3::before { content: '🏨 '; }

.industry h3::before {
    font-size: 1.2em;
    margin-right: 0.5rem;
    transition: var(--transition-spring);
    display: inline-block;
}

.industry:hover h3::before {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(10, 36, 99, 0.3));
}

/* Industry paragraph hover effects */
.industry p {
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.industry:hover p {
    color: var(--text);
    transform: translateY(-1px);
}

/* Trusted by & Partners Logo Grid Sections */
.trusted-by, .partners {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.trusted-by:nth-child(even), .partners:nth-child(even) {
    background-color: var(--white);
}

.trusted-by h2, .partners h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
}

.trusted-by h2::after, .partners h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Logo Scroll Marquee Styles */
.logo-scroll {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    padding: 2rem 0;
}

.logo-scroll-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    will-change: transform;
}

.logo-scroll-track img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.logo-scroll-track img:hover,
.logo-scroll-track img:focus-visible {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

/* Pause animation on hover or focus */
.logo-scroll:hover .logo-scroll-track,
.logo-scroll:focus-within .logo-scroll-track {
    animation-play-state: paused;
}

/* Marquee keyframes */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .logo-scroll-track {
        animation: none;
    }
    
    .logo-scroll {
        mask: none;
        -webkit-mask: none;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(10, 36, 99, 0.3) transparent;
    }
    
    .logo-scroll::-webkit-scrollbar {
        height: 4px;
    }
    
    .logo-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .logo-scroll::-webkit-scrollbar-thumb {
        background: rgba(10, 36, 99, 0.3);
        border-radius: 2px;
    }
    
    .logo-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(10, 36, 99, 0.5);
    }
    
    .logo-scroll-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 2rem;
        width: 100%;
        padding: 1rem 0;
    }
    
    .logo-scroll-track img:nth-child(n+18) {
        display: none; /* Hide duplicate logos in static grid */
    }
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 3rem;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--white);
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
    background-color: var(--accent);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: var(--white);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--focus-ring);
    transform: scale(1.01);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Enhanced Animations & Magical Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes clickRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.8s var(--ease-out-cubic) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s var(--ease-out-cubic) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s var(--ease-out-cubic) forwards;
}

.scale-in {
    animation: scaleIn 0.6s var(--ease-spring) forwards;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Scroll-based reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-cubic);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Magical shimmer effect */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease-out;
}

.shimmer-effect:hover::before {
    animation: shimmer 1.2s ease-out;
}

/* Parallax container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Subtle particle effect */
.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particle:nth-child(2n) {
    animation-delay: -1s;
    animation-duration: 6s;
}

.particle:nth-child(3n) {
    animation-delay: -2s;
    animation-duration: 5s;
}

/* ======================
   Footer
   ====================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: rgba(255, 255, 255, 0.85);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #3a86ff);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Footer About Section */
.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    font-style: normal;
    padding: 0;
    margin: 0;
    background: transparent;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--accent);
    background: transparent;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: white;
    transform: translateY(-2px);
}

.contact-item a.footer-link {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.contact-item a.footer-link:hover {
    color: var(--accent);
    transform: none;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-nav {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .divider {
        display: none;
    }
}

/* Light sweep effect */
.light-sweep {
    position: relative;
    overflow: hidden;
}

.light-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(58, 134, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease-out;
}

.light-sweep:hover::after {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero .lead {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .solutions-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .mission, .vision {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none !important;
    }
    
    body {
        padding: 0;
        font-size: 12pt;
        line-height: 1.3;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1cm;
    }
    
    section {
        padding: 1cm 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    a {
        text-decoration: none;
        color: var(--text) !important;
    }
    
    .no-print {
        display: none !important;
    }
}

/* Footer Contact Section */
.footer-contact {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.footer-contact:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-contact .footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-contact .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.contact-info {
    font-style: normal;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
    border-radius: var(--radius);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--accent);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.contact-item:hover .contact-icon {
    color: white;
    transform: scale(1.1);
}

.contact-item a.footer-link,
.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    transition: var(--transition-base);
    padding: 0 0 0 2.5rem;
    line-height: 1.5;
}

.contact-item a.footer-link:hover {
    color: var(--accent);
    transform: none;
    padding-left: 2.7rem;
}

/* ======================
   Contact Section
   ====================== */
.contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-base);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text);
    transition: var(--transition-base);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.contact-details p:hover {
    background: rgba(10, 36, 99, 0.05);
    transform: translateX(5px);
}

.contact-details p::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.contact-details p:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a86ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E"); }
.contact-details p:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a86ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E"); }
.contact-details p:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a86ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E"); }
.contact-details p:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a86ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E"); }
.contact-details p:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a86ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E"); }

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Animation for reveal class */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact-info {
    font-style: normal;
    padding: 0;
    margin: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
}

.footer-contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--accent);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-info a.footer-link,
.footer-contact-info span {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-contact-info a.footer-link:hover {
    color: var(--accent);
}

/* ======================
   Contact CTA Section
   ====================== */
.contact-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.3;
}

.contact-cta .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-cta .contact-info {
    padding-right: 2rem;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta .contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 500;
}

.contact-cta .contact-details p::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.contact-cta .contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-cta .form-group {
    margin-bottom: 1.25rem;
}

.contact-cta input,
.contact-cta select,
.contact-cta textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-cta input:focus,
.contact-cta select:focus,
.contact-cta textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.contact-cta .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-cta .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .contact-details p {
        justify-content: center;
    }
}
