@font-face{
    font-family: oswald;
    src:url(/fonts/Oswald-ExtraLight.ttf);
  }
  
  /* RESPONSIVE FOUNDATION */
  /* Add this viewport tag to your HTML <head> section if not already present:
     <meta name="viewport" content="width=device-width, initial-scale=1.0"> */
  
   /* Basic styling - Made responsive */
   :root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --background-color: #8a98a4;
      --text-color: #343a40;
      --white-color: #ffffff;
  }
  
  * {
      box-sizing: border-box; /* Ensures padding doesn't break layouts */
  }
  
  body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: var(--background-color);
      color: var(--text-color);
      overflow-x: hidden; /* Prevents horizontal scroll */
  }
  
  .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  a {
      color: var(--primary-color);
      text-decoration: none;
  }
  
  a:hover {
      text-decoration: bold;
  }
  
  section {
      padding: 60px 0;
  }
  
  h1, h2, h3 {
      margin-bottom: 20px;
      word-wrap: break-word; /* Prevents overflow */
  }
  
  h1 {
      font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
      color: var(--white-color);
  }
  
  h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      text-align: center;
      color: var(--primary-color);
  }
  
  h3 {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  
 /* Header - Fully Responsive */
header {
    background-color: var(--white-color, #ffffff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: bold;
    color: var(--text-color, #333);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: auto;
    height: 50px;
    max-width: 100px;
}

/* Mobile menu button - visible on small screens */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color, #333);
    padding: 10px;
    min-height: 44px; /* Touch-friendly */
    min-width: 44px; /* Touch-friendly */
}

/* Desktop Navigation */
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    font-weight: 600;
    color: var(--text-color, #333);
    transition: color 0.3s ease;
    padding: 8px 12px;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
}

header nav ul li a:hover {
    color: var(--primary-color, #2e86c1);
    background-color: rgba(46, 134, 193, 0.1);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    header nav ul {
        gap: 15px;
    }
    
    header nav ul li a {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
}

/* Mobile (768px and below) - Show hamburger menu */
@media (max-width: 768px) {
    header .container {
        padding: 0.8rem 15px;
    }
    
    /* Show hamburger menu button */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    /* Hide desktop navigation by default */
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white-color, #ffffff);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    /* Show navigation when active */
    header nav.active {
        right: 0;
    }
    
    /* Mobile navigation list */
    header nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    header nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    header nav ul li:last-child {
        border-bottom: none;
    }
    
    header nav ul li a {
        padding: 15px;
        font-size: 1.1rem;
        justify-content: flex-start;
        width: 100%;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    header .container {
        padding: 0.6rem 10px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    header nav {
        width: 85%;
    }
    
    header nav ul li a {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    header nav ul li a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
  
  /* Hero section - Made responsive */
  #hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1500x800.png?text=Charity+Hero+Image') no-repeat center center/cover;
      min-height: 100vh; /* Changed from fixed height */
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white-color);
      padding: 80px 20px 60px; /* Responsive padding */
      transition: background-image 1s ease-in-out;
  }
  
  .hero-content {
      width: 100%;
      max-width: 800px;
      padding: 0 15px;
  }
  
  .btn {
      display: inline-block;
      padding: 14px 30px;
      background-color: var(--primary-color);
      color: var(--white-color);
      border-radius: 5px;
      font-weight: 600;
      margin-top: 20px;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      font-size: 1rem;
      min-height: 44px; /* Touch-friendly */
      min-width: 44px;
      text-align: center;
  }
  
  .btn:hover {
      background-color: #0056b3;
      text-decoration: none;
  }
  
  /* About Us Section - Made responsive */
  .about-section {
      background: linear-gradient(to right, #f8f9fa, #e9ecef);
      padding: 60px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .about-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .about-heading {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      text-align: center;
      margin-bottom: 30px;
      color: #2e86c1;
      position: relative;
      padding-bottom: 15px;
  }
  
  .about-heading:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f39c12;
      border-radius: 2px;
  }
  
  .about-content {
      display: flex;
      flex-wrap: wrap; /* Allows stacking on mobile */
      align-items: center;
      gap: 40px;
  }
  
  .about-text {
      flex: 1 1 300px; /* Flexible basis */
      min-width: 0; /* Fixes flexbox overflow */
  }
  
  .about-text p {
      font-size: clamp(1rem, 2vw, 1.1rem);
      line-height: 1.8;
      margin-bottom: 25px;
      color: #333;
  }
  
  .about-highlights {
      margin-top: 30px;
  }
  
  .highlight-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
  }
  
  .highlight-icon {
      width: 50px;
      height: 50px;
      background: #2e86c1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: white;
      font-size: 1.2rem;
      flex-shrink: 0; /* Prevents shrinking */
  }
  
  .highlight-text {
      flex: 1;
      min-width: 200px;
  }
  
  .highlight-text h4 {
      margin-bottom: 5px;
      color: #2e86c1;
      font-size: clamp(1rem, 2vw, 1.2rem);
  }
  
  .about-image {
      flex: 1 1 300px;
      min-width: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
  }
  
  .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
      transform: scale(1.05);
  }
  
  .about-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-top: 50px;
      gap: 20px;
  }
  
  .stat-item {
      text-align: center;
      padding: 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      flex: 1 1 180px;
      min-width: 150px;
      transition: transform 0.3s ease;
  }
  
  .stat-item:hover {
      transform: translateY(-10px);
  }
  
  .stat-number {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      color: #2e86c1;
      margin-bottom: 10px;
  }
  
  .stat-label {
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      color: #333;
  }
  
  /* Mission Section - Made responsive */
  .mission-section {
      background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
      padding: 60px 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: white;
  }
  
  .mission-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .mission-heading {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      text-align: center;
      margin-bottom: 40px;
      color: white;
      position: relative;
      padding-bottom: 15px;
  }
  
  .mission-heading:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f39c12;
      border-radius: 2px;
  }
  
  .mission-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
      gap: 30px;
      margin-top: 40px;
  }
  
  .mission-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 350px;
  }
  
  .mission-item:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      background: rgba(255, 255, 255, 0.15);
  }
  
  .mission-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #f39c12;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
  }
  
  .mission-item:hover:before {
      transform: scaleX(1);
  }
  
  .mission-icon {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      font-size: 1.8rem;
      color: #f39c12;
      transition: all 0.3s ease;
  }
  
  .mission-item:hover .mission-icon {
      background: #f39c12;
      color: white;
      transform: scale(1.1) rotate(5deg);
  }
  
  .mission-item h3 {
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      margin-bottom: 20px;
      color: white;
      position: relative;
      padding-bottom: 15px;
  }
  
  .mission-item h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 3px;
      background-color: #f39c12;
      border-radius: 2px;
  }
  
  .mission-item p {
      font-size: clamp(0.95rem, 2vw, 1.05rem);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      flex-grow: 1;
  }
  
  /* Individual mission colors */
  .mission-item:nth-child(1) .mission-icon {
      color: #4CAF50;
  }
  
  .mission-item:nth-child(1):hover .mission-icon {
      background: #4CAF50;
      color: white;
  }
  
  .mission-item:nth-child(1) h3:after {
      background-color: #4CAF50;
  }
  
  .mission-item:nth-child(1):before {
      background: #4CAF50;
  }
  
  .mission-item:nth-child(2) .mission-icon {
      color: #2196F3;
  }
  
  .mission-item:nth-child(2):hover .mission-icon {
      background: #2196F3;
      color: white;
  }
  
  .mission-item:nth-child(2) h3:after {
      background-color: #2196F3;
  }
  
  .mission-item:nth-child(2):before {
      background: #2196F3;
  }
  
  .mission-item:nth-child(3) .mission-icon {
      color: #FF9800;
  }
  
  .mission-item:nth-child(3):hover .mission-icon {
      background: #FF9800;
      color: white;
  }
  
  .mission-item:nth-child(3) h3:after {
      background-color: #FF9800;
  }
  
  .mission-item:nth-child(3):before {
      background: #FF9800;
  }
  
  /* Projects Section - Made responsive */
  #projects {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding: 50px 0;
      margin: 30px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 16px;
  }
  
  #projects .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
  }
  
  #projects h2 {
      text-align: center;
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      margin-bottom: 40px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 15px;
      font-weight: 700;
  }
  
  #projects h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 5px;
      background: linear-gradient(90deg, #3498db, #2ecc71);
      border-radius: 3px;
  }
  
  #projects .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
      gap: 25px;
  }
  
  #projects .project-item {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
  }
  
  #projects .project-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  #projects .project-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }
  
  #projects .project-item:hover img {
      transform: scale(1.05);
  }
  
  #projects .project-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }
  
  #projects .project-item h3 {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      margin-bottom: 15px;
      color: #2c3e50;
      font-weight: 600;
      position: relative;
      padding-bottom: 10px;
  }
  
  #projects .project-item h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #3498db, #2ecc71);
      border-radius: 2px;
  }
  
  #projects .project-item p {
      color: #555;
      margin-bottom: 0;
      flex-grow: 1;
      line-height: 1.7;
      font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  #projects .project-item b {
      color: #2c3e50;
      font-weight: 600;
  }

  /* ==================== */
