/* Modern Dark Tech Theme for PolarBear Tech */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* "Glacium" Theme - Mint & Deep Sea Blue */
    --bg-dark: #020610;
    /* Deepest Black-Blue */
    --bg-grad-start: #083D56;
    /* Deep Sea Blue */
    --bg-grad-end: #020610;

    --bg-card: rgba(8, 80, 120, 0.25);
    /* Deep Blue Glass Base */
    --bg-card-hover: rgba(8, 80, 120, 0.4);
    --bg-border: rgba(154, 228, 203, 0.15);
    /* Mint border low opacity */

    /* Theme Colors */
    --primary: #9AE4CB;
    /* Fresh Mint */
    --primary-glow: rgba(154, 228, 203, 0.35);

    --accent: #085078;
    /* Deep Blue Accent */
    --accent-glow: rgba(8, 80, 120, 0.5);

    --success: #10B981;

    --text-main: #FFFFFF;
    /* White */
    --text-muted: #FFFFFF;
    /* White */
    --text-dim: #FFFFFF;
    /* White */
    --heading-color: #00BFFF;
    /* Bright Electric Blue */

    /* Neon Colors for Headings */
    --neon-cyan: #00D9FF;
    --neon-pink: #FF006E;
    --neon-green: #39FF14;
    --neon-purple: #BC13FE;

    --font-main: 'Inter', sans-serif;
    --glass-blur: blur(16px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    /* Deep Sea Gradient Background */
    background-image: url('../images/PBimg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* Ensure overflow hidden works */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 55, 109, 0.18) 0%, rgba(20, 50, 100, 0.15) 50%, rgba(15, 40, 85, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
}

html {
    overflow-x: hidden;
    /* Double safety */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: none;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #00BFFF;
    /* Bright Electric Blue - much more vibrant */
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    /* Yellow color - solid */
    text-shadow: none;
}

/* Icon Glow Effects for Headings */
h2:has-text("🧠"),
h2:has-text("🌐"),
h2:has-text("🏗️") {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Alternative approach for icon glow since :has-text isn't widely supported */
.about-content h2,
.platforms-summary h2,
.approach h2 {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: icon-glow 3s ease-in-out infinite alternate;
}

@keyframes icon-glow {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
}

h3 {
    color: #00BFFF;
    /* Bright Electric Blue - much more vibrant */
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
    font-weight: 700;
}

h4,
h5,
h6 {
    color: #FFD700;
    /* Yellow color - solid */
    text-shadow: none;
    font-weight: 700;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.mb-1 {
    margin-bottom: 0.5rem;
}

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

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

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.7) 0%, rgba(20, 25, 45, 0.6) 50%, rgba(15, 20, 35, 0.7) 100%);
    /* Light black icy gradient */
    backdrop-filter: blur(25px);
    /* Heavy frost effect */
    -webkit-backdrop-filter: blur(25px);
    position: fixed;
    /* Fixed to top */
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid rgba(154, 228, 203, 0.2);
    /* Mint border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    /* Enhanced shadow with icy inset glow */
}

.nav .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--primary), #fff, #38BDF8);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
}

.nav .logo:hover {
    background-position: right center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    /* More breathing room */
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(8, 80, 120, 0.25) 0%, rgba(0, 102, 153, 0.2) 100%), url('../images/PolarBuddyimage.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: left;
    z-index: 2;
    position: relative;
    order: 2;
    /* Move content to right side */
    padding-left: 1rem;
    flex: 1;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    position: relative;
    order: 1;
    /* Move image to left side */
    padding-right: 2rem;
    flex: 0 0 auto;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 30px rgba(135, 206, 235, 0.6)) drop-shadow(0 0 60px rgba(135, 206, 235, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 20px;
    animation: gentle-glow 3s ease-in-out infinite alternate;
}

.hero-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 40px rgba(135, 206, 235, 0.8)) drop-shadow(0 0 80px rgba(135, 206, 235, 0.4));
}

