* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a1929;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Use the original cabin photo as background (place file in /assets) */
    --hero-overlay-strong: 0.58;
    --hero-overlay-mid: 0.32;
    background-image:
        linear-gradient(
            135deg,
            rgba(10, 25, 41, var(--hero-overlay-strong)) 0%,
            rgba(10, 25, 41, var(--hero-overlay-mid)) 45%,
            rgba(10, 25, 41, var(--hero-overlay-strong)) 100%
        ),
        url("assets/skyflicks-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: 0;
    /* Hide the synthetic cabin layer when using the real photo background */
    display: none;
}

.airplane-cabin {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1000px;
}

.cabin-seats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 10%;
}

.seat-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.seat-row::before,
.seat-row::after {
    content: '';
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.overhead-bins {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-passenger {
    position: absolute;
    bottom: 15%;
    left: 15%;
    z-index: 1;
}

.passenger-head {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px 30px 5px 5px;
    position: relative;
    margin-bottom: 10px;
}

.vr-glasses {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    display: flex;
    gap: 5px;
    padding: 3px;
    border: 1px solid rgba(66, 153, 225, 0.3);
}

.vr-lens {
    flex: 1;
    background: rgba(66, 153, 225, 0.2);
    border-radius: 3px;
    box-shadow: inset 0 0 10px rgba(66, 153, 225, 0.5);
}

.passenger-phone {
    width: 80px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 3px;
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.6);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.6), rgba(100, 100, 255, 0.6));
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            transparent 10px, 
            rgba(255, 255, 255, 0.1) 10px, 
            rgba(255, 255, 255, 0.1) 20px);
}

.hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: #4299e1;
    margin: 30px auto;
}

.hero-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #4299e1;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Video Showcase Section */
.video-showcase {
    background-color: #0a1929;
}

.video-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 20px;
}

.video-placeholder {
    flex: 0 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 220px;
    height: 391px; /* 9:16 aspect ratio */
}

@media (max-width: 768px) {
    .video-grid {
        flex-wrap: wrap;
    }
    
    .video-placeholder {
        width: calc(50% - 10px);
        height: auto;
        padding-bottom: 177.78%; /* 9:16 aspect ratio */
    }
}

.vertical-video {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.play-button {
    font-size: 4rem;
    color: #4299e1;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    color: #63b3ed;
}

.video-label {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.vertical-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Micro-Dramas Section */
.micro-dramas {
    background-color: #0f2537;
}

.text-content .description {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.market-snapshot {
    margin-top: 30px;
    padding: 20px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 8px;
}

.market-snapshot h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.snapshot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.snapshot-item .icon {
    font-size: 1.5rem;
    width: 30px;
}

/* Chart Content */
.chart-content {
    background: rgba(66, 153, 225, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.chart-title {
    color: #4299e1;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.chart-description {
    color: #e2e8f0;
    margin-bottom: 30px;
}

.highlight {
    color: #f6ad55;
    font-weight: 600;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    min-height: 300px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bar-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.bar {
    width: 120px;
    padding: 15px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.bar-2024 {
    background: #4299e1;
    height: 150px;
}

.bar-2030 {
    background: #fc8181;
    height: 250px;
}

.growth-arrow {
    font-size: 3rem;
    color: #f6ad55;
    align-self: center;
    margin-bottom: 50px;
}

.chart-source {
    color: #4299e1;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 20px;
}

/* Value Proposition */
.value-proposition {
    background-color: #0a1929;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.value-card {
    background: rgba(66, 153, 225, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #4299e1;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Entertainment Model */
.entertainment-model {
    background-color: #0f2537;
}

.steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.device-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-placeholder {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
}

.device-screen {
    width:350px;
    height:300px;
    background-image:url('./assets/everhub.jpg');
    background-size:cover;
    border-radius: 10px;

    
}

.model-image {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.device-info {
    color: #4299e1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.device-label {
    text-align: center;
    color: #4299e1;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Benefits Section */
.benefits {
    background-color: #0a1929;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

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

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Cost Comparison */
.cost-comparison {
    background-color: #0f2537;
}

.comparison-chart {
    margin-top: 40px;
}

.comparison-item {
    margin-bottom: 25px;
}

.comparison-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.comparison-bar {
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-align: right;
    transition: transform 0.3s ease;
}

.comparison-bar:hover {
    transform: scale(1.02);
}

.bar-traditional {
    background: #fc8181;
    width: 95%;
}

.bar-mount {
    background: #f6ad55;
    width: 17%;
}

.bar-skyflicks {
    background: #68d391;
    width: 6%;
}

.vr-features {
    padding-left: 40px;
}

@media (max-width: 968px) {
    .vr-features {
        padding-left: 0;
    }
}

.vr-feature-list {
    margin-top: 30px;
}

.vr-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.vr-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vr-feature p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Why Attract Section */
.why-attract {
    background-color: #0a1929;
    position: relative;
    overflow: hidden;
}

.attract-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Use the provided image for the left visual */
.why-attract-photo {
    /* Tweak this to show more of the image (lower value shows more top; higher shows more bottom) */
    --why-attract-pos-y: 22%;
    width: 100%;
    min-height: 520px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(
            135deg,
            rgba(10, 25, 41, 0.45) 0%,
            rgba(10, 25, 41, 0.18) 45%,
            rgba(10, 25, 41, 0.50) 100%
        ),
        url("assets/why-attract.jpg");
    background-size: cover;
    background-position: 50% var(--why-attract-pos-y);
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.attract-content {
    padding-left: 40px;
}

@media (max-width: 968px) {
    .attract-content {
        padding-left: 0;
    }
}

.attract-list {
    margin-top: 30px;
}

.attract-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.check-icon {
    color: #68d391;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.attract-item p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Beyond Cabin */
.beyond-cabin {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.beyond-cabin-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    overflow: hidden;
    z-index: 0;
}

.blurred-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 165, 0, 0.3) 0%, 
        rgba(255, 140, 0, 0.2) 50%,
        rgba(255, 200, 100, 0.3) 100%);
    position: relative;
    filter: blur(8px);
    transform: scale(1.1);
}

.photo-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.window-shadows {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 300px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 30px,
        transparent 30px,
        transparent 60px
    );
    transform: rotate(-5deg);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.warm-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 20% 30%,
        rgba(255, 200, 100, 0.4) 0%,
        transparent 60%
    );
}

.beyond-cabin .container {
    position: relative;
    z-index: 1;
    padding-top: 300px;
    padding-bottom: 80px;
}

.centered-description {
    text-align: center;
    color: #e2e8f0;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Partnership Section */
.partnership {
    background-color: #0f2537;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-placeholder {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
    border-radius: 15px;
    padding: 60px;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partnership-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(66, 153, 225, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    opacity: 0.6;
}

.handshake-icon {
    font-size: 8rem;
    z-index: 1;
    position: relative;
}

.partnership-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.partnership-content {
    padding-left: 40px;
}

@media (max-width: 968px) {
    .partnership-content {
        padding-left: 0;
    }
}

.partnership-list {
    margin-top: 30px;
}

.partnership-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.partnership-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.partnership-text h3 {
    color: #4299e1;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.partnership-text p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, rgba(10, 25, 41, 0.7) 0%, rgba(15, 37, 55, 0.8) 100%),
        url('./assets/contact-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 0;
    filter: blur(3px);
}

.airplane-on-runway {
    width: 100%;
    height: 100%;
    position: relative;
}

.runway {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, 
        rgba(66, 153, 225, 0.1) 0%,
        rgba(66, 153, 225, 0.15) 50%,
        rgba(66, 153, 225, 0.2) 100%);
}

.runway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(66, 153, 225, 0.6) 0px,
        rgba(66, 153, 225, 0.6) 50px,
        transparent 50px,
        transparent 100px
    );
}

.airplane-silhouette {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
}

.airplane-body {
    width: 200px;
    height: 60px;
    background: rgba(66, 153, 225, 0.3);
    border-radius: 30px;
    position: absolute;
    left: 50px;
    top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.airplane-wings {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 20px;
    background: rgba(66, 153, 225, 0.25);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.city-skyline {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(66, 153, 225, 0.15) 50%,
        rgba(66, 153, 225, 0.25) 100%);
    opacity: 0.7;
}

.city-skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(66, 153, 225, 0.3) 10%, transparent 20%),
        linear-gradient(90deg, transparent 30%, rgba(66, 153, 225, 0.3) 40%, transparent 50%),
        linear-gradient(90deg, transparent 60%, rgba(66, 153, 225, 0.3) 70%, transparent 80%);
    background-size: 100% 100%;
    mask-image: 
        linear-gradient(180deg, transparent 0%, black 20%),
        repeating-linear-gradient(90deg, 
            transparent 0px,
            transparent 50px,
            black 50px,
            black 80px);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-divider {
    width: 100px;
    height: 3px;
    background: #4299e1;
    margin: 30px auto;
}

.contact-info {
    margin-top: 40px;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 2;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-passenger {
        display: none;
    }
    
    .why-attract-photo {
        min-height: 380px;
        --why-attract-pos-y: 26%;
    }
    
    .beyond-cabin .container {
        padding-top: 200px;
    }
    
    .airplane-silhouette {
        width: 200px;
        height: 70px;
    }
    
    .airplane-body {
        width: 150px;
        height: 45px;
        left: 25px;
    }
    
    .airplane-wings {
        width: 200px;
    }
    
    /* Additional Mobile Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .content-grid {
        gap: 30px;
    }
    
    .video-grid {
        gap: 20px;
    }
    
    .play-button {
        font-size: 3rem;
    }
    
    .video-label {
        font-size: 1rem;
    }
    
    .step {
        gap: 15px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-content {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .partnership-placeholder {
        padding: 40px;
        min-height: 300px;
    }
    
    .handshake-icon {
        font-size: 6rem;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}