/* PROJECTS SLIDESHOW STYLES */
/* ==================== */

/* Slideshow container */
#projects .project-grid {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px; /* Ensure space for slides */
}

/* Individual project items in slideshow */
#projects .project-item {
    display: none; /* Hidden by default */
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: fadeIn 0.5s ease forwards;
}

#projects .project-item.active {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation buttons */
#projects .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 44px;
    min-width: 44px;
}

#projects .nav-btn:hover {
    background: rgba(41, 128, 185, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#projects .prev-btn {
    left: 25px;
}

#projects .next-btn {
    right: 25px;
}

/* Dots/pagination indicators */
#projects .dots-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 0;
}

#projects .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#projects .dot:hover {
    background: rgba(52, 152, 219, 0.7);
    transform: scale(1.3);
}

#projects .dot.active {
    background: rgba(52, 152, 219, 1);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Slide counter */
#projects .slide-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

/* Auto-play controls */
#projects .autoplay-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

#projects .autoplay-toggle {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

#projects .autoplay-toggle:hover {
    background: #2980b9;
}

#projects .speed-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

#projects .speed-control select {
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: white;
}

/* ==================== */
/* RESPONSIVE ADJUSTMENTS */
/* ==================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    #projects .project-grid {
        min-height: 450px;
    }
    
    #projects .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    #projects .prev-btn {
        left: 15px;
    }
    
    #projects .next-btn {
        right: 15px;
    }
    
    #projects .dots-container {
        margin-top: 25px;
        gap: 12px;
    }
    
    #projects .dot {
        width: 14px;
        height: 14px;
    }
}

/* Mobile Phones (576px and below) */
@media (max-width: 576px) {
    #projects .project-grid {
        min-height: 400px;
    }
    
    #projects .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    #projects .prev-btn {
        left: 10px;
    }
    
    #projects .next-btn {
        right: 10px;
    }
    
    #projects .dots-container {
        margin-top: 20px;
        gap: 10px;
        padding: 10px 0;
    }
    
    #projects .dot {
        width: 12px;
        height: 12px;
    }
    
    #projects .slide-counter {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .autoplay-controls {
        flex-direction: column;
        gap: 10px;
    }
}

