
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #F8F9FA;
    color: #2D3748;
    overflow-x: hidden;
}

section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.4s;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.skeleton-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 14px 28px;
    color: #00A8E8;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: white;
    border-radius: 30px;
    border: 1px solid #00A8E8;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.skeleton-btn:hover {
    background-color: rgba(0, 168, 232, 0.1);
    border-color: #0090cc;
    color: #0090cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-radius: 8px;
    padding: 16px 38px;
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background-color: #00A8E8;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.4);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.primary-btn:hover {
    background-color: #0090cc;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.5), 0 0 20px rgba(0, 168, 232, 0.3);
    animation: buttonPulse 2s infinite;
}

.primary-btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 15px 30px rgba(0, 168, 232, 0.5), 0 0 0px rgba(0, 168, 232, 0.5); }
    50% { box-shadow: 0 15px 30px rgba(0, 168, 232, 0.5), 0 0 20px rgba(0, 168, 232, 0.5); }
    100% { box-shadow: 0 15px 30px rgba(0, 168, 232, 0.5), 0 0 0px rgba(0, 168, 232, 0.5); }
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.secondary-btn:hover {
    border-color: #00A8E8;
    color: #00A8E8;
    background-color: rgba(0, 168, 232, 0.05);
    transform: translateY(-5px);
}

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

.btn::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn:hover::after {
    left: 100%;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 1s linear;
    background-color: rgba(255, 255, 255, 0.4);
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.btn:active {
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Button icon animation handled by GSAP */

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

/* Header Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 20px 20px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header-container.scrolled {
    background-color: transparent;
    padding: 10px 20px;
}

.header-container.scrolled .header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container.scrolled:hover .header {
    background-color: rgba(255, 255, 255, 0.95);
}

.header {
    background-color: white;
    border-radius: 100px;
    width: 90%;
    max-width: 1200px;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.header-container.scrolled .header {
    transform: translateY(0);
    transition: all 0.4s ease;
}

.header-container.scrolled:not(:hover) .header {
    transform: translateY(-5px);
}

.header-container.in-hero .header {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 1;
}

.logo-img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.header-container.scrolled .logo-img {
    height: 28px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 26px;
    }
}

.nav-area {
    display: flex;
    justify-content: center;
    flex: 3;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    color: #2D3748;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
    transition: all 0.3s ease;
}

.header-container.in-hero .nav-item {
    color: #2D3748;
}

.header-container.scrolled .nav-item {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.header-container.scrolled:hover .nav-item {
    opacity: 1;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00A8E8;
    transition: width 0.3s ease;
}

.header-container.in-hero .nav-item::after {
    background-color: #00A8E8;
}

.nav-item:hover::after {
    width: 100%;
}

.cta-button {
    background-color: #0D2C4F;
    color: white;
    border: 1px solid #0D2C4F;
    border-radius: 100px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(13, 44, 79, 0.9);
}

.header-container.in-hero .cta-button {
    background-color: #0D2C4F;
    color: white;
    border: 1px solid #0D2C4F;
}

.header-container.in-hero .cta-button:hover {
    background-color: rgba(13, 44, 79, 0.9);
}

.header-container.scrolled .cta-button {
    opacity: 0.9;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.header-container.scrolled:hover .cta-button {
    opacity: 1;
    transform: scale(1);
}

.cta-container {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.mobile-cta {
    display: none;
}

/* Hero Section */
#hero {
    background-color: #0D2C4F;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-three-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    background: radial-gradient(circle at center, rgba(13, 44, 79, 0.4) 0%, rgba(13, 44, 79, 0.7) 70%, #0D2C4F 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 5;
}

.scroll-text {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 0.8rem;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    position: relative;
}

.scroll-arrow .arrow {
    animation: scrollAnim 2s infinite;
    opacity: 0;
}

.scroll-arrow .arrow:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow .arrow:nth-child(2) {
    animation-delay: 0.5s;
}

.scroll-arrow .arrow:nth-child(3) {
    animation-delay: 1s;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-left {
    flex: 1;
    padding-right: 20px;
}

.hero-right {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('images/hero-bg.svg');
    background-size: cover;
    background-position: center center;
    animation: subtleZoom 60s linear infinite alternate;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(13, 44, 79, 0.7) 0%, #0D2C4F 70%);
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    /* Ajustements pour le hero sur mobile */
    .hero-content-inner {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1px !important;
    }
    
    .hero-tagline {
        margin-bottom: 0;
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
        text-align: center;
        background-size: 200% auto;
        line-height: 1.1;
        margin-bottom: 1px;
        margin-top: 0;
    }
    
    .hero-subtitle-wrapper {
        margin: 0;
        padding: 0;
        margin-bottom: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
        margin: 0;
        line-height: 1.3;
    }
    
    .hero-cta-container {
        margin-top: 1px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .btn-icon {
        margin-left: 10px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.hero-tagline {
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #FFFFFF;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s, glowPulse 4s ease-in-out infinite alternate;
    text-align: center;
    width: 100%;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(0, 168, 232, 0.5), 0 0 30px rgba(0, 168, 232, 0.3); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #00A8E8, #4A5568, #fff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease infinite alternate;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 40px rgba(0, 168, 232, 0.8);
    letter-spacing: -2px;
    position: relative;
}

.hero-title::after {
    content: attr(id);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    text-align: center;
    background: linear-gradient(90deg, #fff, #00A8E8, #4A5568, #fff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease infinite alternate;
    filter: blur(20px);
    opacity: 0.5;
}

/* Enhanced gradient animation */
@keyframes gradientText {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.char {
    display: inline-block;
    opacity: 0;
    transform-origin: center;
}

.char.space {
    margin: 0 0.15em;
}

.hero-subtitle-wrapper {
    position: relative;
    margin-bottom: 40px;
    max-width: 950px;
    perspective: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-subtitle {
    font-size: 2.4rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.accent-text {
    color: #00A8E8;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 168, 232, 0.4);
    cursor: pointer;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00A8E8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.8);
}

.accent-text:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 168, 232, 0.8);
    transform: translateY(-2px);
}

.accent-text:hover::after {
    transform: scaleX(1);
    background-color: #ffffff;
}

#quote span {
    display: inline-block;
    will-change: transform;
}


/* Our Approach Section - New Style */
#approach {
    background-color: #f8f9fa;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* New Approach Background */
.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(255, 255, 255, 0) 40%),
        linear-gradient(225deg, rgba(13, 44, 79, 0.08) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 168, 232, 0.08) 0%, transparent 40%);
    opacity: 0.8;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.services-header h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
    letter-spacing: -0.02em;
}

.services-header h2::before,
.services-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.services-header h2::before {
    top: 0;
    left: 0;
}

.services-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.services-header h2.revealed::before,
.services-header h2.revealed::after {
    width: 100%;
}

.services-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4A5568;
    line-height: 1.6;
}

.services-content {
    position: relative;
    z-index: 1;
}

/* New approach timeline layout */
.approach-timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto 50px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, rgba(0, 168, 232, 0.2), rgba(13, 44, 79, 0.2));
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
}

