/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow: #FFC000;
  --dark-navy: #001a4d;
  --light-gray: #f5f5f5;
  --medium-gray: #666;
  --dark-gray: #333;
  --text-color: #333;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffb000;
}

/* Header/Navigation */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-navy);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark-navy);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--dark-navy);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffb000;
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-navy);
  border: 2px solid var(--dark-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--dark-navy);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 4rem 3%;
  max-width: 100%;
  margin: 0 auto;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-actions button {
  font-size: 1rem;
}

.hero-image {
  flex: 1;
  min-height: 400px;
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.hero-image img {
  display: none;
}

.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, rgba(255, 192, 0, 0.8) 100%);
  border-radius: 10px;
}

.large-icon {
  font-size: 5rem;
  line-height: 1;
}

.transparency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 192, 0, 0.1);
  border-radius: 10px;
  border: 2px solid var(--primary-yellow);
}

/* Section Styles */
section {
  padding: 4rem 3%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  color: var(--dark-navy);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
#about {
  background: white;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-statement {
  margin-bottom: 2.5rem;
}

.mission-statement h2 {
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.mission-statement p {
  color: var(--medium-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.missions-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-box {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.mission-box:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-box-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-box h3 {
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.mission-box p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* Pillars Section */
#pillars {
  background: white;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pillar-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.pillar-card-image {
  display: none;
}

.pillar-card-image img {
  display: none;
}

.pillar-card-content {
  padding: 1.5rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.pillar-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Extended Pillars Grid (4 cards) */
.pillars-grid-extended {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Transparency Section */
#transparency {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a3a66 100%);
  color: white;
}

#transparency .section-label {
  color: var(--primary-yellow);
}

#transparency .section-title {
  color: white;
}

#transparency .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.transparency-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.transparency-text {
  flex: 1;
}

.transparency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.transparency-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transparency-actions button {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  width: fit-content;
}

.transparency-image {
  flex: 1;
  min-height: 350px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.transparency-image img {
  display: none;
}

/* Footer */
footer {
  background: var(--dark-navy);
  color: white;
  padding: 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* FAQ Section */
#faq {
  background-color: white;
  padding: 4rem 3%;
}

#faq .section-header {
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
  color: var(--primary-yellow);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background-color: white;
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background-color: var(--primary-yellow);
  color: var(--dark-navy);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SRIDE Initiative Showcase Section */
#sride-showcase {
  background-color: var(--light-gray);
  padding: 4rem 3%;
}

#sride-showcase .section-header {
  margin-bottom: 3rem;
}

.sride-gallery {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sride-slide {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sride-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sride-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.sride-caption {
  padding: 1.5rem;
  background: white;
}

.sride-caption h4 {
  color: var(--dark-navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.sride-caption p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin: 0;
}

.sride-impact {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border-top: 4px solid var(--primary-yellow);
}

.impact-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.impact-stat p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Global Section Background Alternate */


section:nth-child(even) {
  background-color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid-extended {
    grid-template-columns: repeat(2, 1fr);
  }

  .missions-boxes {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .transparency-content {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .transparency-actions {
    flex-direction: row;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    padding: 1rem;
  }

  .faq-toggle {
    font-size: 1.25rem;
  }

  .sride-gallery {
    grid-template-columns: 1fr;
  }

  .sride-slide img {
    height: 300px;
  }

  .sride-impact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  nav {
    padding: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .pillars-grid-extended {
    grid-template-columns: 1fr;
  }
}

/* Icon-Only Design Enhancements */
.pillar-card-content {
  padding: 2.5rem 1.5rem !important;
  text-align: center;
}

.pillar-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 1.5rem !important;
  font-size: 2rem !important;
}

.pillar-card h3 {
  font-size: 1.3rem !important;
  margin-bottom: 1rem !important;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.mission-box {
  text-align: center;
}

.mission-box-icon {
  margin: 0 auto 1rem;
}