/* Very Small Phones (400px and below) */
@media (max-width: 400px) {
    #projects .project-grid {
        min-height: 350px;
    }
    
    #projects .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    #projects .prev-btn {
        left: 8px;
    }
    
    #projects .next-btn {
        right: 8px;
    }
    
    #projects .dots-container {
        gap: 8px;
    }
    
    #projects .dot {
        width: 10px;
        height: 10px;
    }
}

  /* Donation section - Made responsive */
  #donate {
      background: linear-gradient(135deg, var(--secondary-color), #1a5276);
      text-align: center;
      padding: 50px 20px;
      border-radius: 15px;
      margin: 30px 0;
      color: var(--white-color);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  #donate h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 20px;
      color: var(--white-color);
  }
  
  #donate p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--white-color);
      opacity: 0.9;
      padding: 0 15px;
  }
  
  .donation-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
  }
  
  .donation-method {
      background: rgba(255, 255, 255, 0.1);
      padding: 25px 20px;
      border-radius: 12px;
      text-align: center;
      width: 100%;
      max-width: 350px;
      min-width: 280px;
      color: var(--white-color);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }
  
  .donation-method::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
          45deg,
          transparent, 
          rgba(255, 255, 255, 0.1), 
          transparent
      );
      transform: rotate(45deg);
      transition: all 0.5s ease;
      z-index: 0;
  }
  
  .donation-method:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
  }
  
  .donation-method:hover::before {
      left: 50%;
      top: 50%;
  }
  
  .donation-method.bank {
      --accent-color: #3498db;
  }
  
  .donation-method.mobile {
      --accent-color: #27ae60;
  }
  
  .donation-method.person {
      --accent-color: #f39c12;
  }
  
  .method-icon {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: var(--accent-color);
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
  }
  
  .donation-method:hover .method-icon {
      transform: scale(1.1) rotate(5deg);
      background: var(--accent-color);
      color: white;
  }
  
  .donation-method h3 {
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      margin-bottom: 15px;
      color: var(--white-color);
      position: relative;
      z-index: 1;
  }
  
  .donation-method p {
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  .method-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      position: relative;
      z-index: 1;
  }
  
  .donation-method.active .method-details {
      max-height: 500px;
      margin-top: 15px;
  }
  
  .expand-btn {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px auto 0;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      min-height: 44px;
      min-width: 44px;
  }
  
  .expand-btn:hover {
      background: var(--accent-color);
      transform: rotate(90deg);
  }
  
  .donation-method ul {
      list-style-type: none;
      text-align: left;
      margin-top: 15px;
      padding: 0;
  }
  
  .donation-method li {
      margin-bottom: 8px;
      padding-left: 20px;
      position: relative;
      color: var(--white-color);
      font-size: clamp(0.85rem, 2vw, 0.95rem);
  }
  
  .donation-method li:before {
      content: "•";
      color: var(--accent-color);
      font-weight: bold;
      position: absolute;
      left: 0;
  }
  
  .copy-btn {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 4px;
      margin-left: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      min-height: 44px;
      min-width: 44px;
  }
  
  .copy-btn:hover {
      background: var(--accent-color);
  }
  
  .copied-tooltip {
      position: absolute;
      background: var(--green-color);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
  }
  
  .copied-tooltip.show {
      opacity: 1;
  }
  
  /* Contact Section - Made responsive */
  #contact {
      background: linear-gradient(135deg, #1a5276, #2e86c1);
      color: white;
      padding: 50px 0;
      border-radius: 15px;
      margin: 30px 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  #contact h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      text-align: center;
      margin-bottom: 20px;
      color: white;
      position: relative;
      padding-bottom: 15px;
  }
  
  #contact h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f39c12;
      border-radius: 2px;
  }
  
  #contact > .container > p {
      text-align: center;
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      max-width: 800px;
      margin: 0 auto 40px;
      opacity: 0.9;
      line-height: 1.8;
      padding: 0 15px;
  }
  
  .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
  }
  
  .contact-info > div {
      flex: 1 1 250px;
      min-width: 0;
      background: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .contact-info > div:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
  }
  
  .contact-info h3 {
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      margin-bottom: 20px;
      color: #f39c12;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .contact-info h3 i {
      margin-right: 10px;
  }
  
  .contact-info p {
      margin-bottom: 10px;
      font-size: clamp(0.9rem, 2vw, 1.05rem);
  }
  
  .contact-info a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-block;
      margin: 5px 0;
      padding: 8px 0;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .contact-info a:hover {
      color: #f39c12;
      text-decoration: underline;
  }
  
  .contact-info b {
      color: #f39c12;
      display: block;
      margin: 10px 0;
  }
  
  /* Footer Styles - Made responsive */
  footer {
      background: linear-gradient(to right, #1a5276, #2e86c1);
      color: white;
      padding: 40px 0 20px;
      margin-top: 50px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .footer-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 40px;
  }
  
  .footer-section {
      flex: 1 1 250px;
      min-width: 0;
  }
  
  .footer-section h3 {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
  }
  
  .footer-section h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #f39c12;
  }
  
  .footer-about p {
      margin-bottom: 15px;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
  }
  
  .footer-links ul {
      list-style: none;
      padding: 0;
  }
  
  .footer-links li {
      margin-bottom: 12px;
  }
  
  .footer-links a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      padding: 5px 0;
      min-height: 44px;
  }
  
  .footer-links a:hover {
      color: #f39c12;
      padding-left: 5px;
  }
  
  .footer-links i {
      margin-right: 8px;
      font-size: 0.9rem;
  }
  
  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  
  .contact-item {
      display: flex;
      align-items: flex-start;
      flex-wrap: wrap;
  }
  
  .contact-item i {
      margin-right: 12px;
      margin-top: 4px;
      color: #f39c12;
      flex-shrink: 0;
  }
  
  .newsletter p {
      margin-bottom: 15px;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
  }
  
  .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px;
  }
  
  .newsletter-form input {
      flex: 1 1 200px;
      padding: 12px 15px;
      border: none;
      border-radius: 4px;
      font-size: 0.9rem;
      min-width: 0;
  }
  
  .newsletter-form button {
      background-color: #f39c12;
      color: white;
      border: none;
      border-radius: 4px;
      padding: 12px 20px;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s;
      min-height: 44px;
      min-width: 44px;
  }
  
  .newsletter-form button:hover {
      background-color: #e67e22;
  }
  
  .social-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 20px;
  }
  
  .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: all 0.3s;
      min-height: 44px;
      min-width: 44px;
  }
  
  .social-icons a:hover {
      background-color: #f39c12;
      transform: translateY(-3px);
  }
  
  .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: clamp(0.8rem, 2vw, 0.9rem);
      color: #ccc;
  }
  
  /* ==================== */
  /* RESPONSIVE MEDIA QUERIES */
  /* ==================== */
  
  /* Large Tablets and Small Laptops (769px - 1024px) */
  @media (max-width: 1024px) {
      .container {
          max-width: 95%;
      }
      
      section {
          padding: 50px 0;
      }
      
      .mission-item {
          min-height: 320px;
      }
  }
  
  /* Tablets (577px - 768px) */
  @media (max-width: 768px) {
      /* Header adjustments for mobile */
      header .container {
          flex-direction: row; /* Keep logo and menu in row */
          justify-content: space-between;
      }
      
      .menu-toggle {
          display: block; /* Show hamburger menu */
      }
      
      header nav ul {
          display: none; /* Hide menu by default on mobile */
          flex-direction: column;
          width: 100%;
          position: absolute;
          top: 100%;
          left: 0;
          background-color: var(--white-color);
          box-shadow: 0 5px 10px rgba(0,0,0,0.1);
          padding: 20px 0;
      }
      
      header nav ul.show {
          display: flex; /* Show when toggled */
      }
      
      header nav ul li {
          margin: 0;
          width: 100%;
          text-align: center;
      }
      
      header nav ul li a {
          padding: 15px;
          width: 100%;
          justify-content: center;
      }
      
      /* Hero section adjustments */
      #hero {
          padding: 100px 15px 60px;
      }
      
      .hero-content h1 {
          font-size: clamp(1.8rem, 6vw, 2.5rem);
      }
      
      /* About section adjustments */
      .about-content {
          flex-direction: column;
      }
      
      .about-text, .about-image {
          flex: 1 1 100%;
      }
      
      /* Mission section adjustments */
      .mission-grid {
          grid-template-columns: 1fr;
      }
      
      .mission-item {
          min-height: auto;
      }
      
      /* Projects section adjustments */
      #projects .project-grid {
          grid-template-columns: 1fr;
      }
      
      /* Donation section adjustments */
      .donation-info {
          flex-direction: column;
          align-items: center;
      }
      
      .donation-method {
          max-width: 100%;
      }
      
      /* Footer adjustments */
      .footer-content {
          flex-direction: column;
          gap: 40px;
      }
      
      .footer-section {
          width: 100%;
      }
      
      .newsletter-form {
          flex-direction: column;
      }
      
      .newsletter-form input,
      .newsletter-form button {
          width: 100%;
      }
  }
  
  /* Mobile Phones (max-width: 576px) */
  @media (max-width: 576px) {
      body {
          font-size: 14px;
      }
      
      .container {
          padding: 0 15px;
      }
      
      section {
          padding: 40px 0;
      }
      
      h1 {
          font-size: 1.8rem;
      }
      
      h2 {
          font-size: 1.6rem;
      }
      
      h3 {
          font-size: 1.3rem;
      }
      
      /* Hero section */
      #hero {
          padding: 90px 15px 40px;
          min-height: 80vh;
      }
      
      .hero-content h1 {
          font-size: 1.8rem;
      }
      
      .btn {
          padding: 12px 25px;
          font-size: 0.9rem;
      }
      
      /* About section */
      .about-heading, .mission-heading, #projects h2, #donate h2, #contact h2 {
          font-size: 1.6rem;
      }
      
      .about-stats {
          flex-direction: column;
          align-items: center;
      }
      
      .stat-item {
          width: 100%;
          max-width: 250px;
      }
      
      /* Contact section */
      .contact-info > div {
          flex: 1 1 100%;
      }
      
      /* Touch target improvements */
      .btn, header nav ul li a, .expand-btn, .copy-btn, 
      .newsletter-form button, .social-icons a {
          min-height: 44px;
          min-width: 44px;
      }
      
      /* Reduce padding on small screens */
      .mission-item, .project-content, .donation-method, 
      .contact-info > div, .footer-section {
          padding: 20px 15px;
      }
  }
  





  
  /* Very Small Phones (max-width: 
  /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    transition: background-image 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-btn {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Moving Dots Container */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 3;
    padding: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dot.active {
    background: #f39c12;
    transform: scale(1.3);
}

