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

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 30%, #a8e6cf 70%, #667eea 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .sun {
            position: absolute;
            top: 10%;
            right: 15%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, #ffd700 30%, #ffb347 70%, transparent 100%);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 100px rgba(255, 215, 0, 0.6);
            animation: sunGlow 4s ease-in-out infinite alternate;
        }

        @keyframes sunGlow {
            0% { box-shadow: 0 0 100px rgba(255, 215, 0, 0.6); }
            100% { box-shadow: 0 0 150px rgba(255, 215, 0, 0.9); }
        }

        .mountains {
            position: absolute;
            bottom: 200px;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 2;
        }

        .mountain {
            position: absolute;
            bottom: 0;
            border-style: solid;
            border-color: transparent transparent #4a4a4a transparent;
        }

        .mountain1 {
            left: 10%;
            border-width: 0 80px 120px 80px;
        }

        .mountain2 {
            left: 25%;
            border-width: 0 60px 90px 60px;
            opacity: 0.8;
        }

        .mountain3 {
            left: 40%;
            border-width: 0 70px 100px 70px;
            opacity: 0.7;
        }

        .mountain4 {
            right: 20%;
            border-width: 0 90px 130px 90px;
            opacity: 0.6;
        }

        .mountain5 {
            right: 5%;
            border-width: 0 50px 80px 50px;
            opacity: 0.5;
        }

        .road-scene {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            z-index: 3;
            overflow: hidden;
        }

        .road {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to bottom, 
                #6a6a6a 0%, 
                #4a4a4a 30%, 
                #2c2c2c 100%);
            border-top: 4px solid #8a8a8a;
        }

        .road::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 6px;
            background: repeating-linear-gradient(
                90deg,
                #ffd700 0px,
                #ffd700 40px,
                transparent 40px,
                transparent 80px
            );
            transform: translateY(-50%);
            animation: roadLines 1.5s linear infinite;
        }

        @keyframes roadLines {
            0% { transform: translateY(-50%) translateX(0px); }
            100% { transform: translateY(-50%) translateX(-80px); }
        }

        .road::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, 
                rgba(0,0,0,0.3) 0%, 
                transparent 50%);
        }

        .biker-scene {
            position: absolute;
            bottom: 80px;
            left: -200px;
            width: 150px;
            height: 120px;
            z-index: 4;
        }

        .motorcycle {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 70px;
        }

        .bike-body {
            position: absolute;
            bottom: 25px;
            left: 20px;
            width: 80px;
            height: 35px;
            background: linear-gradient(45deg, #ff4757, #ff3838);
            border-radius: 15px 8px 8px 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

        .bike-body::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 15px;
            width: 40px;
            height: 20px;
            background: #2f3542;
            border-radius: 10px;
        }

        .bike-body::after {
            content: '';
            position: absolute;
            top: -15px;
            left: 5px;
            width: 25px;
            height: 10px;
            background: #57606f;
            border-radius: 5px;
        }

        .wheel {
            position: absolute;
            bottom: 0;
            width: 28px;
            height: 28px;
            background: radial-gradient(circle, #2f3542 60%, #57606f 100%);
            border-radius: 50%;
            border: 4px solid #1e2328;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
        }

        .wheel::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: #1e2328;
            border-radius: 50%;
        }

        .wheel::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 2px;
            background: #57606f;
            border-radius: 2px;
        }

        .wheel-front {
            left: 15px;
            animation: wheelSpin 0.2s linear infinite;
        }

        .wheel-rear {
            right: 15px;
            animation: wheelSpin 0.2s linear infinite;
        }

        @keyframes wheelSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .exhaust {
            position: absolute;
            bottom: 30px;
            right: 10px;
            width: 20px;
            height: 8px;
            background: #2f3542;
            border-radius: 0 5px 5px 0;
        }

        .exhaust-smoke {
            position: absolute;
            bottom: 30px;
            right: -5px;
            width: 8px;
            height: 8px;
            background: rgba(150, 150, 150, 0.6);
            border-radius: 50%;
            animation: exhaustSmoke 1s ease-out infinite;
        }

        @keyframes exhaustSmoke {
            0% {
                opacity: 0.8;
                transform: scale(0.5) translateX(0) translateY(0);
            }
            100% {
                opacity: 0;
                transform: scale(2) translateX(-30px) translateY(-20px);
            }
        }

        .rider {
            position: absolute;
            bottom: 50px;
            left: 35px;
            width: 50px;
            height: 80px;
            z-index: 5;
        }

        .rider-head {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: #fdbcb4;
            border-radius: 50%;
            border: 2px solid #f8b500;
        }

        .helmet {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 35px;
            height: 25px;
            background: linear-gradient(135deg, #ff4757, #ff3838);
            border-radius: 50% 50% 20% 20%;
            border: 2px solid #ff2f2f;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .helmet::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 25px;
            height: 8px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
        }

        .rider-torso {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 25px;
            height: 35px;
            background: linear-gradient(135deg, #3742fa, #2f3542);
            border-radius: 12px;
        }

        .rider-arm {
            position: absolute;
            top: 30px;
            width: 20px;
            height: 6px;
            background: #fdbcb4;
            border-radius: 3px;
            animation: armMove 0.5s ease-in-out infinite alternate;
        }

        .rider-arm-left {
            left: 8px;
            transform: rotate(-15deg);
        }

        .rider-arm-right {
            right: 8px;
            transform: rotate(15deg);
        }

        @keyframes armMove {
            0% { transform: rotate(-15deg); }
            100% { transform: rotate(-25deg); }
        }

        .rider-leg {
            position: absolute;
            top: 55px;
            width: 18px;
            height: 8px;
            background: #2c2c54;
            border-radius: 4px;
        }

        .rider-leg-left {
            left: 8px;
            transform: rotate(10deg);
        }

        .rider-leg-right {
            right: 8px;
            transform: rotate(-10deg);
        }

        .taj-mahal-scene {
            position: absolute;
            bottom: 80px;
            right: 8%;
            width: 250px;
            height: 180px;
            z-index: 2;
            opacity: 0.6;
        }

        .taj-base {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(to top, 
                rgba(255,255,255,0.8) 0%, 
                rgba(255,255,255,0.6) 100%);
            border-radius: 5px;
        }

        .taj-main-building {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 80px;
            background: linear-gradient(135deg, 
                rgba(255,255,255,0.9) 0%, 
                rgba(245,245,245,0.8) 100%);
            border-radius: 10px 10px 0 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .taj-main-building::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 20px;
            background: rgba(255,255,255,0.7);
            border-radius: 50px 50px 0 0;
        }

        .taj-dome {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: radial-gradient(circle at 30% 30%, 
                rgba(255,255,255,1) 0%, 
                rgba(240,240,240,0.9) 100%);
            border-radius: 50%;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }

        .taj-finial {
            position: absolute;
            top: -65px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 30px;
            background: linear-gradient(to top, 
                rgba(255,215,0,0.9) 0%, 
                rgba(255,255,255,0.8) 100%);
            border-radius: 4px;
        }

        .taj-finial::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: rgba(255,215,0,0.9);
            border-radius: 50%;
        }

        .taj-minaret {
            position: absolute;
            bottom: 30px;
            width: 20px;
            height: 100px;
            background: linear-gradient(135deg, 
                rgba(255,255,255,0.8) 0%, 
                rgba(230,230,230,0.7) 100%);
            border-radius: 10px 10px 0 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .taj-minaret::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 18px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
        }

        .taj-minaret::after {
            content: '';
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 15px;
            background: rgba(255,215,0,0.8);
            border-radius: 2px;
        }

        .minaret-1 { left: 20px; }
        .minaret-2 { right: 20px; }
        .minaret-3 { left: 50px; height: 85px; }
        .minaret-4 { right: 50px; height: 85px; }

        .taj-arch {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 45px;
            border: 3px solid rgba(139, 69, 19, 0.6);
            border-bottom: none;
            border-radius: 15px 15px 0 0;
        }

        .cloud {
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
            opacity: 0.8;
        }

        .cloud::before,
        .cloud::after {
            content: '';
            position: absolute;
            background: rgba(255,255,255,0.2);
            border-radius: 50px;
        }

        .cloud1 {
            width: 100px;
            height: 40px;
            top: 15%;
            left: 20%;
            animation: cloudMove1 25s linear infinite;
        }

        .cloud1::before {
            width: 60px;
            height: 60px;
            top: -30px;
            left: 10px;
        }

        .cloud1::after {
            width: 80px;
            height: 50px;
            top: -20px;
            right: 15px;
        }

        .cloud2 {
            width: 80px;
            height: 35px;
            top: 25%;
            right: 25%;
            animation: cloudMove2 30s linear infinite;
        }

        .cloud2::before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 5px;
        }

        .cloud2::after {
            width: 65px;
            height: 45px;
            top: -15px;
            right: 10px;
        }

        @keyframes cloudMove1 {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(calc(100vw + 100px)); }
        }

        @keyframes cloudMove2 {
            0% { transform: translateX(calc(100vw + 100px)); }
            100% { transform: translateX(-100px); }
        }

        .birds {
            position: absolute;
            top: 20%;
            left: 30%;
            width: 200px;
            height: 100px;
            z-index: 2;
        }

        .bird {
            position: absolute;
            width: 20px;
            height: 10px;
            opacity: 0.6;
        }

        .bird::before,
        .bird::after {
            content: '';
            position: absolute;
            top: 0;
            width: 10px;
            height: 2px;
            background: rgba(0,0,0,0.7);
            border-radius: 2px;
            animation: birdFly 1.5s ease-in-out infinite;
        }

        .bird::before {
            left: 0;
            transform-origin: right center;
        }

        .bird::after {
            right: 0;
            transform-origin: left center;
            animation-delay: -0.75s;
        }

        .bird1 { top: 20px; left: 10px; animation: birdMove 8s linear infinite; }
        .bird2 { top: 30px; left: 40px; animation: birdMove 8s linear infinite 1s; }
        .bird3 { top: 15px; left: 70px; animation: birdMove 8s linear infinite 2s; }

        @keyframes birdFly {
            0%, 100% { transform: rotate(-10deg); }
            50% { transform: rotate(10deg); }
        }

        @keyframes birdMove {
            0% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(100px) translateY(-20px); }
            50% { transform: translateX(200px) translateY(10px); }
            75% { transform: translateX(300px) translateY(-15px); }
            100% { transform: translateX(400px) translateY(5px); }
        }

        .hero-content {
            z-index: 5;
            position: relative;
            max-width: 900px;
            padding: 0 20px;
            margin-bottom: 100px;
        }

        .hero-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: scale(0);
            color: #ffd700;
            text-shadow: 0 4px 20px rgba(255, 215, 0, 0.8);
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
            opacity: 0;
            transform: translateY(50px);
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(50px);
            font-weight: 300;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(50px);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.15);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #ffd700;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(50px);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .cta-primary {
            background: rgba(255,107,107,0.9);
            border-color: rgba(255,107,107,0.6);
        }

        .cta-primary:hover {
            background: rgba(255,107,107,1);
        }

        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            transform: translateY(-100px);
        }

        .nav.visible {
            transform: translateY(0);
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff6b6b;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i {
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: #ff6b6b;
            transform: translateY(-2px);
        }

        .section {
            padding: 100px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            color: #2c3e50;
            position: relative;
            font-weight: 700;
            opacity: 0;
            transform: translateY(50px);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .experiences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .experience-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
        }

        .experience-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .card-image {
            height: 280px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .taj-mahal { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
        .local-food { background: linear-gradient(135deg, #feca57, #ff6b6b); }
        .heritage { background: linear-gradient(135deg, #48cae4, #0096c7); }
        .artisan { background: linear-gradient(135deg, #7209b7, #2d1b69); }
        .photography { background: linear-gradient(135deg, #ff6b35, #f7931e); }
        .culture { background: linear-gradient(135deg, #667eea, #764ba2); }

        .card-icon {
            font-size: 5rem;
            color: rgba(255,255,255,0.9);
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .experience-card:hover .card-icon {
            transform: scale(1.15);
        }

        .card-content {
            padding: 35px;
        }

        .card-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
        }

        .card-content p {
            color: #7f8c8d;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1rem;
        }

        .card-features {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(255,107,107,0.1);
            color: #ff6b6b;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff6b6b;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .book-btn {
            background: linear-gradient(135deg, #ff6b6b, #ff5252);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            justify-content: center;
        }

        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,107,107,0.4);
        }

        .about {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
        }

        .about > * {
            position: relative;
            z-index: 2;
        }

        .about .section-title,
        .about .section-subtitle {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255,255,255,0.15);
            border-radius: 25px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .feature:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s ease;
        }

        .feature:hover .feature-icon {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .feature h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact {
            background: #2c3e50;
            color: white;
            text-align: center;
            position: relative;
        }

        .contact .section-title,
        .contact .section-subtitle {
            color: white;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            display: grid;
            gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
            opacity: 0;
            transform: translateY(30px);
        }

        .form-group label {
            margin-bottom: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ecf0f1;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 18px;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            background: rgba(255,255,255,0.15);
            border-color: #ff6b6b;
            box-shadow: 0 0 25px rgba(255,107,107,0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-group select option {
            background: #2c3e50;
            color: white;
        }

        .submit-btn {
            background: linear-gradient(135deg, #ff6b6b, #ff5252);
            color: white;
            border: none;
            padding: 20px 40px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: center;
            width: fit-content;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            transform: translateY(30px);
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255,107,107,0.4);
        }

        .contact-info {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid rgba(255,255,255,0.2);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #ff6b6b;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-stats { flex-direction: column; gap: 20px; }
            .nav-links { display: none; }
            .experiences-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .contact-info { grid-template-columns: 1fr; }
            .section-title { font-size: 2.2rem; }
            .road-scene { height: 150px; }
            .biker-scene { width: 100px; height: 80px; }
            .motorcycle { width: 80px; height: 50px; }
            .taj-mahal-scene { width: 180px; height: 130px; right: 5%; }
        }

        @media (max-width: 480px) {
            .hero-icon { font-size: 3.5rem; }
            .hero h1 { font-size: 2rem; }
            .experiences-grid { grid-template-columns: 1fr; }
            .experience-card { margin: 0 10px; }
            .road-scene { height: 120px; }
            .biker-scene { width: 80px; height: 60px; }
        }