       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: linear-gradient(to bottom, #ffffff, #fff8f0, #ffffff);
            color: #2c2c2c;
            overflow-x: hidden;
            overflow-y: scroll;
        }

        .music-control {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1000;
            background: rgba(231, 0, 11, 0.1);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 0, 11, 0.3);
        }

        .music-control:hover {
            background: rgba(231, 0, 11, 0.2);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(231, 0, 11, 0.4);
        }

        .music-control svg {
            width: 24px;
            height: 24px;
            fill: #e7000b;
        }

        .section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 80px 20px;
            opacity: 1;
            transform: none;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero {
            background: linear-gradient(135deg, #fff8f0 0%, #ffffff 50%, #fff0e6 100%);
            overflow: hidden;
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .star {
            position: absolute;
            background: #d4af37;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.3); }
        }

        .hero-title {
            font-family: 'Great Vibes', cursive;
            font-size: 6rem;
            letter-spacing: 2px;
            font-style: italic;
            color: #e7000b;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1.5s ease forwards;
            font-weight: 400;
        }

        .hero-subtitle {
            font-family: 'Great Vibes', cursive;
            font-size: 1.9rem;
            color: #a0522d;
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.5s forwards;
            font-style: italic;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(30px);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-20px); }
            60% { transform: translateX(-50%) translateY(-10px); }
        }

        .content-box {
            max-width: 1300px;
            background: #ffffff;
            border: none;
            border-radius: 15px;
            padding: 60px;
            margin: 0;
            box-shadow: 0 10px 40px rgba(231, 0, 11, 0.1);
            transform: none;
            opacity: 1;
            transition: all 0.6s ease 0.3s;
        }

        .section.active .content-box {
            opacity: 1;
            transform: translateY(0);
        }

        .memory-image {
            width: 70%;
            max-width: 500px;
            border-radius: 20px;
            margin: 20px auto 40px;
            display: block;
            box-shadow: 0 15px 40px rgba(231, 0, 11, 0.2);
            transition: transform 0.5s ease;
            background: radial-gradient(circle at center, rgba(255,200,200,0.2), transparent 70%);
        }

        .memory-image:hover {
            transform: scale(1.03);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 10px;
            box-shadow: 15px 15px 40px rgba(231, 0, 11, 0.2);
            filter: grayscale(10%);
            transition: transform 0.5s ease;
        }

        h2 {
            font-size: 2.8rem;
            color: #e7000b;
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Great Vibes', cursive;
            font-style: italic;
            font-weight: 400;
        }

        p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #4a4a4a;
            text-align: justify;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        
        .romantic-line {
            color: #e7000b;
            font-weight: 500;
            font-size: 1.6rem;
            font-family: 'Great Vibes', cursive;
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            width: 100%;
            margin-top: 40px;
        }

        .timeline-item {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(231, 0, 11, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(231, 0, 11, 0.15);
        }

        @media (max-width: 768px) {
            .timeline {
                grid-template-columns: 1fr;
            }
        }

.memory-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.memory-gallery img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 200px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.memory-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 0, 11, 0.3);
}

.timeline-photo {
    width: 100%;
    border-radius: 12px;
    margin: 15px 0;
    height: 180px;
    object-fit: cover;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 20px;
}

        .section[data-section="6"] .content-box {
            padding-left: 30px;
            padding-right: 30px;
        }

        .section.active .timeline-item:nth-child(1) { transition-delay: 0.4s; }
        .section.active .timeline-item:nth-child(2) { transition-delay: 0.5s; }
        .section.active .timeline-item:nth-child(3) { transition-delay: 0.6s; }
        .section.active .timeline-item:nth-child(4) { transition-delay: 0.7s; }
        .section.active .timeline-item:nth-child(5) { transition-delay: 0.8s; }

        .timeline-date {
            color: #e7000b;
            font-weight: bold;
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-style: italic;
        }

        .timeline-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #5a5a5a;
            max-width: 1300px;
        }

        .map-container {
            width: 100%;
            max-width: 700px;
            height: 500px;
            position: relative;
            margin: 40px auto;
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(231, 0, 11, 0.1);
            opacity: 1;
            transform: none;
            transition: all 0.8s ease 0.4s;
        }

        .map-path {
            position: relative;
            height: 100%;
            background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
            border-radius: 10px;
            overflow: hidden;
        }

        .india-outline {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.15;
            width: 80%;
            height: 80%;
        }

        .city {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #e7000b;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(231, 0, 11, 0.6);
            z-index: 10;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .city::before {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border: 2px solid #e7000b;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.3;
        }

        .city-label {
            position: absolute;
            color: #e7000b;
            font-weight: bold;
            white-space: nowrap;
            font-size: 1.2rem;
            z-index: 11;
            background: white;
            padding: 5px 12px;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        #hyderabad {
            top: 30%;
            left: 35%;
        }

        #chennai {
            bottom: 25%;
            right: 25%;
        }

        .route-line {
            position: absolute;
            height: 4px;
            background: linear-gradient(135deg, #e7000b, #d4af37, #e7000b);
            transform-origin: 35% 30%;
            top: calc(30% + 8px);
            left: calc(35% + 8px);
            width: 0;
            transform: rotate(35deg);
            box-shadow: 0 2px 10px rgba(231, 0, 11, 0.3);
            z-index: 5;
        }

        .section.active .route-line {
            animation: drawLine 2s ease forwards 0.8s;
        }

        @keyframes drawLine {
            to { width: 280px; }
        }

        .distance {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-10deg);
            color: #e7000b;
            font-size: 1.4rem;
            font-weight: bold;
            background: white;
            padding: 8px 20px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(231, 0, 11, 0.2);
            z-index: 15;
        }

        .route-dots {
            position: absolute;
            top: calc(30% + 8px);
            left: calc(35% + 8px);
            width: 280px;
            height: 4px;
            transform: rotate(35deg);
            z-index: 4;
        }

        .route-dots::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: repeating-linear-gradient(
                90deg,
                #d4af37 0px,
                #d4af37 10px,
                transparent 10px,
                transparent 20px
            );
            opacity: 0.4;
        }

        .heart-float {
            position: absolute;
            color: #e7000b;
            font-size: 2rem;
            opacity: 0;
            animation: floatHeart 4s ease-in-out infinite;
        }
        
        .memory-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }

        .memory-image-wrapper {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }

        .memory-text {
            flex: 1;
            min-width: 280px;
        }

        .section.active .memory-layout {
            animation: fadeInUp 1s ease forwards;
        }


        @keyframes floatHeart {
        0% {
            transform: translate(0, 0) scale(0);
            opacity: 0;
        }
        50% {
            transform: translate(10px, -50px) scale(0.8);
            opacity: 0.7;
        }
        100% {
            transform: translate(-10px, -120px) scale(1);
            opacity: 0;
        }
        }

        .sand-texture {
            background: linear-gradient(to bottom, #fff8f0, #ffe4cc, #fff8f0);
        }

        .typewriter {
            font-size: 2.8rem;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: #e7000b;
            text-align: center;
            margin-top: 60px;
            opacity: 0;
        }

        .typewriter.active {
            opacity: 1;
        }

        .ending-section {
            background: linear-gradient(to bottom, #ffffff, #fff8f0);
        }

        .section-progress {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            display: flex;
            gap: 10px;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(231, 0, 11, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .progress-dot.active {
            background: #e7000b;
            transform: scale(1.3);
        }