.approach-card {
    position: relative;
    width: 45%;
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 80px;
    z-index: 2;
    opacity: 1; /* Make visible by default */
    transform: translateY(0); /* Start at normal position */
    transition: all 0.5s ease;
    border-top: 5px solid #00A8E8;
    overflow: hidden;
}

.approach-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.approach-card:nth-child(odd) {
    margin-right: auto;
}

.approach-card:nth-child(even) {
    margin-left: auto;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: #00A8E8;
    border-radius: 50%;
    border: 5px solid #f8f9fa;
    box-shadow: 0 0 0 5px rgba(0, 168, 232, 0.2);
    z-index: 3;
}

.approach-card:nth-child(odd)::before {
    right: -60px;
}

.approach-card:nth-child(even)::before {
    left: -60px;
}

.approach-card::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 40px;
    height: 2px;
    background-color: rgba(0, 168, 232, 0.5);
    z-index: 2;
}

.approach-card:nth-child(odd)::after {
    right: -40px;
}

.approach-card:nth-child(even)::after {
    left: -40px;
}

.approach-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 168, 232, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(0, 168, 232, 0.2);
}

.approach-icon svg {
    width: 40px;
    height: 40px;
    color: #00A8E8;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon svg {
    transform: scale(1.1);
}

.approach-subtitle {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00A8E8;
    margin-bottom: 15px;
}

.approach-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #0D2C4F;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.approach-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00A8E8;
    transition: width 0.3s ease;
}

