 /* Base Styles */
        :root {
            --primary: #8a2be2;
            --secondary: #ff69b4;
            --accent: #4169e1;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
            --equity-blue: #0047BB;
            --equity-light: #E8F0FE;
            --creditcard-gold: #FFD700;
            --creditcard-light: #FFF9E6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
            /* Header Styles */
  .site-header{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:12px 0;
  }
  .container1{
    width:95%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo + Title */
  .brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }
  .logo{
    height:50px;
    margin-right:10px;
  }
  .brand-title{
    font-size:1.3rem;
    font-weight:700;
    color:#a80000;
  }

  /* Navigation */
  .navbar .menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
  }
  .navbar .menu > li{
    position:relative;
    margin:0 12px;
  }
  .navbar .menu > li > a{
    text-decoration:none;
    font-weight:600;
    color:#333;
    padding:8px 10px;
  }
  .navbar .menu > li > a:hover{
    color:#a80000;
  }
/*.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle; 
  position: relative;
  top: -2px;              
}
*/

  /* Dropdown */
  .submenu{
    list-style:none;
    margin:0;
    padding:8px 0;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    display:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .submenu li a{
    display:flex;
    padding:10px 15px;
    align-items: center;
    text-decoration:none;
    color:#333;
    font-size:0.95rem;
    gap: 8px;
  }
  .submenu li a:hover{
    background:#f4f4f4;
    color:#a80000;
  }

  .submenu li a .icon {
  width: 18px;
  height: 18px;
}

/* Dropdown Fix */
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;   /* stays open if hovered or focused */
}

  /* Donate Button */
.donate {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.donate h2 {
  color: #a80000;
  margin-bottom: 15px;
}

.donate p {
  margin-bottom: 25px;
  color: #444;
}

.donate-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #a80000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
  .donate-btn:hover{
    background:#ff7a00;
  }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(138, 43, 226, 0.85), rgba(65, 105, 225, 0.85)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #ff4da6;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Payment Section */
        .payment-section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--primary);
        }
        
        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .payment-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .payment-info {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .payment-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
        }
        
        .payment-method {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .method-tab {
            flex: 1;
            padding: 1rem;
            text-align: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .method-tab.active {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .equity-tab {
            background: var(--equity-light);
            color: var(--equity-blue);
            border: 2px solid var(--equity-blue);
        }
        
        .equity-tab.active {
            background: var(--equity-blue);
            color: white;
        }
        
        .creditcard-tab {
            background: var(--creditcard-light);
            color: #B8860B;
            border: 2px solid var(--creditcard-gold);
        }
        
        .creditcard-tab.active {
            background: var(--creditcard-gold);
            color: #333;
        }
        
        .payment-details {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e9ecef;
        }
        
        .detail-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .detail-label {
            font-weight: 500;
            color: #666;
        }
        
        .detail-value {
            font-weight: 600;
            color: var(--primary);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .highlight-box h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .steps {
            margin-top: 1.5rem;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .step-number {
            background: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .payment-form {
            margin-top: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .amount-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .amount-option {
            padding: 10px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .amount-option:hover, .amount-option.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .submit-btn {
            background: var(--equity-blue);
            color: white;
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            background: #0039A6;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 71, 187, 0.3);
        }
        
        .creditcard-btn {
            background: linear-gradient(135deg, #FFD700, #B8860B);
            color: #333;
        }
        
        .creditcard-btn:hover {
            background: linear-gradient(135deg, #FFC400, #A87800);
        }
        
        .security-notice {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
            padding: 1rem;
            background: #e8f7ee;
            border-radius: 5px;
            color: #006633;
        }
        
        .security-notice i {
            font-size: 1.2rem;
        }
        
        .card-icons {
            display: flex;
            gap: 10px;
            margin-top: 0.5rem;
        }
        
        .card-icon {
            width: 50px;
            height: 30px;
            background: #f0f0f0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #666;
        }
        
        /* Impact Section */
        .impact-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .impact-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .impact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .impact-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .impact-label {
            font-size: 1rem;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Credit Card Form Styling */
        .credit-card-form {
            display: none;
        }
        
        .bank-transfer-form {
            display: block;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .payment-container {
                grid-template-columns: 1fr;
            }
            
            .payment-method {
                flex-direction: column;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }