
.main-header {
    padding: 15px 0; /* Upar-neeche thodi padding */
    background-color: #FFF8E1; /* Aapke theme se milta-julta halka rang */
    border-bottom: 3px solid #FFC107; /* Saffron/Gold border */
}

/* Container jo logo aur text ko ek saath rakhega */
.header-container {
    display: flex; /* Sabse zaroori: Items ko ek line me laata hai */
    align-items: center; /* Vertically center karta hai */
    justify-content: center; /* Horizontally center karta hai */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px; /* Logo aur text ke beech me space */
}

/* Logo ki styling */
.header-logo {
    height: 70px; /* Logo ki height. Aap ise kam ya zyada kar sakte hain. */
    width: auto; /* Width apne aap adjust ho jayegi */
    object-fit: contain;
}

/* Mandir ke naam ki styling */
.mandir-heading {
    font-size: 2.5rem; /* Font size adjust kar sakte hain */
    color: white; /* Dark Saffron/Red color */
    margin: 0; /* Extra margin hatayein */
    font-family: 'Teko', sans-serif; /* Ek accha heading font */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Mobile phones ke liye adjustments */
@media (max-width: 600px) {
    .header-container {
        gap: 15px;
    }
    .header-logo {
        height: 50px; /* Mobile par logo thoda chhota */
    }
    .mandir-heading {
        font-size: 1.8rem; /* Mobile par heading thodi chhoti */
    }
}/* Reset body & html */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Header styling */
.main-header {
    background: linear-gradient(to bottom, #ff6f00, #f57c00);
    padding: 20px 10px;   /* kam kiya horizontal padding */
    margin: 0;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(255, 111, 0, 0.4);
}

/* Navigation bar */
nav {
    background-color: #d84315;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;   /* sirf upar niche padding */
    margin: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-links a {
    color: white;
    margin: 10px 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffff8d;
}

/* Body content ke liye alag section - yeh menubar se bilkul alag hai */

.content-wrapper {
    /* max-width: 1100px;           Content width control */
    margin: 30px auto;           /* Center horizontally with top-bottom margin */
    padding: 30px 40px;          /* Comfortable padding around content */
    background: #fff8e1;         /* Soft warm background (light saffron) */
    border-radius: 12px;         /* Rounded corners for smooth look */
    box-shadow: 0 8px 20px rgba(216, 67, 21, 0.2);  /* Slight orange shadow */
    color: #4e342e;              /* Dark brown text color */
    font-family: 'Mukta', sans-serif; /* Clean Hindi-friendly font */
    font-size: 1.15rem;          /* Slightly larger readable text */
    line-height: 1.7;            /* Comfortable line height for paragraphs */
    letter-spacing: 0.02em;      /* Slight letter spacing for clarity */
}

/* Headings inside content */
.content-wrapper h2, 
.content-wrapper h3 {
    color: #bf360c;             /* Deep orange for headings */
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 1px 1px 1px #fbe9e7;
}

/* Paragraph styling */
.content-wrapper p {
    margin-bottom: 20px;
    text-align: justify;          /* Justify text for neat blocks */
}

/* Links inside content */
.content-wrapper a {
    color: #d84315;             /* Bright orange links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: #ff6f00;             /* Hover color bright amber */
    text-decoration: underline;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px 15px;
        font-size: 1rem;
    }
}
.welcome {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between;
  align-items: center; */
  background: #fffde7;
  padding: 40px 5%;
  gap: 30px;
}

.welcome-text {
  flex: 1 1 45%;
  font-size: 1.1rem;
  color: #4e342e;
}

.welcome-text h2 {
  color: #bf360c;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.welcome-text p {
  line-height: 1.6;
}

.welcome-video {
  flex: 1 1 45%;
  max-width: 100%;
  height: 600px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}
/* .welcome-video {
  flex: 1 1 45%;
  max-height: 300px; /* ✅ Yeh line limit karegi height ko */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
} */

.welcome-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ============================================== */
/* == सिर्फ संरक्षकों के स्वागत संदेश सेक्शन के लिए CSS == */
/* ============================================== */

.welcome-from-leaders {
    padding: 50px 0;
    background-color: #fffcf2; /* A very light, warm cream background */
    text-align: center;
}

.welcome-from-leaders .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.welcome-from-leaders h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c62828; /* A respectful maroon/red */
    margin-bottom: 10px;
}