.approach-card:hover .approach-title::after {
    width: 100px;
}

.approach-description {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 0;
}

.approach-deco {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2300A8E8" stroke-width="0.5" stroke-dasharray="3,3" opacity="0.2"/><circle cx="50" cy="50" r="30" fill="none" stroke="%2300A8E8" stroke-width="0.5" stroke-dasharray="3,3" opacity="0.15"/><circle cx="50" cy="50" r="20" fill="none" stroke="%2300A8E8" stroke-width="0.5" stroke-dasharray="3,3" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.approach-card:hover .approach-deco {
    opacity: 0.6;
    transform: rotate(30deg) scale(1.2);
}

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

/* Our Approach Cards */
.approach-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
}

.view-all-approaches {
    text-align: center;
    margin-top: 50px;
}

.approach-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #00A8E8;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 168, 232, 0.2);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.approach-btn:hover {
    background-color: #0D2C4F;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(13, 44, 79, 0.3);
}

.approach-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.approach-btn:hover svg {
    transform: translateX(5px);
}

/* Approach Video Section */
.approach-video {
    position: relative;
    margin: 80px auto;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}

.approach-video.revealed {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 44, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-overlay:hover {
    background-color: rgba(13, 44, 79, 0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: #00A8E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.5);
    transform: scale(1);
    transition: all 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: #0D2C4F;
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-left: 5px; /* Adjust to center the triangle icon */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Responsive adjustments for our approach */
@media (max-width: 992px) {
    .approach-timeline {
        margin-top: 60px;
    }
    
    .approach-card {
        width: 85%;
        margin-bottom: 60px;
    }
    
    .approach-card:nth-child(odd),
    .approach-card:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .approach-card::before {
        left: -46px !important;
        right: auto !important;
    }
    
    .approach-card::after {
        left: -30px !important;
        right: auto !important;
        width: 30px;
    }
    
    .approach-icon {
        width: 70px;
        height: 70px;
    }
    
    .approach-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 2.8rem;
    }
    
    .approach-card {
        width: 90%;
        padding: 30px 25px;
    }
    
    .approach-title {
        font-size: 2rem;
    }
    
    .approach-subtitle {
        font-size: 1.2rem;
    }
    
    .approach-description {
        font-size: 1.5rem;
    }
    
    .approach-deco {
        width: 80px;
        height: 80px;
    }
    
    .approach-btn {
        padding: 14px 28px;
        font-size: 1.4rem;
    }
}

.service-card {
    background-color: white;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #00A8E8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card-header {
    padding: 28px 30px 20px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

/* Metro tile service styles */
.metro-tile .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #00A8E8;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
    transition: all 0.3s ease;
}

.metro-tile .service-icon i {
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.metro-tile:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.metro-tile:hover .service-icon i {
    transform: scale(1.1);
}

.metro-tile .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.metro-tile .service-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #333, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.metro-tile:hover .service-title {
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.8px;
}

.metro-tile .service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0D2C4F;
    transition: all 0.3s ease;
}

.metro-tile:hover .service-content h3 {
    color: #00A8E8;
}

.metro-tile .service-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: auto;
    transition: all 0.3s ease;
}

.metro-tile:hover .service-content p {
    color: #333;
}

.service-rating-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-rating {
    color: #ffcc00;
    transition: all 0.3s ease;
}

.rating-text {
    font-size: 0.9rem;
    color: #777;
    transition: all 0.3s ease;
}

.metro-tile:hover .rating-text {
    color: #444;
}

/* Legacy service card styles kept for reference */
.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: #00A8E8;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
    transition: all 0.3s ease;
}

.service-card .service-icon i {
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

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

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card .service-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #333;
    letter-spacing: 0.5px;
    position: relative;
    margin-left: auto;
    text-align: right;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #333, #333);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.service-card:hover .service-title {
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.8px;
}

/* Removed service-get button */

.service-card-body {
    padding: 10px 30px 30px;
    flex: 1;
}

.service-card-body h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 800;
    background: linear-gradient(90deg, #2D3748, #4A5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-body h3 {
    transform: translateY(0);
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card-body p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-body p {
    color: #333;
}

.service-card-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: space-between;
}

.service-card:hover .service-card-footer {
    background-color: rgba(0, 168, 232, 0.05);
}

.service-rating {
    color: #ffcc00;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.service-card:hover .service-rating {
    letter-spacing: 1px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* How We Work Section - Parallax Style */
#how-we-work {
    background-color: #f8f9fc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.work-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.work-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
}

.work-layer-1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600" viewBox="0 0 600 600"><rect x="150" y="150" width="300" height="300" fill="none" stroke="%2300A8E8" stroke-width="2" stroke-dasharray="20,10"/></svg>');
    background-size: 600px;
    transform: translateZ(-8px) scale(1.8);
}

.work-layer-2 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800"><path d="M0,400 L800,400 M400,0 L400,800" stroke="%230D2C4F" stroke-width="1" stroke-dasharray="15,15"/></svg>');
    background-size: 500px;
    transform: translateZ(-4px) scale(1.4);
}

.work-layer-3 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect x="10" y="10" width="10" height="10" rx="2" fill="%2300A8E8" opacity="0.5"/><rect x="40" y="10" width="10" height="10" rx="2" fill="%2300A8E8" opacity="0.5"/><rect x="10" y="40" width="10" height="10" rx="2" fill="%2300A8E8" opacity="0.5"/><rect x="40" y="40" width="10" height="10" rx="2" fill="%2300A8E8" opacity="0.5"/></svg>');
    background-size: 80px;
    transform: translateZ(-2px) scale(1.2);
}

.work-content {
    position: relative;
    z-index: 1;
}

.work-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.animated-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.heading-background {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(13, 44, 79, 0.03);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: -1;
}

.work-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.work-header h2::before,
.work-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.work-header h2::before {
    top: 0;
    left: 0;
}

.work-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.work-header h2.revealed::before,
.work-header h2.revealed::after {
    width: 100%;
}

.work-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.process-quote {
    position: relative;
    margin: 0 auto 50px;
    padding: 20px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #0D2C4F;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 800px;
}

.process-quote.revealed {
    opacity: 1;
    transform: translateY(0);
}

.quadrants-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    margin: 50px auto;
    max-width: 1000px;
    position: relative;
}

.quadrant {
    background-color: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.quadrant.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Quadrant colors */
.quadrant:nth-child(1) {
    border-top: 5px solid #00A8E8;
}

.quadrant:nth-child(2) {
    border-top: 5px solid #00A8E8;
}

.quadrant:nth-child(3) {
    border-top: 5px solid #00A8E8;
}

.quadrant:nth-child(4) {
    border-top: 5px solid #00A8E8;
}

.quadrant:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: rgba(13, 44, 79, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

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

.quadrant:nth-child(1) .step-icon {
    background-color: rgba(0, 168, 232, 0.15);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

.quadrant:nth-child(2) .step-icon {
    background-color: rgba(0, 168, 232, 0.15);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

.quadrant:nth-child(3) .step-icon {
    background-color: rgba(0, 168, 232, 0.15);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

.quadrant:nth-child(4) .step-icon {
    background-color: rgba(0, 168, 232, 0.15);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

.step-icon i,
.step-icon [data-lucide] {
    width: 32px;
    height: 32px;
    color: #0D2C4F;
    transition: all 0.4s ease;
}

.quadrant:hover .step-icon i,
.quadrant:hover .step-icon [data-lucide] {
    transform: scale(1.2);
}

.quadrant:nth-child(1) .step-icon i,
.quadrant:nth-child(1) .step-icon [data-lucide] {
    color: #00A8E8;
}

.quadrant:nth-child(2) .step-icon i,
.quadrant:nth-child(2) .step-icon [data-lucide] {
    color: #00A8E8;
}

.quadrant:nth-child(3) .step-icon i,
.quadrant:nth-child(3) .step-icon [data-lucide] {
    color: #00A8E8;
}

.quadrant:nth-child(4) .step-icon i,
.quadrant:nth-child(4) .step-icon [data-lucide] {
    color: #00A8E8;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    color: #00A8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.1);
    border: 2px solid rgba(0, 168, 232, 0.3);
}

.quadrant h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00A8E8;
    position: relative;
    display: inline-block;
}

.quadrant h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00A8E8;
    transition: width 0.4s ease;
}

.quadrant:hover h3::after {
    width: 100%;
}

.quadrant p {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.quadrant:hover p {
    color: #0D2C4F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quadrants-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 30px;
    }
    
    .quadrant {
        min-height: auto;
        padding: 30px;
    }
    
    .work-header h2 {
        font-size: 2.8rem;
    }
    
    .heading-background {
        font-size: 4rem;
    }
    
    .work-header p {
        font-size: 1.6rem;
    }
    
    .process-quote {
        font-size: 1.6rem;
        padding: 15px 25px;
    }
}

/* About Section - Parallax */
#about {
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
}

.layer-1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600" viewBox="0 0 600 600"><path d="M300,150 L450,300 L300,450 L150,300 Z" fill="none" stroke="%230D2C4F" stroke-width="2"/></svg>');
    background-size: 500px;
    transform: translateZ(-10px) scale(2);
}

.layer-2 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800"><circle cx="400" cy="400" r="300" fill="none" stroke="%2300A8E8" stroke-width="1"/></svg>');
    background-size: 800px;
    transform: translateZ(-5px) scale(1.5);
}

.layer-3 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="3" fill="%2300A8E8"/></svg>');
    background-size: 60px;
    transform: translateZ(-2px) scale(1.2);
}

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

