/* ===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fafafa;
        }

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

        /* ===== HEADER SECTION ===== */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c5530;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: #1a3320;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .nav-menu a:hover {
            color: #2c5530;
        }

        /* ===== SOCIAL MEDIA ICONS ===== 
        🔹 TO REPLACE WITH IMAGE LOGOS:
        1. Replace <i> tags with <img> tags like this:
           <img src="images/instagram-icon.svg" alt="Instagram" class="social-icon">
           <img src="images/facebook-icon.svg" alt="Facebook" class="social-icon">
           <img src="images/linkedin-icon.svg" alt="LinkedIn" class="social-icon">
        2. Set your actual social media URLs in href attributes
        3. Recommended icon size: 24x24px or 32x32px
        4. Use SVG format for crisp display on all devices
        ===== */
        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            color: #666;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
        }

        .social-icons a:hover {
            color: #2c5530;
            background: rgba(44, 85, 48, 0.1);
            transform: translateY(-2px);
        }

        /* Alternative CSS for image-based social icons */
        .social-icon {
            width: 24px;
            height: 24px;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .social-icon:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        /* ===== HERO SECTION ===== 
        🔹 HERO BACKGROUND IMAGE:
        Replace 'images/hero-khatima.jpg' with your actual hero image
        Recommended size: 1920x1080px or larger
        Format: JPG or WebP for best performance
        Ensure image shows Khatima landscape/cityscape
        ===== */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/jagdamba.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(44, 85, 48, 0.2), rgba(26, 51, 32, 0.3));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.95;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

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

        /* ===== MAIN CONTENT SECTIONS ===== */
        main {
            margin-top: 0;
        }

        .section {
            padding: 4rem 0;
        }

        .section:nth-child(even) {
            background: #fff;
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #2c5530;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #2c5530, #4a7c59);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #2c5530;
        }

        .section p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 2rem auto;
            line-height: 1.8;
            text-align: center;
        }

        /* ===== INTRODUCTION SECTION ===== */
        .intro {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            text-align: center;
        }

        /* ===== MAP SECTION ===== 
        🔹 GOOGLE MAPS EMBED:
        Replace the iframe src with actual Khatima coordinates:
        1. Go to Google Maps
        2. Search for "Khatima, Uttarakhand"
        3. Click Share > Embed a map
        4. Copy the iframe src and replace the placeholder below
        ===== */
        .map-section {
            background: #fff;
        }

        .map-container {
            margin-top: 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        /* ===== WHY VISIT SECTION ===== */
        .why-visit {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .reason-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 85, 48, 0.1);
        }

        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            border-color: rgba(44, 85, 48, 0.3);
        }

        .reason-card i {
            font-size: 3.5rem;
            color: #2c5530;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .reason-card:hover i {
            transform: scale(1.1);
        }

        .reason-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        /* ===== SUPPORTING IMAGES ===== 
        🔹 REPLACE PLACEHOLDER DIVS WITH ACTUAL IMAGES:
        Replace the placeholder divs with:
        <img src="images/khatima-market.jpg" alt="Khatima Main Market" class="support-img">
        <img src="images/nepal-border.jpg" alt="Nepal Border Crossing" class="support-img">
        
        Recommended image specs:
        - Size: 400x300px minimum
        - Format: JPG or WebP
        - Content: Market scenes, border crossing, local attractions
        ===== */
        .supporting-images {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .support-img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .support-img:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        /* Placeholder styling - remove when adding real images */
        .supporting-images > div {
            width: 300px;
            height: 200px;
            background: linear-gradient(45deg, #e0e0e0, #f0f0f0);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .supporting-images > div:hover {
            transform: translateY(-8px);
        }

        /* ===== TRANSPORT SECTION ===== */
        .transport-section {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
            padding: 4rem 0;
        }

        .transport-section h2 {
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .transport-section > .container > p {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .transport-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .transport-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .transport-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #74b9ff, #0984e3);
        }

        .transport-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .transport-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .bus-icon {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
        }

        .train-icon {
            background: linear-gradient(135deg, #00b894, #00a085);
        }

        .transport-card h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
            font-family: 'Playfair Display', serif;
        }

        .transport-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .transport-card p strong {
            color: #2c3e50;
        }

        .transport-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }

        .feature-tag {
            background: linear-gradient(45deg, #ecf0f1, #bdc3c7);
            color: #2c3e50;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .map-link-transport {
            display: inline-block;
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            margin-top: 1rem;
        }

        .map-link-transport:hover {
            background: linear-gradient(45deg, #229954, #27ae60);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
        }

        .map-link-transport i {
            margin-right: 0.5rem;
        }

        /* ===== FOOD SECTION ===== */
        .food-section {
            background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
            padding: 4rem 0;
        }

        .food-section h2 {
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .food-section > .container > p {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .restaurants-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .restaurant-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .restaurant-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .restaurant-card.featured-lassi {
            border: 2px solid #3498db;
            background: linear-gradient(135deg, #ebf3fd 0%, #f8fbff 100%);
        }

        .restaurant-card.featured-chinese {
            border: 2px solid #e74c3c;
            background: linear-gradient(135deg, #fdf2f2 0%, #fff8f8 100%);
        }

        .featured-lassi::before {
            content: "🏆 FAMOUS";
            position: absolute;
            top: 15px;
            right: 15px;
            background: #3498db;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        .featured-chinese::before {
            content: "⭐ POPULAR";
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e74c3c;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        /* ===== RESTAURANT IMAGE PLACEHOLDER ===== 
        🔹 REPLACE WITH ACTUAL RESTAURANT IMAGES:
        Replace .restaurant-image divs with:
        <img src="images/prajapati-dhaba.jpg" alt="Prajapati Dhaba" class="restaurant-img">
        <img src="images/bisht-fast-food.jpg" alt="Bisht Fast Food Momos" class="restaurant-img">
        <img src="images/jagdama-sweets.jpg" alt="Jagdama Hotel Sweets" class="restaurant-img">
        <img src="images/aman-lassi.jpg" alt="Famous Aman Lassi" class="restaurant-img">
        <img src="images/hav-fun-restaurant.jpg" alt="Hav Fun Chinese Restaurant" class="restaurant-img">
        
        Recommended specs:
        - Size: 400x250px minimum
        - Format: JPG or WebP
        - Content: Food items, restaurant exterior/interior
        ===== */
        .restaurant-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
            font-size: 1.1rem;
            position: relative;
        }

        .restaurant-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .restaurant-card:nth-child(1) .restaurant-image {
            background: linear-gradient(45deg, #ff9a9e, #fecfef);
        }

        .restaurant-card:nth-child(2) .restaurant-image {
            background: linear-gradient(45deg, #a8edea, #fed6e3);
        }

        .restaurant-card:nth-child(3) .restaurant-image {
            background: linear-gradient(45deg, #ffeaa7, #fab1a0);
        }

        .restaurant-card:nth-child(4) .restaurant-image {
            background: linear-gradient(45deg, #74b9ff, #0984e3);
        }

        .restaurant-card:nth-child(5) .restaurant-image {
            background: linear-gradient(45deg, #fd79a8, #e84393);
        }

        .restaurant-card h4 {
            padding: 1.5rem 1.5rem 0.5rem;
            margin: 0;
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .restaurant-card h4 i {
            color: #e67e22;
            font-size: 1.2rem;
        }

        .restaurant-card p {
            padding: 0 1.5rem 1rem;
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        .map-link-restaurant {
            display: inline-block;
            background: linear-gradient(45deg, #e67e22, #d35400);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            margin: 0 1.5rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .map-link-restaurant:hover {
            background: linear-gradient(45deg, #d35400, #e67e22);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
        }

        .map-link-restaurant i {
            margin-right: 0.5rem;
        }

        /* ===== NATURE SPOTS SECTION ===== */
        .nature-section {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
        }

        .nature-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .nature-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .nature-text {
            text-align: left;
        }

        .nature-text h3 {
            font-size: 1.8rem;
            color: #2c5530;
            margin-bottom: 1rem;
        }

        .nature-text p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-align: left;
        }

        /* ===== IMAGE SLIDER ===== 
        🔹 REPLACE SLIDER IMAGES:
        Replace the placeholder slide backgrounds with actual images:
        
        .slide:nth-child(1) {
            background-image: url('images/lalkothi-scenic-1.jpg');
        }
        .slide:nth-child(2) {
            background-image: url('images/lalkothi-scenic-2.jpg');
        }
        .slide:nth-child(3) {
            background-image: url('images/lalkothi-scenic-3.jpg');
        }
        
        Remove the display: flex, align-items, justify-content, color, and font-style properties
        
        Recommended specs:
        - Size: 800x500px minimum
        - Format: JPG or WebP
        - Content: Lalkothi natural scenery, river views, forest areas
        ===== */
       .nature-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 🔥 Makes it auto scale with width */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;   /* ← change this */
    background-position: center;
    background-repeat: no-repeat;
}


       .nature-image-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or use "cover" for a full bleed look */
  border-radius: 20px;
}

        /* ===== SAFETY TIPS ===== */
        .safety-tips {
            background: rgba(255, 193, 7, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #ffc107;
            margin-top: 2rem;
            position: relative;
        }

        .safety-tips::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -4px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.1;
        }

        .safety-tips h4 {
            color: #856404;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .safety-tips p {
            color: #856404;
            margin-bottom: 1rem;
            text-align: left;
        }

        .animal-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .animal-icon {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem;
            border-radius: 50%;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .animal-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            background: rgba(255, 255, 255, 1);
        }

        .animal-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -45px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            z-index: 10;
        }

        .animal-icon:hover::after {
            opacity: 1;
        }

        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #4285f4, #34a853);
            color: white;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
        }

        .map-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
            background: linear-gradient(45deg, #34a853, #4285f4);
        }

        .map-link i {
            font-size: 1.1rem;
        }

        /* ===== CULTURE SECTION ===== */
        .culture-section {
            background: linear-gradient(135deg, #f8e8ff 0%, #f0f0ff 100%);
        }

        .culture-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .culture-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(148, 0, 211, 0.1);
        }

        .culture-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: rgba(148, 0, 211, 0.3);
        }

        .culture-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c5530;
            font-family: 'Playfair Display', serif;
        }

        /* ===== TEMPLE SECTIONS ===== 
        🔹 TEMPLE IMAGES REPLACEMENT:
        Replace placeholder temple-hero divs with actual images:
        
        For Purnagiri Temple:
        <img src="images/purnagiri-temple.jpg" alt="Purnagiri Temple" class="temple-img">
        
        For Nankmatta Gurudwara:
        <img src="images/nankmatta-gurudwara.jpg" alt="Nankmatta Gurudwara" class="temple-img">
        
        For Bhramal Baba:
        <img src="images/bhramal-baba.jpg" alt="Bhramal Baba Temple" class="temple-img">
        
        Recommended specs:
        - Size: 800x400px minimum
        - Format: JPG or WebP
        - Content: Temple architecture, devotees, scenic temple locations
        ===== */
        .temple-section {
            background: linear-gradient(135deg, #ffe8e8 0%, #fff0f0 100%);
            padding: 4rem 0;
        }

        .temple-section:nth-child(even) {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
        }

        .temple-section:nth-child(3n) {
            background: linear-gradient(135deg, #f0f8e8 0%, #f8fff0 100%);
        }

        .temple-hero {
            width: 100%;
            height: 450px;
            background: linear-gradient(45deg, #d8e8d8, #e8f0e8);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
            margin: 2rem 0;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
              margin-top: 60px; /* moves image 50px down */
        }

        .temple-hero:hover {
            transform: translateY(-5px);
        }

        .temple-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .temple-img:hover {
            transform: translateY(-5px);
        }

        .temple-info {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin-top: 2rem;
            border: 1px solid rgba(44, 85, 48, 0.1);
        }

        .temple-info p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #333;
            font-size: 1.1rem;
            text-align: left;
        }

        /* ===== CLOSING SECTION ===== */
        .closing-section {
            background: linear-gradient(135deg, #2c5530 0%, #1a3320 100%);
            color: white;
            text-align: center;
            position: relative;
        }

        .closing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .closing-section .container {
            position: relative;
            z-index: 2;
        }

        .closing-section h2 {
            color: white;
        }

        .closing-section p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        /* ===== FOOTER ===== 
        🔹 UPDATE CONTACT INFORMATION:
        Replace "your-email@example.com" with your actual email
        Replace social media href="#" with actual URLs:
        - Instagram: href="https://instagram.com/yourusername"
        - Facebook: href="https://facebook.com/yourpage"
        - LinkedIn: href="https://linkedin.com/in/yourprofile"
        ===== */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            color: white;
            padding: 4rem 0 2rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1.5rem;
            color: #4a7c59;
            font-size: 1.3rem;
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            color: #999;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .footer-social a:hover {
            color: #4a7c59;
            background: rgba(74, 124, 89, 0.2);
            transform: translateY(-2px);
        }

        .contact-email {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-email:hover {
            color: #2c5530;
            text-decoration: underline;
        }

        .footer-section a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #4a7c59;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
        }

        /* ===== MOBILE HAMBURGER MENU ===== */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2c5530;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
                padding: 0.8rem 0;
            }

            .nav-menu {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .mobile-menu-toggle {
                display: flex;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-menu {
                display: none;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                padding: 1rem 0;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .nature-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .nature-image-slider {
                height: 280px;
            }

            .supporting-images {
                flex-direction: column;
                align-items: center;
            }

            .supporting-images > div,
            .support-img {
                width: 100%;
                max-width: 350px;
            }

            .section h2 {
                font-size: 2rem;
            }

            .section {
                padding: 3rem 0;
            }

            .restaurants-grid,
            .reasons-grid,
            .transport-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .temple-hero,
            .temple-img {
                height: 280px;
            }

            .temple-info {
                padding: 1.5rem;
            }

            .animal-icons {
                justify-content: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section h2 {
                font-size: 1.8rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .social-icons {
                gap: 0.5rem;
            }

            .social-icons a {
                font-size: 1rem;
                padding: 0.3rem;
            }
        }

        /* ===== LOADING ANIMATION ===== */
        .loading {
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }