 :root {
            /*--primary-color: #2a6e3f;*/
            --primary-color: #5dade2;
           /* --secondary-color: #3a9d5d;*/
            --secondary-color: #2ecc71;
           /*--accent-color: #ff7e30;*/
            --accent-color: #f39c12;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #333;
            --text-light: #6c757d;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Navbar Styles */
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand span {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2842, 110, 63, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-brand img {
            width: 30%;
            height: 60px;
            object-fit: cover;
        }
        
        /* Hero Section */
        .hero-section {
            /*background: linear-gradient(rgba(42, 110, 63, 0.85), rgba(58, 157, 93, 0.8)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80');*/
            background: linear-gradient(rgba(42, 110, 63, 0.85), rgba(58, 157, 93, 0.8)), url('imgs/hero-section.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        
        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #e66d22;
            border-color: #e66d22;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }




        .donate-btn {
    background: linear-gradient(45deg, #e66d22, #e66d22);
    border: none;
    padding: 10px 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(1, 134, 63, 0.538);
    text-decoration: none;
  }

  .donate-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 10px rgb(241, 8, 0);
  }
        
        /* Section Styling */
        .section-title {
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-light {
            background-color: #f9fdfa !important;
        }
        
        /* Mission Cards */
        .mission-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary-color);
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .mission-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Programs Section */
        .program-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
        }
        
        .program-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .program-card .card-body {
            padding: 1.5rem;
        }
        
        .program-card .card-title {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Stats Counter */
        .stats-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            
            .hero-section h1 {
                padding: 2rem;
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
             .contact-form-card {
                padding: 2rem;
            }
            
            .donation-amount-options {
                flex-direction: column;
            }
            
            .volunteer-options {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                padding: 4.5rem;
                font-size: 1.8rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            .contact-form-card {
                padding: 1.5rem;
            }
        }





        /*Contact Form Style*/

         /* Contact Form Styles */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-form-card {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary-color);
            margin-bottom: 80px;
        }
        
        .form-section-title {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 110, 63, 0.25);
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .required-field::after {
            content: " *";
            color: #dc3545;
        }
        
        /* Charity-Specific Form Elements */
        .donation-amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .donation-option {
            flex: 1;
            min-width: 100px;
        }
        
        .donation-option input[type="radio"] {
            display: none;
        }
        
        .donation-option label {
            display: block;
            text-align: center;
            padding: 12px;
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .donation-option input[type="radio"]:checked + label {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .donation-option label:hover {
            border-color: var(--primary-color);
        }
        
        .volunteer-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }
        
        .volunteer-option {
            display: flex;
            align-items: center;
        }
        
        .volunteer-option input[type="checkbox"] {
            margin-right: 10px;
        }
        
        .submit-btn {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            font-size: 1.1rem;
            margin-top: 20px;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #e66d22;
            border-color: #e66d22;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        /*Spinner /  loader */
        .spinner {
            width: 18px;
            height: 18px;
            border: 3px solid #fff;
            border-top: 3px solid transparent;
            border-radius: 50%;
            display: none;
            animation: spin 0.8s linear infinite;
            margin-left: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /*success or fail message*/
        .status {
            margin-top: 10px;
            padding: 12px;
            border-radius: 8px;
            display: none;
            font-weight: 600;
        }

        .status.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .status.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
                
        /* Contact Info Cards */
        .contact-info-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            height: 29%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-color);
            transition: transform 0.3s;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* FAQ Section */
        .faq-section {
            margin-top: 80px;
            padding: 60px 0;
            background-color: #f8fdfa;
            border-radius: 15px;
        }
        
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 25px;
        }
        
        .faq-question {
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            margin-top: 15px;
            color: var(--text-light);
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }




/*Bank detail table*/
 .bank-card {
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(236, 121, 6, 0.08);
  font-family: system-ui, sans-serif;
}

.bank-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
}

.bank-table td {
  padding: 10px 6px;
  font-size: 18px;
  font-weight: 800;
}

.bank-table tr td:first-child {
  color: #666;
  font-weight: 500;
  width: 45%;
}

.bank-table tr td:last-child {
  font-weight: 600;
  color: #111;
}

/* Mobile friendly */
@media (max-width: 480px) {
  .bank-table td {
    display: block;
    width: 100%;
  }

  .bank-table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
  }

  .bank-table tr td:first-child {
    font-size: 12px;
    color: #888;
  }
}


/*Whatsapp Icon*/
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 999;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-icon {
  width: 30px;
  height: 30px;
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 75px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