/* Sparkle container */
.hero-image::before,
.hero-image::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(135, 206, 235, 0.8);
    border-radius: 50%;
    animation: sparkle-float 4s linear infinite;
    box-shadow: 0 0 12px rgba(135, 206, 235, 0.6);
}

.hero-image::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-image::after {
    bottom: 25%;
    right: 20%;
    animation-delay: 2s;
}

/* Additional moving sparkle effects */
.sparkle-1,
.sparkle-2,
.sparkle-3,
.sparkle-4 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(135, 206, 235, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.sparkle-1 {
    top: 35%;
    left: 10%;
    animation: sparkle-move-1 5s linear infinite;
    box-shadow: 0 0 8px rgba(135, 206, 235, 0.5);
}

.sparkle-2 {
    top: 60%;
    right: 15%;
    animation: sparkle-move-2 6s linear infinite;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.6);
    width: 5px;
    height: 5px;
}

.sparkle-3 {
    top: 15%;
    right: 25%;
    animation: sparkle-move-3 4.5s linear infinite;
    box-shadow: 0 0 6px rgba(135, 206, 235, 0.4);
    width: 3px;
    height: 3px;
}

.sparkle-4 {
    bottom: 15%;
    left: 25%;
    animation: sparkle-move-4 7s linear infinite;
    box-shadow: 0 0 12px rgba(135, 206, 235, 0.7);
    width: 6px;
    height: 6px;
}

/* Different sparkle movement animations */
@keyframes sparkle-move-1 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(15px, -25px);
        opacity: 0;
    }
}

@keyframes sparkle-move-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translate(-20px, -30px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes sparkle-move-3 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translate(-10px, -15px);
        opacity: 0;
    }
}

@keyframes sparkle-move-4 {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    75% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        transform: translate(25px, -35px) scale(0.3);
        opacity: 0;
    }
}

/* Gentle glow animation */
@keyframes gentle-glow {
    0% {
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 25px rgba(135, 206, 235, 0.4)) drop-shadow(0 0 50px rgba(135, 206, 235, 0.2));
    }

    100% {
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 35px rgba(135, 206, 235, 0.7)) drop-shadow(0 0 70px rgba(135, 206, 235, 0.3));
    }
}

/* Sparkle floating animation */
@keyframes sparkle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0;
    }
}

/* Background Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Changed from 600px to avoid fixed width overflow */
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero p {
    max-width: 550px;
    margin: 0 0 3rem 0;
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    /* Wider buttons */
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover::before {
    opacity: 0.2;
}

.btn.primary {
    /* Yellow Gradient */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    color: #000000;
    /* Black text on yellow */
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.98) 0%, rgba(0, 255, 255, 0.98) 100%);
    /* Neon cyan hover */
    color: #000000;
    /* Black text for visibility on neon */
}

.btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(154, 228, 203, 0.25);
    color: var(--text-main);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: var(--primary);
    /* Mint Border on Hover */
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(154, 228, 203, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Sections */
section {
    padding: 6rem 2rem;
    /* Increased padding */
    position: relative;
}

section:not(.hero) {
    background-image: url('../images/PBimg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 16, 0.6);
    pointer-events: none;
    z-index: -1;
}

section.platforms-summary {
    background-image: url('../images/PBimg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

section.platforms-summary h2 {
    color: #FFD700;
    /* Yellow - solid */
    text-shadow: none;
}

section h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Cards (Glassmorphism) */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Slightly wider cards */
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, rgba(8, 80, 120, 0.15) 0%, rgba(20, 60, 100, 0.1) 100%);
    border: 1.5px solid rgba(200, 230, 255, 0.3);
    /* Icy blue border */
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -1px 2px rgba(0, 150, 200, 0.1);
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(200, 230, 255, 0.6);
    box-shadow: 0 25px 50px rgba(8, 80, 120, 0.25), 0 0 30px rgba(200, 230, 255, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(15, 90, 140, 0.2) 0%, rgba(20, 80, 130, 0.15) 100%);
}

.product-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.card img:not(.product-logo) {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    /* More space below icon */
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(154, 228, 203, 0.1) 0%, rgba(154, 228, 203, 0.05) 100%);
    padding: 14px;
    border: 1px solid rgba(154, 228, 203, 0.1);
}

.card h3,
.card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    /* Prevent overflow */
    overflow-wrap: break-word;
    line-height: 1.3;
}

