* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Navbar Styles ===== */
nav {
  background: linear-gradient(90deg, #0b1f3a, #143d8d);
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  color: #ffc107;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  z-index: 1000;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  text-align: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffc107;
  border-bottom: 2px solid #ffc107;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
  position: relative;
  z-index: 1001;
  padding: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  opacity: 0.9;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Container & Basics ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #0b1f3a;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

section {
  padding: 3rem 1rem;
}

/* ===== Table Styles ===== */
table {
  border-collapse: collapse;
}

table th,
table td {
  border-color: #555 !important;
}

table thead {
  background-color: #0b1f3a;
  color: white;
}

/* ===== Hero Section ===== */
.hero {
  background-image: url('../images/cover.jpeg');
  background-size: cover;
  background-position: center right;
  color: white;
  padding: 100px 1rem;
  text-align: left;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding-left: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.8s ease-in;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-in 0.2s both;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-in 0.4s both;
  margin-top: 2rem;
}

/* ===== Buttons ===== */
.btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border: none;
  display: inline-block;
}

.btn-primary {
  background-color: #ffc107;
  color: #1a3a52;
}

.btn-primary:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
  color: #1a3a52;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3c72;
}

/* ===== Page Header ===== */
.page-header {
  color: white;
  padding: 60px 1rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #0b1f3a;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-header-content p {
  font-size: 1.1rem;
  color: #0b1f3a;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* ===== About Preview Section ===== */
.about-preview {
  background-color: white;
  padding: 3rem 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  color: #0b1f3a;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-text p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 0.95rem;
}

.about-text .btn-read-more {
  margin-top: 1.5rem;
  background-color: #ffc107;
  color: #1a3a52;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.about-text .btn-read-more:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* ===== About Image Single Layout ===== */
.about-image-single {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-img-single {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== About Image Grid Layout ===== */
.about-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.about-image .placeholder-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 350px;
  object-fit: cover;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== About Content Stacked Layout (About Us Page) ===== */
.about-content-stacked {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 3rem;
  align-items: flex-start;
}

/* ===== Objective Section ===== */
.objective {
  background-color: white;
  padding: 3rem 1rem;
}

#container03 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

#objective-content {
  background: linear-gradient(90deg, #0b1f3a, #143d8d);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#objective-content h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#objective-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

#objective-content ul {
  list-style: none;
  padding: 0;
}

#objective-content ul li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.3rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}

#objective-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc107;
  font-weight: bold;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.placeholder-image {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-radius: 8px;
  text-align: center;
  color: #999;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.placeholder-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.gallery-placeholder {
  background: linear-gradient(135deg, #5c6bc0 0%, #9575cd 100%);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-buttons {
  text-align: center;
  margin-top: 2rem;
}

/* ===== Gallery Carousel Animation ===== */
.gallery-carousel-wrapper {
  overflow: hidden;
  background-color: white;
  padding: 2rem 0;
}

.gallery-carousel {
  display: flex;
  gap: 1.5rem;
  animation: scrollLeft 10s linear infinite;
  width: max-content;
}

.gallery-carousel .gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-carousel .gallery-item:hover {
  transform: scale(1.05) translateY(-5px);
}

.gallery-carousel .gallery-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.gallery-carousel .gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Statistics Section ===== */
.statistics {
  background: linear-gradient(90deg, #0b1f3a, #143d8d);
  color: white;
  padding: 4rem 1rem;
}

.statistics .container {
  padding: 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.counter-card {
  font-size: 1.1rem;
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Contact Preview Section ===== */
.contact-preview {
  background-color: white;
  padding: 3rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-item h3 {
  color: #0b1f3a;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-buttons {
  text-align: center;
  margin-top: 2rem;
}

/* ===== Vision & Mission ===== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.vm-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border-left: 5px solid;
}

.vm-card:first-child {
  border-left-color: #ffc107;
}

.vm-card:last-child {
  border-left-color: #1a3a52;
}

.vm-card h3 {
  color: #0b1f3a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.vm-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ===== Leadership Section ===== */
.leadership {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

.leadership h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0b1f3a;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leadership-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
}

.leadership-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chairman-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0b1f3a;
}

.leadership-card h4 {
  color: #0b1f3a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.leadership-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.leadership-card .position {
  color: #e53935;
  font-style: italic;
  font-size: 0.85rem;
}

/* ===== Contact Us Page Header ===== */
.contact-header {
  position: relative;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-header h1 {
  color: #0b1f3a;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.contact-header p {
  color: #0b1f3a;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

/* ===== Contact Info Section ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem 1rem 0;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  color: #0b1f3a;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: #666666;
  font-weight: 600;
}

/* ===== Quick Connect Section ===== */
.quick-connect {
  background-color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.quick-connect h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1e3c72;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.connect-item {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border-left: 5px solid #ffc107;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.connect-item:hover {
  transform: translateY(-3px);
}

.connect-item-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.connect-item h3 {
  color: #0b1f3a;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.connect-item p {
  color: #666;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(90deg, #0b1f3a, #143d8d);
  color: white;
  padding: 3rem 1rem 1rem;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section {
  color: rgba(255, 255, 255, 0.95);
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.contact-icon {
  display: inline-block;
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #ffc107;
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.social-links .social-icon:hover {
  background: #ffc107;
  color: #0f1f2e;
  transform: translateY(-3px);
  border-color: #ffc107;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.social-links .social-icon i {
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

/* ===== Donation Section ===== */
.donation-hero {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.donation-intro {
  max-width: 1000px;
  margin: 0 auto;
}

.donation-icon {
  margin-bottom: 1rem;
}

.donation-subtitle {
  color: #1a3a52;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.donation-intro h1 {
  color: #1a2332;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.donation-intro p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 900px;
}

.donation-methods {
  background-color: white;
  padding: 4rem 1rem;
}

.donation-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.donation-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.donation-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
}

.card-star {
  font-size: 1.5rem;
}

.donation-card h2 {
  color: #0b1f3a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.bank-details p,
.upi-details p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.bank-details strong,
.upi-details strong {
  color: #1a2332;
  font-weight: 700;
}

.qr-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.qr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.qr-card h3 {
  color: #0b1f3a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.qr-image-placeholder {
  width: 160px;
  height: 160px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon {
  margin-top: 1rem;
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in both;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-in both;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-in both;
}

.section-title,
.hero-content,
.about-text,
.about-image-single,
.gallery-item,
.priority-card,
.contact-item,
.footer-section {
  animation: fadeIn 0.9s ease-in both;
}

/* ===== Founder's Message Section ===== */
.founders-message {
  padding: 4rem 1rem;
}

.founders-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founders-content h2 {
  text-align: center;
  color: #0b1f3a;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 3px solid #ffc107;
}

.message-body {
  line-height: 1.9;
  color: #333;
}

.message-body p {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1rem;
  color: #444;
}

.greeting {
  font-size: 1.05rem;
  color: #0b1f3a;
  margin-bottom: 1.5rem;
}

.message-signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
  text-align: right;
}

.message-signature p {
  margin-bottom: 0.3rem;
  text-align: right;
  justify-content: flex-end;
}

.message-signature p:first-child {
  font-weight: 600;
  color: #1a3a52;
  margin-bottom: 1rem;
}

.message-signature p:last-child {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== Services Page Styles ===== */
.services-section {
  padding: 4rem 1rem;
  background-color: white;
}

.services-section.alt-bg {
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  color: #0b1f3a;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 3px solid #ffc107;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Priorities Grid */
.priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.priority-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #ffc107;
}

.priority-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.priority-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.priority-card h3 {
  color: #0b1f3a;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.priority-card h4 {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.priority-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.program-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #ffc107;
}

.program-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.program-card h3 {
  color: #0b1f3a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.program-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.program-card .description {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Activities Section */
.activities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.activities-column {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.activities-column h3 {
  color: #0b1f3a;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid #ffc107;
}

.activities-list {
  list-style: none;
}

.activities-list li {
  color: #555;
  font-size: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.activities-list li:last-child {
  border-bottom: none;
}

.activities-list li:hover {
  color: #ffc107;
  padding-left: 0.5rem;
}

/* Achievements Grid */
.achievement-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.achievement-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
  font-size: 2rem;
  color: #ffc107;
  flex-shrink: 0;
  font-weight: bold;
}

.achievement-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #1a3a52 0%, #0f2844 100%);
  color: white;
  padding: 4rem 1rem;
  margin-top: 2rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background-color: #ffc107;
  color: #1a3a52;
}

.cta-btn.primary:hover {
  background-color: #ffb300;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid #ffc107;
}

.cta-btn.secondary:hover {
  background-color: #ffc107;
  color: #1a3a52;
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger span {
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  }

  .navbar-container {
    padding: 0;
  }

  .logo {
    font-size: 1.2rem;
    padding: 0 1rem;
    gap: 0.3rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a3a52 0%, #0f2844 100%);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    width: 100%;
    z-index: 999;
  }

  .nav-links.active {
    max-height: 100vh;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    border-bottom: none;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
    padding: 1rem 1.5rem;
    padding-left: calc(1.5rem - 3px);
  }

  .hero-content h1 {
    font-size: 2.2rem;
    text-align: left;
  }

  .page-header-content h1 {
    font-size: 1.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-single {
    height: 300px;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .gallery-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .achievement-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-carousel .gallery-item {
    width: 250px;
    height: 180px;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .placeholder-image {
    max-width: 100%;
  }

  /* Responsive About Image Grid */
  .about-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-image img {
    height: 300px;
  }

  /* Responsive Objective Section */
  #container03 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #objective-content {
    padding: 2rem;
  }

  #objective-content h1 {
    font-size: 1.5rem;
  }

  #objective-content ul li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .donation-intro h1 {
    font-size: 1.8rem;
  }

  .donation-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Services Page Responsive */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .priorities-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .activities-container {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .services-section {
    padding: 2rem 1rem;
  }

  .priority-card,
  .program-card,
  .activities-column,
  .achievement-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.5rem;
  }

  .navbar-container {
    padding: 0;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1rem;
    padding: 0 0.5rem;
    gap: 0.2rem;
  }

  .hamburger {
    padding: 0.5rem;
    margin-right: 0.5rem;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .nav-links {
    max-height: 0;
    overflow: hidden;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    color: white;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    padding: 0.9rem 1.2rem;
    padding-left: calc(1.2rem - 3px);
    color: #ffc107;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .page-header-content h1 {
    font-size: 1.4rem;
  }

  #objective-content h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  #objective-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  #objective-content ul li {
    font-size: 0.85rem;
    padding-left: 2rem;
    margin-bottom: 0.9rem;
  }

  .about-image {
    gap: 1rem;
  }

  .about-image img {
    height: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-links .social-icon {
    width: 36px;
    height: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card .stat-number {
    font-size: 2.5rem;
  }

  .donation-intro h1 {
    font-size: 1.5rem;
  }

  .donation-icon {
    font-size: 2.5rem;
  }

  .donation-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .donation-card {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  /* Services Page Small Screens */
  .priority-icon {
    font-size: 2.5rem;
  }

  .program-icon {
    font-size: 3rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .gallery-carousel .gallery-item {
    width: 200px;
    height: 150px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 0.9rem;
  }

  .logo span {
    display: none;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  section {
    padding: 2rem 0.75rem;
  }

  .container {
    padding: 1.5rem 0.75rem;
  }

  .gallery-carousel .gallery-item {
    width: 180px;
    height: 130px;
  }
}