 /* ============================
           CSS Variables (Theming)
           ============================ */
 :root {
     /* Light Mode (Default) */
     --primary-color: #2563eb;
     --secondary-color: #f59e0b;
     --success-color: #10b981;
     --text-color: #1f2937;
     --text-light: #6b7280;
     --bg-color: #f3f4f6;
     --card-bg: #ffffff;
     --nav-bg: #ffffff;
     --border-color: #e5e7eb;
     --input-bg: #f9fafb;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }

 /* Dark Mode */
 [data-theme="dark"] {
     --primary-color: #3b82f6;
     --secondary-color: #fbbf24;
     --success-color: #34d399;
     --text-color: #f9fafb;
     --text-light: #9ca3af;
     --bg-color: #111827;
     --card-bg: #1f2937;
     --nav-bg: #1f2937;
     --border-color: #374151;
     --input-bg: #374151;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
 }

 /* ============================
           Reset & Global
           ============================ */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background-color: var(--bg-color);
     color: var(--text-color);
     transition: var(--transition);
     line-height: 1.6;
     overflow-x: hidden;
 }


 /* Logo Container */
 .logo {
     display: flex;
     align-items: center;
     border-radius: 50%;
     justify-content: flex-start;
 }

 .logos {
     border: black;
     border-radius: 20px;
 }

 /* Logo Image */
 .logo img {
     height: 50px;
     /* logo size control */
     width: auto;
     /* aspect ratio maintain */
     object-fit: contain;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 /* Hover Effect */
 .logo img:hover {
     transform: scale(1.05);
 }


 /* Responsive Logo */
 @media (max-width: 768px) {
     .logo img {
         height: 40px;
     }
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;

 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     text-align: justify;
 }

 /* ============================
           Header & Responsive Nav
           ============================ */
 header {
     background-color: var(--nav-bg);
     box-shadow: var(--shadow);
     position: sticky;
     top: 0;
     z-index: 1000;
     padding: 15px 0;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .nav-links a {
     font-weight: 500;
     transition: color 0.3s;
 }

 .nav-links a:hover {
     color: var(--primary-color);
 }

 .donate-btn-nav {
     background-color: var(--secondary-color);
     color: #fff;
     padding: 8px 20px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.9rem;
     transition: var(--transition);
 }

 .donate-btn-nav:hover {
     background-color: #d97706;
     transform: scale(1.05);
 }

 .nav-controls {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .theme-toggle {
     cursor: pointer;
     font-size: 1.2rem;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: var(--bg-color);
     color: var(--text-color);
     border: 1px solid var(--border-color);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
 }

 .hamburger {
     display: none;
     cursor: pointer;
     font-size: 1.5rem;
     color: var(--text-color);
 }

 @media (max-width: 768px) {
     .hamburger {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background-color: var(--nav-bg);
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
         transform: translateY(-150%);
         transition: transform 0.4s ease-in-out;
         z-index: 999;
     }

     .nav-links.active {
         transform: translateY(0);
     }

     .donate-btn-nav {
         width: 100%;
         text-align: center;
         display: block;
     }
 }

 /* ============================
           Hero Section
           ============================ */
 .hero {
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/image\ \(8\).jpeg');
     background-size: cover;
     background-position: center;
     height: 80vh;
     min-height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #fff;
     padding: 0 20px;
 }

 @media (max-width: 600px) {
     .hero {
         background-position: center 40%;
     }
 }

 .hero-content h1 {
     font-size: 2.5rem;
     margin-top: -150px;
     line-height: 1.2;
     margin-bottom: 80px;
 }

 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2rem;
     }
 }

 .hero-content p {
     font-size: 1.1rem;
     margin-bottom: 30px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }


 .btn {
     display: inline-block;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     margin-top: 10px;
     transition: var(--transition);
     cursor: pointer;
     border: 2px solid transparent;
 }

 .btn-primary {
     background-color: var(--primary-color);
     color: #fff;
 }

 .btn-primary:hover {
     background-color: #1d4ed8;
 }

 .btn-outline {
     background-color: transparent;
     color: #fff;
     border-color: #fff;
     margin-left: 10px;
 }

 .btn-outline:hover {
     background-color: #d97706;

 }

 /* ============================
           Section Styles
           ============================ */
 .section-padding {
     padding: 60px 0;
     /* margin-bottom: 60px; */

 }

 @media (min-width: 992px) {
     .section-padding {
         padding: 80px 0;
     }
 }

 .section-title {
     text-align: center;

     margin-bottom: 40px;
 }

 .section-title h2 {
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .section-title p {
     color: var(--text-light);
 }

 /* Responsive Grid Layout */
 .split-grid {
     display: grid;
     grid-template-columns: 1fr;
     /* Mobile: 1 col */
     gap: 30px;
     align-items: center;
     /* Center items vertically */
 }

 @media (min-width: 992px) {
     .split-grid {
         grid-template-columns: 1fr 1fr;
     }

     /* Desktop: 2 cols */
 }

 /* ============================
           About Section Styles
           ============================ */
 .about-text h2 {
     font-size: 2.2rem;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .about-text p {
     margin-bottom: 15px;
     color: var(--text-light);
     line-height: 1.8;
 }

 .about-img-container {
     position: relative;
 }

 .about-img-container img {
     width: 100%;
     border-radius: 20px;
     box-shadow: var(--shadow);
     transition: transform 0.3s;
 }

 .about-img-container:hover img {
     transform: scale(1.02);
 }

 /* ============================
           Objectives
           ============================ */
 .objectives-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     text-align: justify;
 }

 .obj-card {
     background-color: var(--card-bg);
     padding: 30px;
     border-radius: 15px;
     text-align: justify;
     box-shadow: var(--shadow);
     border-top: 5px solid var(--secondary-color);
 }

 .obj-icon {
     font-size: 2.5rem;
     color: var(--secondary-color);
     margin-bottom: 15px;
 }

 .obj-card h3 {
     margin-bottom: 10px;
     font-size: 1.25rem;
     text-align: center;

 }

 .obj-card p {
     font-size: 0.95rem;
     color: var(--text-light);
 }

 /* ============================
           Donate Section
           ============================ */
 .donate-card {
     background-color: var(--card-bg);
     padding: 30px;
     border-radius: 20px;
     box-shadow: var(--shadow);

 }

 .bank-info h3 {
     font-size: 1.4rem;
     margin-bottom: 20px;
     color: var(--text-color);
     border-bottom: 2px solid var(--secondary-color);
     display: inline-block;
     padding-bottom: 5px;
 }

 .payment-info h3 {
     font-size: 1.4rem;
     margin-bottom: 20px;
     color: var(--text-color);
     border-bottom: 2px solid var(--secondary-color);
     display: inline-block;
     padding-bottom: 5px;
 }




 .bank-details-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .bank-details-list li {
     display: flex;
     align-items: flex-start;
     border-bottom: 1px solid var(--border-color);
     padding: 12px 0;
     font-size: 0.95rem;
     gap: 50px;
     /* width: 600px; */
 }

 .bank-label {
     min-width: 250px;
     /* 👈 yahi magic hai */
     max-width: 500px;
     font-weight: 600;
     color: var(--primary-color);
 }

 .bank-details-list li span:last-child {
     flex: 1;
     text-align: left;
 }

 .qr-container {
     text-align: center;
     background: var(--input-bg);
     padding: 20px;
     border-radius: 15px;
     margin-top: 20px;
 }

 .qr-img {
     width: 180px;
     height: 180px;
     margin: 0 auto 15px;
     border: 2px solid var(--border-color);
     padding: 5px;
 }

 .upi-id {
     display: inline-block;
     background: var(--card-bg);
     padding: 10px;
     border-radius: 5px;
     border: 1px solid var(--primary-color);
     color: var(--primary-color);
     font-weight: 600;
     font-size: 1rem;
 }

 /* ============================
           Contact Section
           ============================ */
 .contact-info-box {
     background-color: var(--card-bg);
     padding: 30px;
     border-radius: 20px;
     box-shadow: var(--shadow);
     height: 100%;
 }

 .map-container {
     width: 100%;
     height: 180px;
     /* 👈 red box ke hisab se */
     margin-top: 20px;
     border-radius: 10px;
     overflow: hidden;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }


 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 20px;
 }

 .contact-icon {
     width: 45px;
     height: 45px;
     background-color: rgba(37, 99, 235, 0.1);
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .contact-form {
     background-color: var(--card-bg);
     padding: 30px;
     border-radius: 20px;
     box-shadow: var(--shadow);
     height: 100%;
     width: 100%;
 }

 .form-group {
     margin-bottom: 15px;
 }

 .form-group label {
     display: block;
     margin-bottom: 5px;
     font-weight: 500;
     font-size: 0.9rem;
 }

 .form-control {
     width: 100%;
     padding: 12px;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     background-color: var(--input-bg);
     color: var(--text-color);
     font-family: inherit;
     font-size: 0.95rem;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--primary-color);
 }

 .submit-btn {
     width: 100%;
     padding: 12px;
     background-color: var(--primary-color);
     color: #fff;
     border: none;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s;
 }

 .submit-btn:hover {
     background-color: #1d4ed8;
 }

 /* ============================
           Footer
           ============================ */
 /* Footer Base */
 /* ================= FOOTER BASE ================= */
 footer {
     background: #1f2a3a;
     color: #fff;
     padding: 50px 0 20px;
     margin-top: 80px;
 }

 /* Container */
 .container {
     max-width: 1200px;
     margin: auto;
     padding: 0 ,20px;

 }

 /* ================= GRID ================= */
 .footer-grid {
     display: flex;
     gap: 20px;
     /* reduced gap */
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
   
 }

 /* ================= COLUMNS ================= */

 /* LEFT (Logo + About) - MORE WIDTH */
 .footer-col:first-child {
     flex: 0 0 380px;
     /* पहले 320px था → अब बड़ा */
     margin-right: 40px;
 }

 .footer-col:first-child li {
     flex: 0 0 380px;
     /* पहले 320px था → अब बड़ा */
     margin-right: 40px;
 }

 /* बाकी columns */
 .footer-col:not(:first-child) {
     flex: 1;
     min-width: 200px;
     text-align: center;
 }

 /* थोड़ा compact middle columns */
 .footer-col:nth-child(2),
 .footer-col:nth-child(3) {
     flex: 1.8;
     text-align: start;
 }

 /* ================= TEXT ================= */

 .footer-col h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: #fff;
     /* text-align: center; */
 }

 .footer-col p {
     font-size: 14px;
     line-height: 1.6;
     color: #ccc;
     margin-left: 56px;
 }

 /* ================= LINKS ================= */

 .footer-col ul {
     list-style: none;
     padding: 0;
 }

 .footer-col ul li {
     margin-bottom: 8px;
     text-align: start;

 }

 .footer-col ul li a {
     text-decoration: none;
     color: #ccc;
     font-size: 14px;
     transition: 0.3s;

 }

 .footer-col ul li a:hover {
     color: #fff;
 }

 /* ================= CONTACT INFO ================= */

 .contact-info {
     text-align: start;
 }

 .contact-info li {
     display: flex;
     /* justify-content: center; */
     align-items: center;
     gap: 8px;
     font-size: 14px;
     color: #ccc;
     margin-bottom: 10px;
     text-align: center;
 }

 /* ================= SOCIAL ================= */

 /* Follow column center */
 .footer-col:last-child {
     text-align: center;
 }

 /* Icons center */
 .social-icons {
     display: flex;
     /* justify-content: center; */
     gap: 12px;
     margin-top: 10px;
     margin-left: 55px;
 }

 .social-icons a {
     width: 38px;
     height: 38px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #2e3b4e;
     border-radius: 50%;
     color: #fff;
     transition: 0.3s;
 }

 .social-icons a:hover {
     background: #007bff;
 }

 /* ================= COPYRIGHT ================= */

 .copyright {
     margin-top: 30px;
     padding-top: 15px;
     border-top: 1px solid #444;
     text-align: center;
     font-size: 13px;
     color: #aaa;
 }

 /* ================= RESPONSIVE ================= */

 /* Tablet */
 @media (max-width: 992px) {
     .footer-grid {
         gap: 20px;
     }

     .footer-col:first-child {
         flex: 0 0 100%;
     }
 }

 /* Mobile */
 @media (max-width: 600px) {
     .footer-grid {
         flex-direction: column;
         text-align: start;
     }

     .footer-col {
         width: 100%;
      
     }

     .contact-info li {
        
         margin-left: 60px;
     }

   
     .footer-col h3 {
         font-size: 18px;
         margin-bottom: 15px;
         color: #fff;
         /* margin-left: 60px; */

     }

     @media (max-width: 600px) {
    .footer-col:not(:first-child) h3 {
        margin-left: 60px;
        text-align: start;
    }
}
 }

 /* documents */
 .document-section {
     padding: 90px;
     margin-top: -60px;
     background: #f9f9f9;
 }

 .document-section h2 {
     font-size: 2.2rem;
     color: var(--primary-color);
     margin-bottom: 20px;
     text-align: center;
     margin-top: 40px;

 }

 .doc-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .doc-card {
     background: #fff;
     border-radius: 10px;
     padding: 15px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .doc-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
 }

 .pdf-view {
     width: 100%;
     height: 500px;
     overflow: hidden;
     border: 1px solid #ddd;
     border-radius: 8px;
 }


 .pdf-view iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .img-card {
     width: 100%;
     height: 240px;
     margin-top: 40px;
 }

 .img-card h3 {
     display: flex;
     justify-content: center;
     margin-bottom: 10px;

 }

 .img-view {
     display: flex;
     justify-content: center;
     height: 240px
 }
 .img-head{
    margin-top: 60px;
 }

 .view-btn {
     display: inline-block;
     margin-top: 10px;
     padding: 8px 15px;
     background: #007bff;
     color: #fff;
     border-radius: 5px;
     text-decoration: none;
 }

 .view-btn:hover {
     background: #0056b3;
 }


 /* ================= RESPONSIVE ================= */

 /* Tablet */
 @media (max-width: 992px) {
     .doc-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .pdf-view {
         height: 400px;
     }

     .document-section {
         padding: 60px 20px;
     }
 }

 /* Mobile */
 @media (max-width: 600px) {
     .doc-grid {
         grid-template-columns: 1fr;
     }

     .pdf-view {
         height: 500px;
     }

     .document-section {
         padding: 40px 15px;
         margin-top: 0;
     }

     .doc-card h3 {
         font-size: 16px;
     }

     .img-card {
         height: auto;
     }

     .img-view {
         height: auto;
     }
 }

 /* mission */
 /* Container for side-by-side layout */
 .mv-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: 25px;
     /* margin-left: 80px;
    margin-right: 80px; */
 }

 /* Common Card Style */
 .mission-box,
 .vision-box {
     padding: 20px;
     border-radius: 12px;
     background: #ffffff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: 0.3s ease;

 }

 /* Different Colors */
 .mission-box {
     border-top: 4px solid #007bff;
 }

 .vision-box {
     border-top: 4px solid #ff7a00;
 }

 /* Hover Effect */
 .mission-box:hover,
 .vision-box:hover {
     transform: translateY(-6px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
 }

 /* Heading */
 .mission-box h3,
 .vision-box h3 {
     font-size: 20px;
     margin-bottom: 10px;
     font-weight: 600;
     color: #222;
 }

 /* Text */
 .mission-box p,
 .vision-box p {
     font-size: 15px;
     color: #555;
     line-height: 1.7;
 }

 /* Responsive (Mobile me stack ho jayega) */
 @media (max-width: 768px) {
     .mv-container {
         grid-template-columns: 1fr;
     }
 }

 .mv-heading {
     text-align: center;
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 25px;
     position: relative;
     color: #007bff;
     /* main color */
     margin-top: 40px;
 }

 /* Underline Design */
 .mv-heading::after {
     content: "";
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #007bff, #ff7a00);
     display: block;
     margin: 10px auto 0;
     border-radius: 2px;
 }

/* **********************Donate**************************** */
/* ================= DONATE PAGE RESPONSIVE ================= */
/* ================= DONATE SECTION RESPONSIVE ================= */

/* Grid layout fix */
.split-grid {
    display: flex;
    gap: 30px;
    
}

/* Cards */
.donate-card {
    flex: 1;
    width: 100%;
}

/* Bank details alignment */
.bank-details-list {
    padding: 0;
    margin: 0;
}

.bank-details-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* Prevent overflow */
.bank-details-list li span:last-child {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .split-grid {
        gap: 20px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    /* Stack layout */
    .split-grid {
        flex-direction: column;
    }

    /* Bank details vertical */
    .bank-details-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .bank-details-list li span:last-child {
        width: 100%;
    }

    /* QR responsive */
    .qr-img {
        max-width: 180px;
        width: 100%;
    }

    .upi-id {
        font-size: 14px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .donate-card {
        padding: 15px;
    }

    .qr-img {
        max-width: 150px;
    }

    .section-title h2 {
        font-size: 22px;
    }
}