@media (max-width: 768px) {

    .edubuddy-section,
    .hotelbuddy-section,
    .expensebuddy-section,
    .pulsebuddy-section {
        padding: 1.5rem;
    }

    .edubuddy-content,
    .hotelbuddy-content,
    .expensebuddy-content,
    .pulsebuddy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .platform-logo img {
        width: 170px;
        height: 170px;
    }

    .logo-section,
    .edubuddy-logo-section {
        order: -1;
    }
}


.card p {
    font-size: 1.1rem;
    /* Clearer text */
    margin-bottom: 2.5rem;
    flex-grow: 1;
    color: #94A3B8;
    /* Light Slate */
    line-height: 1.7;
}

.card a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    gap: 0.5rem;
}

.card a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

/* Features List (About Page etc) - Stat Card Style */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.features li {
    list-style: none;
    /* Clean icy stat card */
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.1) 0%, rgba(150, 200, 255, 0.05) 100%);
    border: 1px solid rgba(200, 230, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--text-muted);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: center;
}

/* Icy sheen effect */
.features li::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Frost effect */
.features li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.features li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 230, 255, 0.5);
}

.features li strong {
    display: block;
    color: #00BFFF;
    /* Bright Electric Blue for titles */
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

/* About Layout Section */
.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    background: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-smooth);
}

.about-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.about-content {
    padding-right: 1rem;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #00BFFF;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Responsive Design for About Layout */
@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-content h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-layout {
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image img {
        max-width: 800px;
    }
}

/* Corporate Info / Footer Top */
.corporate-info {
    background: linear-gradient(to bottom, var(--bg-dark), #051b2e);
    border-top: 1px solid var(--border-color);
}

/* Footer - Premium Redesign */
footer {
    background: linear-gradient(to bottom, #051b2e 0%, #000 100%);
    /* Deep Gradient */
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(154, 228, 203, 0.15);
    /* Mint Top Border */
    color: var(--text-muted);
    position: relative;
}

footer::before {
    /* Top Glow */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
}

footer h4 {
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 1rem;
}

footer ul li a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    /* Slide effect */
}

.copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 0.05em;
}

/* Responsive */
/* .nav.scrolled-down removed for fixed behavior */

.nav {
    transition: background-color 0.3s ease;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    margin-left: auto;
    /* Push to right just in case */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.25rem;
        /* Slightly reduced padding */
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* Full width for better immersion */
        max-width: 100%;
        background: linear-gradient(to bottom, #020610 0%, #083D56 100%);
        /* Theme Gradient */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3.5rem;
        /* More spacing */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        /* Ensure it is behind the hamburger but above content */
        padding: 2rem;
        /* Safety padding */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        /* Larger text */
        font-weight: 700;
        letter-spacing: -0.02em;
        opacity: 0;
        /* Animate in */
        transform: translateY(20px);
        transition: 0.3s ease forwards;
        color: var(--text-main);
    }

    /* Staggered Animation for Links */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    /* Animate Hamburger to X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--primary);
        /* Mint when active */
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--primary);
    }

    /* Hero Responsive */
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
        padding-left: 0;
    }

    .hero-image {
        order: 1;
        justify-content: center;
        padding-left: 0;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
        /* Adjusted padding */
    }

    .hero h1 {
        font-size: 2.25rem;
        /* Balanced size */
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.05rem;
        /* Readable text */
        line-height: 1.6;
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0.9rem;
        /* Easier to tap */
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0;
        gap: 1rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 1.25rem;
    }

    /* Fix Grid Overflow */
    .platform-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Allow smaller cards */
        gap: 1.5rem;
        /* Reduce gap */
    }

    .card {
        padding: 1.75rem;
        /* Reduce padding inside cards */
    }
}

