
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,301,701,300,501,401,901,400&display=swap');

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

body {
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    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;
}

.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.8rem;
    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;
}

.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 {
    background-color: rgba(255, 255, 255, 0.15);
    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: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: rgb(12, 34, 31);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
    transition: all 0.3s ease;
}

.header-container.in-hero .nav-item {
    color: rgb(12, 34, 31);
}

.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: rgb(12, 34, 31);
    transition: width 0.3s ease;
}

.header-container.in-hero .nav-item::after {
    background-color: rgb(12, 34, 31);
}

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

.cta-button {
    background-color: rgb(12, 34, 31);
    color: white;
    border: 1px solid rgb(12, 34, 31);
    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(12, 34, 31, 0.9);
}

.header-container.in-hero .cta-button {
    background-color: rgb(12, 34, 31);
    color: white;
    border: 1px solid rgb(12, 34, 31);
}

.header-container.in-hero .cta-button:hover {
    background-color: rgba(12, 34, 31, 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: rgb(12, 34, 31);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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: 10;
}

.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;
}

#vanta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

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

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

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    perspective: 400px;
}

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


/* Services Section - Timeline Style */
#services {
    background-color: #fff;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* Metro Grid Layout */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(79, 240, 183, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
}

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

.services-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;
}

.services-header h2::before,
.services-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;
}

.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), #4ff0b7);
}

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

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

.metro-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
}

.metro-tile {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(20px);
}

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

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

/* Tile Sizes */
.large-tile {
    grid-column: span 6;
    grid-row: span 2;
    --order: 1;
}

.medium-tile {
    grid-column: span 6;
    grid-row: span 1;
    --order: 2;
}

.small-tile {
    grid-column: span 4;
    grid-row: span 1;
    --order: 3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .large-tile, .medium-tile {
        grid-column: span 12;
    }
    .small-tile {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .small-tile {
        grid-column: span 12;
    }
}

.tile-inner {
    height: 100%;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Category indicator */
.metro-tile::before {
    content: attr(data-category);
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: rgba(12, 34, 31, 0.1);
    color: rgb(12, 34, 31);
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.metro-tile:hover::before {
    background-color: rgba(79, 240, 183, 0.2);
    opacity: 1;
}

/* Hover effect layer */
.tile-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4ff0b7, #3ac9a0);
    transition: height 0.3s ease;
    z-index: 0;
}

.metro-tile:hover .tile-hover-effect {
    height: 8px;
}

.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: linear-gradient(90deg, #4ff0b7, #3ac9a0);
    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: linear-gradient(135deg, #4ff0b7, #3ac9a0);
    box-shadow: 0 10px 20px rgba(58, 201, 160, 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, #0c221f, #3ac9a0);
    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: #0c221f;
    transition: all 0.3s ease;
}

.metro-tile:hover .service-content h3 {
    color: #3ac9a0;
}

.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: linear-gradient(135deg, #4ff0b7, #3ac9a0);
    box-shadow: 0 10px 20px rgba(58, 201, 160, 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, #0c221f, #3ac9a0);
    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, #333, #555);
    -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, #0c221f, #3ac9a0);
    -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(79, 240, 183, 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="%234ff0b7" 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="%230c221f" 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="%233ac9a0" opacity="0.5"/><rect x="40" y="10" width="10" height="10" rx="2" fill="%233ac9a0" opacity="0.5"/><rect x="10" y="40" width="10" height="10" rx="2" fill="%233ac9a0" opacity="0.5"/><rect x="40" y="40" width="10" height="10" rx="2" fill="%233ac9a0" 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(12, 34, 31, 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, #0c221f, #3ac9a0);
    -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, #4ff0b7, 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), #4ff0b7);
}

.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: #0c221f;
    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 #4ff0b7;
}

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

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

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

.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(12, 34, 31, 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(79, 240, 183, 0.15);
    box-shadow: 0 5px 15px rgba(79, 240, 183, 0.2);
}

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

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

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

.step-icon i {
    font-size: 32px;
    color: rgb(12, 34, 31);
    transition: all 0.4s ease;
}

.quadrant:hover .step-icon i {
    transform: scale(1.2);
}

.quadrant:nth-child(1) .step-icon i {
    color: #4ff0b7;
}

.quadrant:nth-child(2) .step-icon i {
    color: #3ac9a0;
}

.quadrant:nth-child(3) .step-icon i {
    color: #0c221f;
}

.quadrant:nth-child(4) .step-icon i {
    color: #0c948c;
}

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

.quadrant h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(12, 34, 31);
    position: relative;
    display: inline-block;
}

.quadrant h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4ff0b7, transparent);
    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: #333;
}

/* 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="%230c221f" 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="%233ac9a0" 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="%234ff0b7"/></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, #0c221f, #3ac9a0);
    -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, #4ff0b7, 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), #4ff0b7);
}

.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: #0c221f;
    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: #0c221f;
    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(79, 240, 183, 0.2);
    line-height: 1;
}

.quote-highlight::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 5rem;
    color: rgba(79, 240, 183, 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(79, 240, 183, 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, #0c221f, #3ac9a0);
    -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, #4ff0b7, 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), #4ff0b7);
}

.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: #4ff0b7;
}

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

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

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

.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(79, 240, 183, 0.08);
}

.story-block:nth-child(2) .story-bg-shape {
    background-color: rgba(58, 201, 160, 0.08);
}

.story-block:nth-child(3) .story-bg-shape {
    background-color: rgba(12, 34, 31, 0.08);
}

.story-block:nth-child(4) .story-bg-shape {
    background-color: rgba(12, 148, 140, 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: #0c221f;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4ff0b7, transparent);
    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: linear-gradient(90deg, transparent, #4ff0b7);
}

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

.story-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #3ac9a0;
    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;
    }
}

/* 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(79, 240, 183, 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, #0c221f, #3ac9a0);
    -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, #4ff0b7, 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), #4ff0b7);
}

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

.ecosystem-subtitle {
    font-size: 2.4rem;
    margin: 50px 0 30px;
    color: #0c221f;
    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: linear-gradient(90deg, #4ff0b7, #3ac9a0);
}

.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: linear-gradient(90deg, #4ff0b7, #3ac9a0);
    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: linear-gradient(135deg, #4ff0b7, #3ac9a0);
    box-shadow: 0 10px 20px rgba(58, 201, 160, 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: #333;
    position: relative;
    padding-left: 20px;
}

.ecosystem-quote::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -15px;
    font-size: 40px;
    color: rgba(79, 240, 183, 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;
}

/* Contact Section */
.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: rgb(12, 34, 31);
    color: white;
    padding: 40px 0;
}

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

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

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgb(12, 34, 31);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-container.in-hero .hamburger span {
    background-color: rgb(12, 34, 31);
}

#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%;
    }
}