.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.about-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.about-header h2::before,
.about-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.about-header h2::before {
    top: 0;
    left: 0;
}

.about-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.about-header h2.revealed::before,
.about-header h2.revealed::after {
    width: 100%;
}

.about-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.about-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.about-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #0D2C4F;
    position: relative;
}

.about-card p {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.6;
}

.quote-highlight {
    position: relative;
    margin: 40px 0;
    padding: 20px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #0D2C4F;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.quote-highlight.revealed {
    opacity: 1;
    transform: translateY(0);
}

.quote-highlight::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5rem;
    color: rgba(0, 168, 232, 0.2);
    line-height: 1;
}

.quote-highlight::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 5rem;
    color: rgba(0, 168, 232, 0.2);
    line-height: 1;
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.8rem;
    }
    
    .about-heading .heading-background {
        font-size: 4rem;
    }
    
    .about-header p {
        font-size: 1.6rem;
    }
    
    .quote-highlight {
        font-size: 1.6rem;
        padding: 15px 20px;
    }
}

/* Story Blocks Section */
#story {
    background-color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.story-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.story-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.story-header h2::before,
.story-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.story-header h2::before {
    top: 0;
    left: 0;
}

.story-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.story-header h2.revealed::before,
.story-header h2.revealed::after {
    width: 100%;
}

.story-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.story-blocks {
    position: relative;
    z-index: 1;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0;
    transition: all 0.6s ease;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.revealed {
    opacity: 1;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    padding: 0 40px;
}

.story-visual {
    flex: 1;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.story-block:hover .story-visual-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    transition: all 0.5s ease;
}

.story-block:nth-child(odd) .story-icon {
    top: -30px;
    right: 30px;
    transform: rotate(-5deg);
}

.story-block:nth-child(even) .story-icon {
    top: -30px;
    left: 30px;
    transform: rotate(5deg);
}

.story-block:hover .story-icon {
    transform: rotate(0) scale(1.1);
}

.story-icon i {
    font-size: 50px;
    color: #3ac9a0;
}

.story-block:nth-child(1) .story-icon i {
    color: #00A8E8;
}

.story-block:nth-child(2) .story-icon i {
    color: #00A8E8;
}

.story-block:nth-child(3) .story-icon i {
    color: #0D2C4F;
}

.story-block:nth-child(4) .story-icon i {
    color: #4A5568;
}

.story-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 240, 183, 0.08);
    border-radius: 20px;
    z-index: 1;
}

.story-block:nth-child(1) .story-bg-shape {
    background-color: rgba(0, 168, 232, 0.08);
}

.story-block:nth-child(2) .story-bg-shape {
    background-color: rgba(0, 168, 232, 0.08);
}

.story-block:nth-child(3) .story-bg-shape {
    background-color: rgba(13, 44, 79, 0.08);
}

.story-block:nth-child(4) .story-bg-shape {
    background-color: rgba(74, 85, 104, 0.08);
}

.story-image {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: all 0.5s ease;
    z-index: 3;
}

.story-block:hover .story-image {
    transform: scale(1.05);
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #0D2C4F;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00A8E8;
    transition: width 0.5s ease;
}

.story-block:hover .story-title::after {
    width: 100%;
}