/* New Utilities for Redesign */
.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    background: rgba(154, 228, 203, 0.15);
    /* Mint Tint */
    color: var(--primary);
    border: 1px solid rgba(154, 228, 203, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(154, 228, 203, 0.1);
}

.badge.accent {
    background: rgba(8, 80, 120, 0.3);
    color: #38BDF8;
    /* Sky Blue */
    border-color: rgba(56, 189, 248, 0.3);
}

/* Impact Stats Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-item {
    /* Clean icy card */
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.1) 0%, rgba(150, 200, 255, 0.05) 100%);
    border: 1px solid rgba(200, 230, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Icy sheen effect */
.impact-item::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 20px;
}

/* Frost effect */
.impact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.impact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 230, 255, 0.5);
}

.impact-item h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #00BFFF;
    /* Bright Electric Blue for numbers */
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(135, 206, 235, 0.6);
}

.impact-item p {
    color: #bfc9d6;
    /* muted cool gray for labels */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* Enhanced Features List - Using Icy Stat Card Style from above */

/* --- Premium Features Page Styles --- */

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Feature Card (Glass on Glass) */
.feature-card.glass-panel {
    background: transparent;
    /* Increased opacity for icy look */
    border: 1.5px solid rgba(154, 228, 203, 0.3);
    /* Brighter mint border */
    border-top: 1.5px solid rgba(255, 255, 255, 0.4);
    /* Top highlight */
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.feature-card.glass-panel:hover {
    background: transparent;
    border-color: rgba(154, 228, 203, 0.5);
    border-top-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(8, 80, 120, 0.2), 0 0 25px rgba(154, 228, 203, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

/* Feature Header Typography */
.feature-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.text-primary {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.text-success {
    color: var(--success);
    border-bottom-color: var(--success);
}

.text-accent {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    /* Stack label and text for cleaner look */
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* Highlighted Text (Labels) */
.highlight-text {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

/* PulseBuddy Premium Card */
.pulse-card {
    background: linear-gradient(135deg, rgba(8, 80, 120, 0.15) 0%, rgba(2, 6, 16, 0.6) 100%);
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.pulse-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 50px rgba(8, 80, 120, 0.1);
    pointer-events: none;
}

.coming-soon-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--accent);
    color: var(--accent) !important;
    font-weight: 600;
}

.simple-list li {
    display: block;
    /* Regular list behavior */
}

/* Pulse Animation for Badge or Status */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 80, 120, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(8, 80, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8, 80, 120, 0);
    }
}

.coming-soon-item strong {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(8, 80, 120, 0.2);
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    animation: pulse-glow 2s infinite;
}

/* Ecosystem Header Box */
.ecosystem-header-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem 3.5rem;
    background: linear-gradient(135deg, rgba(8, 80, 120, 0.2) 0%, rgba(20, 60, 100, 0.15) 100%);
    border: 1.5px solid rgba(154, 228, 203, 0.4);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -1px 2px rgba(0, 150, 200, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icy sheen effect on header box */
.ecosystem-header-box::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 24px;
}

/* Frost effect on header box */
.ecosystem-header-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.ecosystem-header-box:hover {
    border-color: rgba(154, 228, 203, 0.7);
    box-shadow: 0 15px 40px rgba(8, 80, 120, 0.25), 0 0 30px rgba(154, 228, 203, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(8, 80, 120, 0.25) 0%, rgba(20, 60, 100, 0.2) 100%);
}

.ecosystem-header-box h2 {
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Buddy Ecosystem Alternating Layout */
.buddy-ecosystem {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.buddy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 2rem;
    /* Remove card styling - no background or borders */
    transition: all 0.3s ease;
}

/* Increased spacing for 2nd and 4th products (HotelBuddy and PulseBuddy) */
.buddy-row:nth-child(2),
.buddy-row:nth-child(4) {
    gap: 6rem;
}

.buddy-row:hover {
    transform: translateY(-4px);
}

.buddy-row:last-child {
    margin-bottom: 0;
}

.buddy-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buddy-logo img {
    width: 280px;
    /* Larger logo size */
    height: 280px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.buddy-row:hover .buddy-logo img {
    transform: scale(1.08);
    /* Glowing effect on hover */
    filter: drop-shadow(0 0 30px rgba(154, 228, 203, 0.6)) drop-shadow(0 0 60px rgba(154, 228, 203, 0.4)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 50px rgba(154, 228, 203, 0.3);
}

.buddy-content {
    padding: 1rem 0;
}

.buddy-content h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 20%, #E0F2FE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buddy-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Feature List Styling - Removed as we're using paragraphs now */

.buddy-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    color: #000000;
    /* Black text on yellow */
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.buddy-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.buddy-link:hover::before {
    opacity: 0.2;
}

.buddy-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.98) 0%, rgba(0, 255, 255, 0.98) 100%);
    /* Neon cyan hover */
    color: #000000;
    /* Black text for visibility on neon */
}

/* Coming Soon Styling */
.buddy-coming-soon {
    opacity: 0.85;
}

.coming-soon-text {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(8, 80, 120, 0.2);
    border-radius: 6px;
    border: 1px dashed var(--accent);
    text-align: center;
    animation: pulse-glow 2s infinite;
}

/* Right-aligned content (content on left, logo on right) */
.buddy-row-right .buddy-content {
    order: 1;
}

.buddy-row-right .buddy-logo {
    order: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ecosystem-header-box {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }

    .buddy-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Reset spacing for mobile - all rows get same spacing */
    .buddy-row:nth-child(2),
    .buddy-row:nth-child(4) {
        gap: 2rem;
    }

    .buddy-row-right .buddy-content,
    .buddy-row-right .buddy-logo {
        order: initial;
    }

    .buddy-logo img {
        width: 200px;
        height: 200px;
    }

    .buddy-content h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .buddy-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .buddy-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ecosystem-header-box {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 18px;
    }

    .ecosystem-header-box h2 {
        font-size: 2rem;
    }

    .buddy-ecosystem {
        padding: 1rem 0;
    }

    .buddy-row {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }

    .buddy-logo img {
        width: 160px;
        height: 160px;
    }

    .buddy-content h3 {
        font-size: 1.7rem;
    }

    .buddy-content p {
        font-size: 0.95rem;
    }
}

/* ===== TIMELINE INFOGRAPHIC STYLES ===== */

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

/* Vertical connecting line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(154, 228, 203, 0.8) 0%, rgba(154, 228, 203, 0.2) 100%);
    top: 0;
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Alternate left and right positioning */
.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even)>* {
    direction: ltr;
}

/* Circle with number */
.timeline-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(154, 228, 203, 0.4), 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Circle colors - gradient for each buddy */
.timeline-item:nth-child(1) .timeline-circle {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF5080 100%);
}

.timeline-item:nth-child(2) .timeline-circle {
    background: linear-gradient(135deg, #9D6BFF 0%, #7C3AED 100%);
}

.timeline-item:nth-child(3) .timeline-circle {
    background: linear-gradient(135deg, #6BCDFF 0%, #00B4D8 100%);
}

.timeline-item:nth-child(4) .timeline-circle {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.timeline-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(154, 228, 203, 0.8), 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Feature box */
.timeline-content {
    background: linear-gradient(135deg, rgba(8, 80, 120, 0.15) 0%, rgba(20, 60, 100, 0.1) 100%);
    border: 1.5px solid rgba(200, 230, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Icy sheen effect */
.timeline-content::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 20px;
}

/* Frost effect */
.timeline-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.timeline-content:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 230, 255, 0.6);
    box-shadow: 0 25px 50px rgba(8, 80, 120, 0.25), 0 0 30px rgba(200, 230, 255, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(15, 90, 140, 0.2) 0%, rgba(20, 80, 130, 0.15) 100%);
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
}

.timeline-content p {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.timeline-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, rgba(154, 228, 203, 0.2) 0%, rgba(154, 228, 203, 0.1) 100%);
    border: 1px solid rgba(154, 228, 203, 0.5);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(154, 228, 203, 0.2);
    transition: all 0.3s ease;
}

.timeline-badge:hover {
    background: linear-gradient(135deg, rgba(154, 228, 203, 0.3) 0%, rgba(154, 228, 203, 0.2) 100%);
    box-shadow: 0 0 25px rgba(154, 228, 203, 0.4);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(154, 228, 203, 0.15);
    border: 1.5px solid rgba(154, 228, 203, 0.3);
    border-radius: 12px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon {
    background: rgba(154, 228, 203, 0.25);
    border-color: rgba(154, 228, 203, 0.6);
    transform: scale(1.1);
}

.timeline-features {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.timeline-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.timeline-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.timeline-features li:last-child {
    margin-bottom: 0;
}

.timeline-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    color: #000000;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.timeline-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.98) 0%, rgba(0, 255, 255, 0.98) 100%);
    color: #000000;
    border-color: rgba(0, 217, 255, 0.8);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-container::before {
        left: 45px;
        transform: translateX(-50%);
    }

    .timeline-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .timeline-content {
        padding: 2rem;
        margin-left: 60px;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 1.5rem 1rem;
    }

    .timeline-item {
        margin-bottom: 2.5rem;
    }

    .timeline-circle {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .timeline-content {
        padding: 1.5rem;
        margin-left: 50px;
        border-radius: 16px;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

/* ===== HOTELBUDDY, EXPENSEBUDDY, PULSEBUDDY TIMELINE STYLES ===== */

.hotelbuddy-section,
.expensebuddy-section,
.pulsebuddy-section {
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.1) 0%, rgba(150, 200, 255, 0.05) 100%);
    border: 1px solid rgba(200, 230, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 3rem auto;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    width: 100%;
    max-width: 750px;
}

.hotelbuddy-section::after,
.expensebuddy-section::after,
.pulsebuddy-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 20px;
}

.hotelbuddy-section::before,
.expensebuddy-section::before,
.pulsebuddy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hotelbuddy-section:hover,
.expensebuddy-section:hover,
.pulsebuddy-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 230, 255, 0.5);
}

.hotelbuddy-container,
.expensebuddy-container,
.pulsebuddy-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hotelbuddy-header,
.expensebuddy-header,
.pulsebuddy-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hotelbuddy-header h2,
.expensebuddy-header h2,
.pulsebuddy-header h2 {
    font-size: 2.5rem;
    margin: 0.8rem 0;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hotelbuddy-header p,
.expensebuddy-header p,
.pulsebuddy-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.hotelbuddy-content,
.expensebuddy-content,
.pulsebuddy-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5rem;
}

.logo-section .logo-badge {
    margin-bottom: 0;
}

.logo-section .platform-logo img {
    width: 180px;
    height: 180px;
}

.platform-actions {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.platform-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    color: #0d2a3a;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(154, 228, 203, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.platform-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 228, 203, 0.5);
}

/* Responsive Design for Buddy Sections */
@media (max-width: 768px) {
    .hotelbuddy-section,
    .expensebuddy-section,
    .pulsebuddy-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .hotelbuddy-container,
    .expensebuddy-container,
    .pulsebuddy-container {
        width: 100%;
        max-width: 100%;
    }

    .hotelbuddy-content,
    .expensebuddy-content,
    .pulsebuddy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .hotelbuddy-header h2,
    .expensebuddy-header h2,
    .pulsebuddy-header h2 {
        font-size: 2rem;
    }

    .logo-section {
        order: -1;
    }

    .logo-section .platform-logo img {
        width: 180px;
        height: 180px;
    }
}

/* ===== EDUBUDDY TIMELINE INFOGRAPHIC STYLES ===== */
.edubuddy-section {
    /* Clean icy card - sized to content */
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.1) 0%, rgba(150, 200, 255, 0.05) 100%);
    border: 1px solid rgba(200, 230, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 3rem auto;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    width: 100%;
    max-width: 750px;
}

/* Icy sheen effect */
.edubuddy-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(-12deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 20px;
}

/* Frost effect */
.edubuddy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.edubuddy-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 230, 255, 0.5);
}