/* Moving Dot Animation */
.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 5s linear;
    border-radius: 50%;
}

.dot.active::before {
    left: 100%;
    transition: left 5s linear;
}

/* Progress Bar Style Dots */
.dot.progress-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.dot.progress-dot::before {
    height: 100%;
    background: #f39c12;
    border-radius: 2px;
}

.dot.progress-dot.active::before {
    left: 0%;
    animation: progress 5s linear forwards;
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Image Preloading */
.preload-images {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    from {
        left: -100%;
    }
    to {
        left: 0%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dots-container {
        bottom: 30px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.progress-dot {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-nav {
        padding: 0 10px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dots-container {
        bottom: 20px;
        flex-wrap: wrap;
    }
    
    .dot.progress-dot {
        width: 25px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        height: 65vh;
        min-height: 300px;
    }
    
    .dots-container {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Performance Optimizations */
.hero-section {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Content Animation Reset on Slide Change */
.hero-content.animating h1,
.hero-content.animating p,
.hero-content.animating .hero-btn {
    animation: none;
    opacity: 0;
    transform: translateY(30px);
}
.pay-btn {
    display: inline-block;
    width: auto;
    text-decoration: none;
    background: linear-gradient(135deg, #0070ba, #003087);
    border-radius: 14px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Inner Flex Layout */
.pay-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* PayPal Charity Button Styles */
.paypal-charity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #003087 0%, #009cde 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
    width: auto;
    min-width: 250px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* PayPal logo SVG */
.paypal-charity-btn .paypal-logo {
    width: 28px;
    height: 28px;
    fill: white;
    transition: transform 0.3s ease;
}

/* Button text container */
.paypal-charity-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.paypal-charity-btn .btn-text .small-text {
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.9;
}

.paypal-charity-btn .btn-text .large-text {
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

/* Heart icon for charity feel */
.paypal-charity-btn .heart-icon {
    font-size: 1.2em;
    margin-left: 4px;
    animation: heartbeat 1.5s ease infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Hover effects */
.paypal-charity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 48, 135, 0.4);
    background: linear-gradient(135deg, #00226b 0%, #0077b3 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.paypal-charity-btn:hover .paypal-logo {
    transform: scale(1.05);
}

/* Active state */
.paypal-charity-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 48, 135, 0.3);
}

/* Focus state for accessibility */
.paypal-charity-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5), 0 4px 15px rgba(0, 48, 135, 0.3);
}

/* Charity ribbon effect */
.paypal-charity-btn::before {
    content: '🎗️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    opacity: 0;
    transform: rotate(15deg);
    transition: all 0.3s ease;
    pointer-events: none;
}

.paypal-charity-btn:hover::before {
    opacity: 1;
    top: -5px;
    right: -5px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .paypal-charity-btn {
        padding: 14px 24px;
        min-width: 200px;
        gap: 8px;
    }

    .paypal-charity-btn .paypal-logo {
        width: 24px;
        height: 24px;
    }

    .paypal-charity-btn .btn-text .small-text {
        font-size: 0.65em;
    }

    .paypal-charity-btn .btn-text .large-text {
        font-size: 1em;
    }
}

@media (max-width: 320px) {
    .paypal-charity-btn {
        padding: 12px 20px;
        min-width: 160px;
    }

    .paypal-charity-btn .paypal-logo {
        width: 20px;
        height: 20px;
    }
}

/* Optional: If you want a light background variant */
.paypal-charity-btn.light-bg {
    background: white;
    color: #003087;
    border: 2px solid #003087;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.paypal-charity-btn.light-bg .paypal-logo {
    fill: #003087;
}

.paypal-charity-btn.light-bg:hover {
    background: #f5f5f5;
    border-color: #009cde;
    color: #009cde;
}

.paypal-charity-btn.light-bg:hover .paypal-logo {
    fill: #009cde;
}


/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bank-info-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(10px, 3vw, 30px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ===== MAIN CARD ===== */
.bank-info-card {
    background: #ffffff;
    border-radius: clamp(16px, 4vw, 28px);
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 48, 135, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

/* ===== HEADER SECTION ===== */
.bank-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(25px, 5vw, 35px);
    padding-bottom: clamp(15px, 3vw, 25px);
    border-bottom: 2px solid #eef2f6;
}

.header-icon {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: linear-gradient(135deg, #003087, #009cde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(20px, 4vw, 26px);
    flex-shrink: 0;
}

.bank-header h3 {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.header-subtitle {
    font-size: clamp(13px, 3vw, 15px);
    color: #64748b;
    margin-top: 4px;
}

.preferred-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    border-radius: 100px;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-left: auto;
    white-space: nowrap;
}

/* ===== DETAILS GRID ===== */
.bank-details-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2.5vw, 18px);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1.5vw, 15px);
    padding: clamp(12px, 2vw, 18px);
    background: #f8fafc;
    border-radius: clamp(12px, 3vw, 18px);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.detail-row:hover {
    background: #ffffff;
    border-color: #00308720;
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.05);
}

.highlight-row {
    background: linear-gradient(135deg, #eef2ff, #ffffff);
    border-left: 4px solid #003087;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: clamp(100px, 20%, 140px);
    font-weight: 600;
    color: #475569;
    font-size: clamp(14px, 3vw, 16px);
}

.detail-label i {
    color: #003087;
    width: 20px;
    font-size: clamp(14px, 3vw, 16px);
}

.detail-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(8px, 1.5vw, 15px);
}

/* Bank Name */
.bank-name {
    font-weight: 700;
    color: #003087;
    font-size: clamp(14px, 3vw, 17px);
}

.former-name {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #64748b;
    font-style: italic;
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Account Number */
.account-number-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    width: 100%;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 700;
    color: #003087;
    background: #ffffff;
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    border-radius: 50px;
    border: 2px dashed #003087;
    letter-spacing: 1px;
    word-break: break-all;
}

/* Account Name */
.account-name-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.account-name {
    font-weight: 600;
    color: #1e293b;
    font-size: clamp(14px, 3vw, 17px);
}

.account-role {
    font-size: clamp(11px, 2.2vw, 13px);
    color: #64748b;
    background: #e9ecef;
    padding: 3px 10px;
    border-radius: 50px;
}

/* SWIFT Code */
.swift-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.swift-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #2c3e50;
    background: #1e293b;
    color: #ffffff;
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    border-radius: 8px;
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: 1px;
}

/* ===== COPY BUTTONS ===== */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #00308730;
    padding: clamp(6px, 1.5vw, 10px) clamp(10px, 2vw, 16px);
    border-radius: 50px;
    color: #003087;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-btn i {
    font-size: clamp(12px, 2.5vw, 14px);
}

.copy-btn:hover {
    background: #003087;
    color: white;
    border-color: #003087;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.2);
}

.copy-btn:active {
    transform: translateY(0);
}

.icon-only {
    padding: 8px 12px;
    border-radius: 50%;
}

/* ===== INTERNATIONAL NOTICE ===== */
.international-notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: clamp(12px, 3vw, 16px);
    padding: clamp(15px, 3vw, 20px);
    margin: clamp(20px, 4vw, 30px) 0;
}

.international-notice i {
    font-size: clamp(18px, 4vw, 24px);
    color: #fbbf24;
}

.international-notice p {
    flex: 1;
    font-size: clamp(13px, 2.8vw, 15px);
    color: #856404;
    line-height: 1.5;
}

.international-notice strong {
    font-weight: 700;
    background: #ffffff;
    padding: 3px 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1.5vw, 15px);
    margin: clamp(20px, 4vw, 30px) 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: clamp(10px, 2vw, 15px);
    background: #f8fafc;
    border-radius: clamp(10px, 2.5vw, 14px);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item i {
    font-size: clamp(16px, 3.5vw, 22px);
    color: #003087;
}

.trust-item span {
    font-size: clamp(11px, 2.2vw, 13px);
    font-weight: 600;
    color: #475569;
}

.trust-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 48, 135, 0.1);
}

/* ===== SUPPORT FOOTER ===== */
.support-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    padding-top: clamp(15px, 3vw, 25px);
    border-top: 2px solid #eef2f6;
    font-size: clamp(13px, 2.8vw, 15px);
    color: #64748b;
}