.welcome-from-leaders .subtitle {
    font-size: 1.1rem;
    color: #616161;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-profile {
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #ffa726; /* Saffron accent border */
}

.leader-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.leader-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffb74d; /* Saffron border */
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.leader-profile h3 {
    font-size: 1.6rem;
    color: #d84315; /* Deep orange */
    margin-bottom: 5px;
}

.leader-profile h4 {
    font-size: 1rem;
    color: #ef6c00; /* Medium orange */
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.leader-profile p {
    font-size: 1rem;
    color: #424242;
    line-height: 1.8;
}

/* Responsive adjustments for the new section */
@media (max-width: 992px) {
    .leaders-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on tablets */
    }
}

@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .welcome-from-leaders h2 {
        font-size: 1.8rem;
    }
}

/* Hero Section Layout */
.hero {
  background-color: #fffbe6;
  padding: 60px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: #d84315;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4e342e;
}

.hero-text .btn {
  display: inline-block;
  background-color: #d84315;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  transition: background 0.3s;
}

.hero-text .btn:hover {
  background-color: #bf360c;
}

/* Images Row */
.attractions-section {
  text-align: center; /* हेडिंग को सेंटर में लाने के लिए */
  padding: 40px 20px; /* ऊपर-नीचे और दाएं-बाएं थोड़ी जगह */
  background-color: #fdf5e6; /* हल्का भगवा या क्रीम बैकग्राउंड */
}

/* हेडिंग की स्टाइलिंग */
.section-heading {
  font-size: 2.5rem; /* हेडिंग का आकार */
  color: #c04e01; /* गहरा नारंगी रंग */
  margin-bottom: 30px; /* हेडिंग और तस्वीरों के बीच में जगह */
  font-family: 'Arial', sans-serif; /* फॉन्ट */
}

/* तस्वीरों का कंटेनर */
.hero-img {
  display: flex; /* तस्वीरों को एक लाइन में लाने के लिए */
  justify-content: center; /* तस्वीरों को सेंटर में रखने के लिए */
  gap: 20px; /* तस्वीरों के बीच में जगह */
  flex-wrap: wrap; /* छोटी स्क्रीन पर तस्वीरें नीचे आ जाएंगी */
}

/* हर एक तस्वीर की स्टाइलिंग */
.hero-img img {
  width: 300px; /* हर तस्वीर की चौड़ाई फिक्स करें */
  height: auto; /* ऊंचाई अपने आप एडजस्ट होगी */
  border-radius: 10px; /* तस्वीरों के कोनों को गोल करें */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* हल्की सी परछाई */
  transition: transform 0.3s ease; /* होवर इफेक्ट के लिए */
}

/* माउस ले जाने पर तस्वीर थोड़ी बड़ी होगी */
.hero-img img:hover {
  transform: scale(1.05);
}
Use code with caution.
Css
विकल्प 2: थोड़ा और आकर्षक डिज़ाइन (Decorative)
यह डिज़ाइन हेडिंग के नीचे एक लाइन जोड़ता है और तस्वीरों को एक बॉर्डर देता है, जिससे यह और भी सुंदर दिखता है।
Generated css
/* सेक्शन का मुख्य कंटेनर */
.attractions-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

/* हेडिंग की स्टाइलिंग */
.section-heading {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 25px;
  position: relative; /* नीचे लाइन बनाने के लिए जरूरी */
  display: inline-block; /* ताकि लाइन सिर्फ टेक्स्ट के नीचे आए */
  padding-bottom: 10px;
}

/* हेडिंग के नीचे सजावटी लाइन */
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* लाइन की चौड़ाई */
  height: 4px; /* लाइन की मोटाई */
  background: linear-gradient(90deg, #FF9933, #FF6347); /* सुंदर ग्रेडिएंट लाइन */
  border-radius: 2px;
}

/* तस्वीरों का कंटेनर */
.hero-img {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px; /* हेडिंग और तस्वीरों के बीच थोड़ी और जगह */
}