.edubuddy-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.edubuddy-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF5080 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 12px rgba(255, 107, 157, 0.3);
}

.edubuddy-header h2 {
    font-size: 2.5rem;
    margin: 0.8rem 0;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edubuddy-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.edubuddy-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
}

.features-timeline {
    position: relative;
    padding: 0.5rem 0;
    width: 100%;
    min-width: 320px;
    max-width: 400px;
}

.timeline-line {
    position: absolute;
    left: 22px;
    top: 22px;
    bottom: 22px;
    width: 3px;
    background: linear-gradient(180deg, #FF6B9D 0%, #9D6BFF 25%, #6BCDFF 50%, #FFD700 100%);
    border-radius: 2px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-number {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF5080 100%);
}

.feature-item:nth-child(3) .feature-number {
    background: linear-gradient(135deg, #9D6BFF 0%, #7C3AED 100%);
}

.feature-item:nth-child(4) .feature-number {
    background: linear-gradient(135deg, #6BCDFF 0%, #00B4D8 100%);
}

.feature-item:nth-child(5) .feature-number {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
}

.feature-info {
    flex: 1;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #9AE4CB;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(154, 228, 203, 0.2) 0%, rgba(0, 217, 255, 0.15) 100%);
    border: 1.5px solid rgba(154, 228, 203, 0.4);
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(154, 228, 203, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(154, 228, 203, 0.6), 0 0 40px rgba(0, 217, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(154, 228, 203, 0.35) 0%, rgba(0, 217, 255, 0.25) 100%);
    border-color: rgba(154, 228, 203, 0.7);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: none;
    overflow: visible;
    display: block;
    word-wrap: break-word;
    white-space: normal;
}

.edubuddy-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

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

.platform-logo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(154, 228, 203, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.platform-logo img:hover {
    transform: scale(1.03);
    border-color: rgba(154, 228, 203, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.logo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    color: #0d2a3a;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(154, 228, 203, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 228, 203, 0.6);
}

.platform-description h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-highlights li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlights li:last-child {
    border-bottom: none;
}

.edubuddy-actions {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.edubuddy-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    color: #0d2a3a;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(154, 228, 203, 0.3);
    transition: all 0.3s ease;
}

.edubuddy-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 228, 203, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .edubuddy-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .edubuddy-container {
        width: 100%;
        max-width: 100%;
    }

    .edubuddy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .features-timeline {
        min-width: auto;
        width: 100%;
    }

    .edubuddy-logo-section {
        order: -1;
        justify-content: center;
        padding: 0;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .feature-number {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }

    .feature-title,
    .feature-desc {
        white-space: normal;
        text-align: center;
        max-height: none;
        overflow: visible;
        display: block;
    }

    .timeline-line {
        display: none;
    }

    .platform-logo img {
        width: 180px;
        height: 180px;
    }

    .edubuddy-header h2 {
        font-size: 2rem;
    }
}

/* Timeline Logo Wrapper for Buddy Platforms */
.timeline-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.timeline-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(154, 228, 203, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-logo img:hover {
    transform: scale(1.05);
    border-color: rgba(154, 228, 203, 0.6);
    box-shadow: 0 12px 40px rgba(154, 228, 203, 0.4);
}

.timeline-logo-wrapper .logo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #9AE4CB 0%, #00D9FF 100%);
    color: #0d2a3a;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(154, 228, 203, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.timeline-logo-wrapper .logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 228, 203, 0.6);
}
/* ===== UNIFIED LANDSCAPE PLATFORM CARD ===== */

.edubuddy-section,
.hotelbuddy-section,
.expensebuddy-section,
.pulsebuddy-section {
    max-width: 1000px;
    padding: 2.5rem 3rem;
}

/* Shared container */
.edubuddy-content,
.hotelbuddy-content,
.expensebuddy-content,
.pulsebuddy-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

/* Timeline area */
.features-timeline {
    max-width: none;
    min-width: auto;
}

/* Logo area */
.edubuddy-logo-section,
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Standardized logo sizing */
.platform-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(154, 228, 203, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.platform-logo img:hover {
    transform: scale(1.05);
    border-color: rgba(154, 228, 203, 0.6);
    box-shadow: 0 18px 50px rgba(154, 228, 203, 0.35);
}

/* Better vertical spacing */
.feature-item {
    margin-bottom: 1.8rem;
}

.feature-title {
    font-size: 1rem;
}

.feature-desc {
    font-size: 0.9rem;
}

/* Header spacing */
.edubuddy-header,
.hotelbuddy-header,
.expensebuddy-header,
.pulsebuddy-header {
    margin-bottom: 2rem;
}

/* Action button alignment */
.edubuddy-actions,
.platform-actions {
    margin-top: 2rem;
}
/* Stronger typography */
.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Slightly larger number circles */
.feature-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}
/* ===== PLATFORM LANDSCAPE CARDS ===== */

.platforms-section {
    padding: 4rem 1.5rem;
    background-image: url('../images/PBimg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.platform-card {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2.5rem 3rem;
    border-radius: 18px;
    background: rgba(8, 80, 120, 0.18);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(154, 228, 203, 0.2);
}

/* Header */
.platform-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #ff6b9d, #ff5080);
    color: white;
    margin-bottom: 0.8rem;
}

.platform-header h2 {
    font-size: 2.6rem;
    margin: 0.8rem 0;
    background: linear-gradient(135deg, #9AE4CB, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-header p {
    max-width: 620px;
    margin: auto;
    color: rgba(255, 255, 255, 0.85);
}

/* Landscape Layout */
.platform-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Timeline */
.features-timeline {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9AE4CB, #00D9FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Logo */
.logo-section {
    text-align: center;
}

.platform-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

/* Button */
.platform-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .platform-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .platform-logo img {
        width: 160px;
        height: 160px;
    }
}
/* ===== PLATFORM LANDSCAPE CARDS ===== */

.platforms-section {
    padding: 4rem 1.5rem;
    background-image: url('../images/PBimg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.platform-card {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2.5rem 3rem;
    border-radius: 18px;
    background: rgba(8, 80, 120, 0.18);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(154, 228, 203, 0.2);
}

.platform-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #ff6b9d, #ff5080);
    color: white;
    margin-bottom: 0.8rem;
}

.platform-header h2 {
    font-size: 2.6rem;
    margin: 0.8rem 0;
    background: linear-gradient(135deg, #9AE4CB, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-header p {
    max-width: 620px;
    margin: auto;
    color: rgba(255, 255, 255, 0.85);
}

.platform-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.features-timeline {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9AE4CB, #00D9FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.75);
}

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

.platform-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.platform-actions {
    text-align: center;
    margin-top: 2rem;
}

.coming-soon {
    font-weight: 600;
    color: #9AE4CB;
}

@media (max-width: 768px) {
    .platform-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .platform-logo img {
        width: 160px;
        height: 160px;
    }
}

/* ===== ZOOM IN SCROLL ANIMATION ===== */
.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays for child elements */
.zoom-in-delay-1 {
    transition-delay: 0.1s;
}

.zoom-in-delay-2 {
    transition-delay: 0.2s;
}

.zoom-in-delay-3 {
    transition-delay: 0.3s;
}

.zoom-in-delay-4 {
    transition-delay: 0.4s;
}

/* Apply to specific elements */
section:not(.hero) .container,
section:not(.hero) .card,
section:not(.hero) .features li,
section:not(.hero) .impact-item,
section:not(.hero) .platform-card,
.about-layout,
.footer-section {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

section:not(.hero) .container.visible,
section:not(.hero) .card.visible,
section:not(.hero) .features li.visible,
section:not(.hero) .impact-item.visible,
section:not(.hero) .platform-card.visible,
.about-layout.visible,
.footer-section.visible {
    opacity: 1;
    transform: scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .zoom-in,
    section:not(.hero) .container,
    section:not(.hero) .card,
    section:not(.hero) .features li,
    section:not(.hero) .impact-item,
    section:not(.hero) .platform-card,
    .about-layout,
    .footer-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}