.story-block:nth-child(even) .story-title::after {
    left: auto;
    right: 0;
    background: #00A8E8;
}

.story-desc {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.story-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #00A8E8;
    margin-top: 25px;
    display: block;
}

.story-stat-desc {
    font-size: 1.4rem;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .story-block {
        flex-direction: column-reverse;
        margin-bottom: 80px;
    }
    
    .story-block:nth-child(even) {
        flex-direction: column-reverse;
    }
    
    .story-content {
        padding: 40px 20px 0;
        text-align: center;
    }
    
    .story-visual {
        min-height: 280px;
        margin-bottom: 30px;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, #4ff0b7, transparent);
    }
    
    .story-block:nth-child(even) .story-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, #4ff0b7, transparent);
    }
    
    .story-icon {
        top: -30px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .story-block:hover .story-icon {
        transform: translateX(-50%) scale(1.1) !important;
    }
    
    .story-header h2 {
        font-size: 2.8rem;
    }
    
    .story-heading .heading-background {
        font-size: 4rem;
    }
    
    .story-header p {
        font-size: 1.6rem;
    }
    
    .story-title {
        font-size: 2.2rem;
    }
    
    .story-desc {
        font-size: 1.5rem;
    }
}

/* Ethos Section Styles */
#ethos {
    background-color: #f8f9fc;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ethos-quote {
    position: relative;
    margin: 0 auto 50px;
    padding: 20px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #0D2C4F;
    text-align: center;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 800px;
    border-left: 4px solid #00A8E8;
    background-color: rgba(0, 168, 232, 0.05);
    border-radius: 0 10px 10px 0;
}

.ethos-quote.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ethos-principles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px auto;
    max-width: 900px;
    position: relative;
}

.principle {
    display: flex;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    overflow: hidden;
}

.principle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #00A8E8;
    transition: all 0.3s ease;
}

.principle:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.principle:hover::before {
    width: 6px;
}

.principle.revealed {
    opacity: 1;
    transform: translateX(0);
}

.principle:nth-child(even) {
    transform: translateX(30px);
}

.principle:nth-child(even).revealed {
    transform: translateX(0);
}

.principle-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(12, 34, 31, 0.06);
    margin-right: 25px;
    min-width: 80px;
    text-align: center;
    line-height: 1;
    align-self: center;
    transition: all 0.3s ease;
}

.principle:hover .principle-number {
    color: rgba(0, 168, 232, 0.3);
}

.principle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    background-color: rgba(13, 44, 79, 0.05);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.principle-icon svg {
    color: #0D2C4F;
    transition: all 0.3s ease;
}

.principle:hover .principle-icon {
    background-color: rgba(0, 168, 232, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.principle:hover .principle-icon svg {
    color: #00A8E8;
    transform: scale(1.1);
}

.principle-content {
    flex: 1;
}

.principle-content h3 {
    color: #0D2C4F;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.principle-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00A8E8;
    transition: width 0.4s ease;
}

.principle:hover .principle-content h3::after {
    width: 100%;
}

.principle-content p {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.principle-impact {
    background-color: rgba(0, 168, 232, 0.08);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.4rem;
    color: #2D3748;
    transition: all 0.3s ease;
}

.principle-impact strong {
    color: #0D2C4F;
    margin-right: 5px;
}

.principle:hover .principle-impact {
    background-color: rgba(0, 168, 232, 0.15);
}

@media (max-width: 768px) {
    .principle {
        flex-direction: column;
        padding: 25px 20px;
    }
    
    .principle-number {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 2.5rem;
    }
    
    .principle-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .principle-content h3 {
        margin-top: 10px;
        font-size: 1.8rem;
    }
    
    .principle:nth-child(odd),
    .principle:nth-child(even) {
        transform: translateY(30px);
    }
    
    .principle:nth-child(odd).revealed,
    .principle:nth-child(even).revealed {
        transform: translateY(0);
    }
    
    .principle:hover {
        transform: translateY(-10px) !important;
    }
}

/* Make sure Lucide icons are properly displayed */
[data-lucide] {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive Adjustments for Ecosystem & Connect Sections */
@media (max-width: 768px) {
    .product-showcase,
    .why-weavyz-section,
    .next-steps {
        padding: 25px;
    }
    
    .flagship-product {
        padding: 30px 20px;
    }
    
    .product-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-card {
        padding: 25px 20px;
    }
    
    .connect-icon {
        width: 60px;
        height: 60px;
    }
    
    .connect-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .why-point {
        padding: 12px 10px;
    }
    
    .why-summary {
        padding: 20px 15px;
    }
}

/* Ecosystem Section */
#ecosystem {
    background-color: #f5f5f5;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.ecosystem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ecosystem-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.ecosystem-header h2::before,
.ecosystem-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.ecosystem-header h2::before {
    top: 0;
    left: 0;
}

.ecosystem-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.ecosystem-header h2.revealed::before,
.ecosystem-header h2.revealed::after {
    width: 100%;
}

.ecosystem-subtitle {
    font-size: 2.4rem;
    margin: 50px 0 30px;
    color: #0D2C4F;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.ecosystem-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00A8E8;
}

/* Product Showcase Styles */
.product-showcase {
    margin: 50px auto;
    max-width: 800px;
}

.flagship-product {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flagship-product::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00A8E8;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.flagship-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flagship-product:hover::after {
    transform: scaleX(1);
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product-icon svg {
    width: 60px;
    height: 60px;
    color: #3ac9a0;
    transition: all 0.3s ease;
}

.flagship-product:hover .product-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: #4ff0b7;
}

.product-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #0c221f;
    font-weight: 700;
}

.product-desc {
    color: #555;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #0D2C4F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    gap: 10px;
}

.product-cta:hover {
    background-color: #00A8E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.product-cta svg {
    transition: transform 0.3s ease;
}

.product-cta:hover svg {
    transform: rotate(45deg);
}

/* Why Weavyz Section */
.why-weavyz-section {
    margin: 60px auto;
    max-width: 800px;
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #0D2C4F;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00A8E8;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.why-point:hover {
    background-color: rgba(0, 168, 232, 0.08);
    transform: translateX(5px);
}

.point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon svg {
    width: 24px;
    height: 24px;
    color: #00A8E8;
    transition: all 0.3s ease;
}

.why-point:hover .point-icon svg {
    transform: scale(1.2);
    color: #0D2C4F;
}

.why-point p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #555;
}

.why-summary {
    background-color: rgba(12, 34, 31, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.why-summary p {
    font-size: 1.6rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #0D2C4F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    gap: 10px;
}

.why-cta:hover {
    background-color: #00A8E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.why-cta svg {
    transition: transform 0.3s ease;
}

.why-cta:hover svg {
    transform: rotate(20deg);
}

.company-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.company-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.company-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00A8E8;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.company-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.company-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: #3ac9a0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-icon {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.company-card:hover .company-link {
    color: #0c221f;
}

.company-card:hover .link-icon {
    transform: translateX(3px);
}

.company-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #00A8E8;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
    transition: all 0.3s ease;
}

.company-icon i {
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

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

.company-card:hover .company-icon i {
    transform: scale(1.1);
}

.company-name {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #0c221f;
    font-weight: 700;
}

.company-desc {
    color: #555;
    font-size: 1.6rem;
    line-height: 1.6;
}

.ecosystem-companies {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.ecosystem-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
    width: 100%;
}

.ecosystem-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ecosystem-quote {
    font-style: italic;
    margin-bottom: 20px;
    color: #2D3748;
    position: relative;
    padding-left: 20px;
}

.ecosystem-quote::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -15px;
    font-size: 40px;
    color: rgba(0, 168, 232, 0.3);
    font-family: Georgia, serif;
    opacity: var(--quote-opacity, 1);
    transform: translateX(var(--quote-x, 0));
    transition: all 0.3s ease;
}

.ecosystem-author {
    font-weight: 700;
    color: #0c221f;
}

/* Connect Section */
#connect {
    background-color: #f5f5f5;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.connect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
}

.connect-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.connect-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0D2C4F, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.connect-header h2::before,
.connect-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.connect-header h2::before {
    top: 0;
    left: 0;
}

.connect-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00A8E8);
}

.connect-header h2.revealed::before,
.connect-header h2.revealed::after {
    width: 100%;
}

.connect-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4A5568;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.connect-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00A8E8;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.connect-card:hover::after {
    transform: scaleX(1);
}