/* हर एक तस्वीर की स्टाइलिंग */
.hero-img img {
  width: 320px;
  height: auto;
  border-radius: 12px;
  border: 4px solid #fff; /* सफेद बॉर्डर */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* माउस ले जाने पर */
.hero-img img:hover {
  transform: translateY(-10px); /* तस्वीर थोड़ी ऊपर उठेगी */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  background-color: #fff3e0;
  padding: 40px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  color: #d84315;
  margin-bottom: 30px;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
  color: #4e342e;
  font-weight: 500;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(216, 67, 21, 0.4);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #bf360c;
}

/* Additional section for more info */
.more-info {
  background-color: #fbe9e7;
  padding: 40px 30px;
  max-width: 900px;
  margin: 40px auto 60px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(216, 67, 21, 0.2);
  color: #4e342e;
  font-weight: 500;
}

.more-info h2 {
  font-size: 2rem;
  color: #d84315;
  margin-bottom: 20px;
  font-weight: 700;
}

.more-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Cards inside more info */
.info-cards {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-cards .card {
  width: 350px;
  background-color: white;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  color: #4e342e;
  font-weight: 500;
  transition: box-shadow 0.3s ease;
}

.info-cards .card:hover {
  box-shadow: 0 14px 28px rgba(216, 67, 21, 0.5);
}

.info-cards .card h3 {
  color: #bf360c;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Responsive */
@media(max-width: 768px) {
  .hero-content, .feature-cards, .info-cards {
    flex-direction: column;
    align-items: center;
  }

  .hero-text, .card, .info-cards .card {
    width: 90%;
  }
}
/* Footer Styling */
/* Footer Styling */

.mandir-footer {
  background: linear-gradient(to top, #3e2723, #5d4037);
  color: #ffffff;
  padding: 40px 20px 10px;
  font-family: 'Mukta', sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-info {
  /* flex: 1; */
  min-width: 260px;
}

.footer-info h3 {
  font-size: 1.5rem;
  color: #ffcc80;
  margin-bottom: 15px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 1rem;
}

.donate-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #ff6f00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.donate-link:hover {
  background-color: #ff8f00;
}
.footer-map {
  width: 40%;
  margin: 30px auto 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Ram ji aur Hanuman ji images */
.gods-animation-container {
            /* यह अब फिक्स नहीं है, यह पेज के फ्लो में रहेगा */
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, #FF9933, #FFD700, #FF6347);
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative; /* यह एनिमेशन के लिए जरूरी है */
            overflow: hidden; /* टेक्स्ट को बाहर जाने से रोकता है */
        }

        /* दोनों टेक्स्ट के लिए कॉमन स्टाइल */
        .god-text {
            position: absolute;
            top: 50%;
            color: white;
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            white-space: nowrap;
        }

        /* "जय श्री राम" के लिए एनिमेशन */
        .text-ram {
            animation: animateRam 12s ease-in-out infinite;
        }

        /* "जय श्री हनुमान" के लिए एनिमेशन */
        .text-hanuman {
            animation: animateHanuman 12s ease-in-out infinite;
        }

        /* --- एनिमेशन की परिभाषा (Keyframes) --- */
        @keyframes animateRam {
            0% { transform: translateX(-100vw) translateY(-50%); opacity: 0; }
            20% { transform: translateX(-150px) translateY(-50%); opacity: 1; }
            45% { transform: translateX(-120px) translateY(-80%); }
            70% { transform: translateX(-180px) translateY(-20%); }
            100% { transform: translateX(-150px) translateY(-50%); opacity: 1; }
        }

        @keyframes animateHanuman {
            0% { transform: translateX(100vw) translateY(-50%); opacity: 0; }
            20% { transform: translateX(150px) translateY(-50%); opacity: 1; }
            45% { transform: translateX(180px) translateY(-20%); }
            70% { transform: translateX(120px) translateY(-80%); }
            100% { transform: translateX(150px) translateY(-50%); opacity: 1; }
        }
#3e2723
.mandir-footer {
    background: #3e2723; /* Solid dark color */
    color: #bdc3c7; /* Lighter grey for text */
    padding: 40px 20px 20px 20px;
    margin-top: 40px;
    border-top: 5px solid #f39c12; /* Saffron/Gold top border */
}

.footer-content {
  align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    gap: 30px;
}

.footer-info, .footer-map, .footer-gods {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.footer-info h3, .footer-map h3 {
    color: #ffffff; /* White heading */
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.footer-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-icon {
    color: #f39c12; /* Saffron color for icons next to text */
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.donate-link {
    display: inline-block;
    background-color: #f39c12;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s;
}

.donate-link:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.footer-gods {
    text-align: center;
    align-self: center;
}

.god-img {
    height: 250px;
    transition: transform 0.4s;
}

.god-img:hover {
    transform: scale(1.1);
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    border: 3px solid #4a627a;
}

/* Social Media Section Styling (Naya aur Saada) */
.footer-social {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #4a627a;
}

.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff; /* White heading */
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 35px; /* Icons ke beech thoda aur space */
}

/* YEH SABSE ZAROORI BADLAV HAI */
.social-icon {
    font-size: 2rem; /* Icon ka standard size */
    color: #bdc3c7; /* Default icon color (footer text jaisa) */
    text-decoration: none;
    transition: color 0.3s, transform 0.3s; /* Smooth transition */
}

.social-icon:hover {
    color: #ffffff; /* Mouse le jaane par icon safed ho jayega */
    transform: translateY(-5px); /* Thoda sa upar uthega */
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4a627a;
    font-size: 0.9rem;
    color: #95a5a6;
}

@keyframes float-animation {
    0% {
        transform: translateY(10px); /* Shuruaati position (thoda neeche) */
    }
    50% {
        transform: translateY(-10px); /* Beech me thoda upar jayega */
    }
    100% {
        transform: translateY(10px); /* Wapas neeche aa jayega */
    }
}

.footer-gods {
    /* position: absolute; */
    bottom: 0;
    right: 20px;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.footer-gods img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.5));

    /* YEH NAYI LINE ANIMATION KO LAGU KARTI HAI */
    animation: float-animation 5s ease-in-out infinite;
    /*
        float-animation : Animation ka naam jo humne upar banaya.
        5s              : Animation ko poora hone me 5 second lagenge.
        ease-in-out     : Animation shuru aur khatm me dheema hoga.
        infinite        : Animation hamesha chalta rahega, rukega nahi.
    */
}

/* Mobile phones par image ko chhota ya hata bhi sakte hain */
@media (max-width: 768px) {
    .footer-blessing-hanuman {
        width: 150px; /* Mobile par thoda chhota */
        right: 5px;
    }
}

@media (max-width: 480px) {
    .footer-blessing-hanuman {
        display: none; /* Bahut chhoti screen par image ko hata dein */
    }
}
/* =================================================================== */
/* == RESPONSIVE STYLES (For Tablets and Mobile Devices) == */
/* == इस कोड को अपनी CSS फाइल के सबसे आखिर में लगाएं == */
/* =================================================================== */

/* --- टैबलेट के लिए (992px से कम चौड़ाई) --- */
@media (max-width: 992px) {
    /* लीडर्स ग्रिड को 3 से 2 कॉलम में बदलें */
    .leaders-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* वेलकम सेक्शन में टेक्स्ट और वीडियो को थोड़ा स्पेस दें */
    .welcome {
        flex-direction: column;
        align-items: center;
    }

    .welcome-text,
    .welcome-video {
        flex: 1 1 90%; /* दोनों को ज्यादा चौड़ाई दें */
        max-width: 600px;
    }
    .welcome-video video{
      width: 100%;
    }

    /* फुटर के कंटेंट को बेहतर बनाएं */
    .footer-content {
        justify-content: space-around;
        gap: 30px;
    }

    .footer-info, .footer-map {
        min-width: 250px;
    }
}


/* --- मोबाइल के लिए (768px से कम चौड़ाई) --- */
@media (max-width: 768px) {

    /* --- हेडर (Header) --- */
    .header-container {
        flex-direction: column; /* लोगो और टेक्स्ट को ऊपर-नीचे लाएं */
        gap: 10px;
    }

    .header-logo {
        height: 55px; /* मोबाइल पर लोगो थोड़ा छोटा */
    }

    .mandir-heading {
        font-size: 2rem; /* मोबाइल पर हेडिंग थोड़ी छोटी */
    }

    /* --- नेविगेशन बार (Navbar) --- */
    .nav-links a {
        font-size: 1rem;
        margin: 8px 10px;
    }

    /* --- मुख्य कंटेंट (Content Wrapper) --- */
    .content-wrapper {
        padding: 20px 15px;
        font-size: 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.6rem;
    }

    /* --- हीरो सेक्शन (Hero Section) --- */
    .hero-text h2, .section-heading {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    /* --- तस्वीरों वाला सेक्शन (Attractions/Hero Images) --- */
    .hero-img img {
        width: 90%; /* तस्वीरें पूरी चौड़ाई लें */
        max-width: 300px;
    }
    
    .section-heading::after {
        width: 80px;
        height: 3px;
    }

    /* --- वेलकम वीडियो सेक्शन --- */
    .welcome-video {
        height: 300px; /* मोबाइल पर वीडियो की ऊंचाई कम करें */
    }

    /* --- फीचर्स और इन्फो कार्ड्स --- */
    .feature-cards, .info-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card, .info-cards .card {
        width: 90%; /* कार्ड्स लगभग पूरी चौड़ाई लें */
    }

    /* --- लीडर्स/संरक्षक सेक्शन --- */
    .leaders-grid {
        grid-template-columns: 1fr; /* मोबाइल पर एक ही कॉलम में दिखाएं */
    }

    .welcome-from-leaders h2 {
        font-size: 1.8rem;
    }

    /* --- जय श्री राम एनिमेशन --- */
    .gods-animation-container {
        height: 120px;
    }
    .god-text {
        font-size: 22px; /* मोबाइल पर टेक्स्ट छोटा करें */
    }

    /* एनिमेशन की पोजीशन एडजस्ट करें */
    @keyframes animateRam {
        0% { transform: translateX(-100vw) translateY(-50%); opacity: 0; }
        20% { transform: translateX(-80px) translateY(-50%); opacity: 1; }
        45% { transform: translateX(-70px) translateY(-80%); }
        70% { transform: translateX(-90px) translateY(-20%); }
        100% { transform: translateX(-80px) translateY(-50%); opacity: 1; }
    }

    @keyframes animateHanuman {
        0% { transform: translateX(100vw) translateY(-50%); opacity: 0; }
        20% { transform: translateX(80px) translateY(-50%); opacity: 1; }
        45% { transform: translateX(90px) translateY(-20%); }
        70% { transform: translateX(70px) translateY(-80%); }
        100% { transform: translateX(80px) translateY(-50%); opacity: 1; }
    }
    
    /* --- फुटर (Footer) --- */
    .footer-content {
        flex-direction: column; /* सभी आइटम्स को एक के नीचे एक लाएं */
        align-items: center; /* सब कुछ सेंटर में करें */
        text-align: center;
        gap: 40px; /* सेक्शन्स के बीच ज्यादा गैप */
    }

    .footer-info, .footer-map, .footer-gods {
        width: 100%;
        max-width: 320px;
        text-align: center; /* मोबाइल पर सब कुछ सेंटर में */
    }
    
    .footer-info p {
        justify-content: center; /* आइकॉन और टेक्स्ट को सेंटर में लाएं */
    }

    .footer-map iframe {
        height: 200px;
    }

    .footer-gods .god-img {
        height: 200px;
    }

    .social-icons {
        gap: 25px; /* सोशल आइकॉन के बीच का गैप कम करें */
    }
}


/* --- बहुत छोटी मोबाइल स्क्रीन्स के लिए (480px से कम चौड़ाई) --- */
@media (max-width: 480px) {
    /* फॉन्ट साइज को और थोड़ा कम करें */
    .mandir-heading {
        font-size: 1.7rem;
    }
    .hero-text h2, .section-heading {
        font-size: 1.8rem;
    }
    .content-wrapper {
        font-size: 0.95rem;
    }
    
    /* हनुमान जी की फ्लोटिंग इमेज को छिपा दें ताकि जगह बने */
    .footer-gods[style*="animation"] {
        display: none;
    }
}
/* =================================================================== */
/* == RESPONSIVE STYLES (For Homepage and All Devices) == */
/* == इस कोड को अपनी CSS फाइल के सबसे आखिर में लगाएं == */
/* =================================================================== */

/* --- टैबलेट के लिए (992px से कम चौड़ाई) --- */
@media (max-width: 992px) {
    /* संरक्षकों के ग्रिड को 3 से 2 कॉलम में बदलें */
    .leaders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    /* फुटर को एडजस्ट करें */
    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }
    .footer-info, .footer-map {
        flex-basis: 45%;
        min-width: 300px;
    }
    .footer-gods {
        flex-basis: 100%;
        order: -1; /* हनुमान जी की तस्वीर को ऊपर ले आएं */
    }
}


/* --- मोबाइल के लिए (768px से कम चौड़ाई) --- */
@media (max-width: 768px) {

    /* --- हेडर (Header) --- */
    .header-container {
        flex-direction: column; /* लोगो और टेक्स्ट को ऊपर-नीचे लाएं */
        gap: 10px;
        padding: 10px;
    }
    .mandir-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    /* --- नेविगेशन बार (Navbar) --- */
    .nav-links {
        padding: 5px;
        flex-wrap: wrap; /* लिंक्स को अगली लाइन में आने दें */
        justify-content: center;
    }
    .nav-links a {
        font-size: 0.9rem;
        margin: 5px 8px;
    }

    /* --- स्वागत सेक्शन (Welcome Text & Video) --- */
    .welcome {
        flex-direction: column;
        padding: 30px 20px;
    }
    .welcome-text, .welcome-video {
        flex-basis: 100%;
        max-width: 100%;
    }
    .welcome-text {
        text-align: center;
    }
    .welcome-video {
        height: 300px; /* मोबाइल पर वीडियो की ऊंचाई कम करें */
        margin-top: 20px;
    }

    /* --- संरक्षकों का सेक्शन (Leaders Section) --- */
    .leaders-grid {
        grid-template-columns: 1fr; /* मोबाइल पर एक ही कॉलम में दिखाएं */
    }
    .welcome-from-leaders h2 {
        font-size: 1.8rem;
    }

    /* --- हीरो और आकर्षण सेक्शन (Hero & Attractions) --- */
    .hero-text h2, .section-heading {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
    .hero-img {
        gap: 25px;
    }
    .hero-img img {
        width: 90%; /* तस्वीरें स्क्रीन के हिसाब से एडजस्ट होंगी */
        max-width: 300px;
    }
    
    /* --- फीचर्स और इन्फो कार्ड्स --- */
    .feature-cards, .info-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .card, .info-cards .card {
        width: 90%; /* कार्ड्स लगभग पूरी चौड़ाई लें */
    }
    .more-info {
        padding: 30px 20px;
    }

    /* --- फुटर (Footer) --- */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .footer-info, .footer-map, .footer-gods {
        width: 95%;
        max-width: 350px;
        text-align: center;
        flex-basis: auto;
        order: 0;
    }
    .footer-info p {
        justify-content: center;
    }
    .god-img {
        height: 200px;
    }
}


/* --- बहुत छोटी मोबाइल स्क्रीन्स के लिए (480px से कम चौड़ाई) --- */
@media (max-width: 480px) {
    /* फॉन्ट साइज को और थोड़ा कम करें */
    .mandir-heading {
        font-size: 1.5rem;
    }
    .welcome-text h2, .hero-text h2, .section-heading {
        font-size: 1.7rem;
    }
    body, .welcome-text p {
        font-size: 1rem;
    }
    .welcome-video {
        height: 240px; /* वीडियो की ऊंचाई और कम करें */
    }
    .leader-profile h3 {
        font-size: 1.4rem;
    }
}
.developer-credit {
    text-align: center;
  margin: 0;               
  font-size: 14px;          
  font-family: Arial, sans-serif;
}


@media (max-width: 600px) {
  .developer-credit {
    font-size: 12px; 
  }
}