.support-footer i {
    color: #003087;
    font-size: clamp(14px, 3vw, 16px);
}

.support-footer a {
    color: #003087;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.support-footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .bank-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .preferred-badge {
        margin-left: 0;
    }

    .detail-row {
        flex-direction: column;
    }

    .detail-label {
        min-width: 100%;
    }

    .account-number-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-number {
        width: 100%;
        text-align: center;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .bank-info-wrapper {
        padding: 8px;
    }

    .bank-info-card {
        padding: 16px;
    }

    .account-name-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .swift-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .swift-code {
        width: 100%;
        text-align: center;
    }

    .international-notice {
        flex-direction: column;
        text-align: center;
    }

    .support-footer {
        flex-direction: column;
        text-align: center;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .account-number {
        font-size: 14px;
        padding: 8px;
    }

    .bank-name {
        font-size: 13px;
        word-break: break-word;
    }

    .former-name {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .bank-info-wrapper {
        padding: 10px;
    }

    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .bank-info-card {
        background: #1e293b;
        border-color: #334155;
    }

    .bank-header h3 {
        color: #f1f5f9;
    }

    .header-subtitle {
        color: #94a3b8;
    }

    .detail-row {
        background: #2d3a4f;
    }

    .detail-row:hover {
        background: #334155;
        border-color: #009cde40;
    }

    .detail-label {
        color: #cbd5e1;
    }

    .detail-label i {
        color: #009cde;
    }

    .bank-name {
        color: #009cde;
    }

    .account-number {
        background: #1e293b;
        color: #ffffff;
        border-color: #009cde;
    }

    .account-name {
        color: #f1f5f9;
    }

    .trust-item {
        background: #2d3a4f;
    }

    .trust-item span {
        color: #cbd5e1;
    }

    .support-footer {
        border-top-color: #334155;
        color: #94a3b8;
    }

    .support-footer a {
        color: #009cde;
    }

    .former-name, .account-role {
        background: #334155;
        color: #cbd5e9;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bank-info-card {
        box-shadow: none;
        border: 1px solid #000;
    }

    .copy-btn, .trust-indicators {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mb-0 {
    margin-bottom: 0;
}