.connect-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 168, 232, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.connect-icon svg {
    width: 35px;
    height: 35px;
    color: #00A8E8;
    transition: all 0.3s ease;
}

.connect-card:hover .connect-icon {
    background-color: rgba(0, 168, 232, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.connect-card:hover .connect-icon svg {
    color: #0D2C4F;
}

.connect-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0c221f;
}

.connect-card p {
    color: #4A5568;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00A8E8;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connect-link svg {
    transition: transform 0.3s ease;
}

.connect-link:hover {
    color: #0D2C4F;
}

.connect-link:hover svg {
    transform: translateX(5px);
}

.contact-email {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-email-title {
    font-size: 2.4rem;
    color: #0D2C4F;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-email-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00A8E8;
    transition: width 0.3s ease;
}

.contact-email:hover .contact-email-title::after {
    width: 100px;
}

.email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(0, 168, 232, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email:hover .email-container {
    background-color: rgba(0, 168, 232, 0.15);
    transform: scale(1.05);
}

.email-container svg {
    color: #00A8E8;
    transition: all 0.3s ease;
}

.contact-email:hover .email-container svg {
    transform: rotate(-10deg) scale(1.1);
}

.email-link {
    font-size: 2rem;
    font-weight: 600;
    color: #0D2C4F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #00A8E8;
}

.contact-message {
    font-size: 1.6rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-email {
        padding: 30px 20px;
    }
    
    .contact-email-title {
        font-size: 2rem;
    }
    
    .email-container {
        padding: 15px;
        flex-direction: column;
    }
    
    .email-link {
        font-size: 1.6rem;
    }
}

/* Contact Section (Legacy) */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0c221f, #3ac9a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.contact-header h2::before,
.contact-header h2::after {
    content: '';
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #4ff0b7, rgba(255, 255, 255, 0));
    width: 0;
    transition: width 0.8s ease;
}

.contact-header h2::before {
    top: 0;
    left: 0;
}

.contact-header h2::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #4ff0b7);
}

.contact-header h2.revealed::before,
.contact-header h2.revealed::after {
    width: 100%;
}

.contact-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.contact-block {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-block h3 {
    color: #0c221f;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    color: #3ac9a0;
    margin-right: 10px;
}

.contact-block p {
    color: #555;
    font-size: 1.6rem;
    line-height: 1.6;
}

.contact-link {
    color: #3ac9a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0c221f;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #0c221f;
}

.contact-link:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background-color: #0D2C4F;
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-text {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.footer-logo-text:hover {
    color: #00A8E8;
}

.footer-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00A8E8;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-nav h4,
.footer-products h4,
.footer-contact h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav ul,
.footer-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-products li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-products a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.5rem;
}

.footer-nav a:hover,
.footer-products a:hover,
.footer-contact a:hover {
    color: #00A8E8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #00A8E8;
}

.footer-social svg {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
}

.copyright p {
    margin: 0;
    font-size: 1.4rem;
}

/* Return to Top Button */
.return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00A8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.return-to-top:hover {
    background-color: #0D2C4F;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.return-to-top svg {
    stroke: white;
    transition: all 0.3s ease;
}

.return-to-top:hover svg {
    transform: translateY(-3px);
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        margin-bottom: 40px;
    }
}

/* Menu hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2D3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-container.in-hero .hamburger span {
    background-color: #2D3748;
}

#mobile-menu {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.6rem;
    }
    
    .timeline-line, .timeline-progress {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: 65px;
        right: auto;
    }
    
    /* Metro grid mobile adjustments */
    .metro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .metro-tile {
        grid-column: span 1 !important;
    }
    
    .large-tile {
        grid-row: span 1;
    }
    
    .hero-content div {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero-title, .char {
        font-size: 3.5rem !important;
    }
    
    .header {
        padding: 16px;
        border-radius: 30px;
    }
    
    .nav-area {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-right: 10px;
    }
    
    .cta-container {
        display: none;
    }
    
    .mobile-cta {
        display: block;
        margin-top: 20px;
    }
    
    #mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        margin-top: 15px;
    }
    
    .header-container.in-hero #mobile-menu {
        background-color: white;
    }
    
    #mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        font-size: 18px;
    }
    
    /* Hover effect for mobile */
    .nav-item:hover::after {
        width: 50%; /* Shorter underline on mobile */
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .testimonials {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
    }
}
