/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #f6b630;
    --primary-dark: #1a5657;
    --primary-light: #4a9a9b;
    --secondary-color: #e53e3e;
    --secondary-light: #fc8181;
    --accent-color: #38b2ac;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 400;
    --font-weight-normal: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
/* overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--bg-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    color: var(--primary-light);
}

/* ===== Header ===== */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}
.section-header {
    max-width: 100%;
    height: auto;
}
.logo-tag{
    display: flex;
    margin-left: 10%;
    padding-top: 20px;    
}

.logo-align {
    width: auto;
    height: 100px;
    display: block;
}

.header-text {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 16px;
    font-weight: 900;
    color: #1f2e6a; /* dark blue similar to image */
}

.logo-text{
 padding-left: 40px;
 padding-top: 20px;

}
.what-we-do {
  padding: 80px 20px;
  background: #ffffff;
  top:auto;
  left: 0;
  right: 0;
  bottom: auto;
  margin-top: 500px;
}

.container_one {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.image-box img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.content-box {
  max-width: 520px;
}

.content-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1a44;
  margin-bottom: 20px;
}

.content-box .highlight {
  font-weight: 600;
  color: #0b1a44;
  margin-bottom: 18px;
  line-height: 1.6;
}

.content-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Button */
.btn-read {
  display: inline-block;
  margin-top: 20px;
  background: #f5b42c;
  color: #000;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-read:hover {
  background: #e0a31f;
}

/* Slide Show */

/* Slideshow container */

/* .mySlides {display: none;}
.numbertext img {vertical-align: middle;}
    
.slideshow-container {
  
   position: relative;
  width: auto;
  height:auto;
}

/* Caption text */
/*.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/*
/* Number text (1/3 etc) */
/* .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
} */

/* The dots/bullets/indicators */
/* .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
} */

/* .active {
  background-color: #717171;
} */

/* Fading animation */
/* .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}  */

/* Slide Show End */

/* Responsive scaling */
@media (max-width: 600px) {
    .logo-tag {
        flex-direction: column;
        text-align: center;
    }
    .header-text {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== Navigation ===== */
.main-nav {
    flex: 1;
    margin: 0 2rem;
}


.nav-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu-item {
    position: relative;
}

.menu-item a {
    font-weight: var(--font-weight-normal);
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.menu-item:hover > a,
.menu-item.current-menu-item > a {
    color: var(--primary-color);
}

/* Dropdown Menu */
.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid var(--border-color);
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.sub-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* ===== Donate Button ===== */
.donate-btn {
    margin-left: 1rem;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}
.hero-section{
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
/* ===== Hero Section ===== */
/* .hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
} */

/* .hero-slider {
    width: 100%;
}

.hero-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
} */

/* .slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
}.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}.slide:first-child {
  display: block;
}.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}.next {
  right: 0;
  border-radius: 3px 0 0 3px;
} */

/* ===== Support Section ===== */
.support-section {
    background-color: var(--bg-light);
    padding: var(--spacing-xxl) 0;
}

.section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.support-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
}

/* ===== What We Do Section ===== */
.what-we-do-section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Impact Section ===== */
.impact-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-xxl) 0;
}

.impact-section .section-header h2 {
    color: var(--bg-white);
}

.impact-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.impact-stat {
    padding: 2rem;
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Footer ===== */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-xxl) 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-bottom a:hover {
    color: var(--bg-white);
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.topbar {
  background: #1a1d52; /* dark navy */
  color: white;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a {
  color: white;
  margin-right: 12px;
  text-decoration: none;
  font-size: 15px;
}

.topbar-left i {
  transition: 0.3s;
}

.topbar-left i:hover {
  color: #ccccff;
}

.topbar-right span {
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
}

.topbar-right i {
  margin-right: 5px;
  font-size: 14px;
}

.divider {
  opacity: 0.7;
}


/* ============================= */
/* 📱 RESPONSIVE DESIGN START */
/* ============================= */

/* Large tablets (≤1024px) */
@media (max-width: 1024px) {

  .container,
  .container_one {
    padding: 0 20px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .container_one {
    flex-direction: column;
    text-align: center;
  }

  .content-box,
  .image-box {
    max-width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}


/* Tablets (≤768px) */
@media (max-width: 768px) {

  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Header */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow-md);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
  }

  /* Hero */
  .hero-section {
    height: auto;
  }

  /* What We Do */
  .what-we-do {
    margin-top: 100px;
    padding: 40px 20px;
  }

  .content-box h2 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 15px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* Mobile (≤480px) */
@media (max-width: 480px) {

  html {
    font-size: 14px;
  }

  .logo img {
    height: 45px;
  }

  .header-text {
    font-size: 12px;
    gap: 5px;
  }

  .hero-section {
    height: auto;
  }

  .content-box h2 {
    font-size: 22px;
  }

  .btn,
  .btn-large {
    width: 100%;
    padding: 12px;
  }

  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .topbar-right span {
    display: block;
    margin-bottom: 5px;
  }

  .impact-number {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}


/* Extra Small Devices (≤360px) */
@media (max-width: 360px) {

  .content-box h2 {
    font-size: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p {
    font-size: 13px;
  }

}
