/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e63946;
  --primary-dark: #c1121f;
  --secondary-color: #1d3557;
  --accent-color: #457b9d;
  --light-bg: #f8f9fa;
  --cream-bg: #fff8f0;
  --dark-bg: #1a1a2e;
  --text-dark: #2b2d42;
  --text-light: #fff;
  --text-muted: #6c757d;
  --gold: #ffd166;
  --success: #06d6a0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  overflow-x: hidden;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: var(--secondary-color);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1002;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: white;
}

/* Navigation */
.navbar {
  background: white;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 15px 25px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.logo-img.shrink {
  height: 65px;
  padding: 5px 15px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.nav-link span {
  position: relative;
  display: inline-block;
}

.nav-link span::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.nav-link:hover span::before,
.nav-link.active span::before {
  transform: translateX(-50%) scale(1);
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown > .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover > .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  padding-left: 25px;
}

.btn-nav {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  transition: 0.3s;
}

/* Hero Section - YMCA Style */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(29, 53, 87, 0.55) 0%,
    rgba(69, 123, 157, 0.4) 50%,
    rgba(230, 57, 70, 0.5) 100%
  );
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px;
  color: white;
}

.hero-welcome {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.9;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 65px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: var(--secondary-color);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header.light {
  color: white;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header.light .section-label {
  color: var(--gold);
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header.light h2 {
  color: white;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-header.light .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Programs Section */
.programs {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.programs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
  height: 250px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 30px;
}

.program-content h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.program-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.program-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.program-link:hover {
  gap: 15px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header .section-label {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.about-header h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.about-text .section-label {
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.founder-intro {
  display: block;
}

.founder-text p:first-child {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.9;
}

.founder-text p:last-child {
  font-size: 1.05rem;
  color: var(--text-muted);
  padding: 25px;
  background: var(--cream-bg);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  line-height: 1.8;
}

.founder-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 20px;
  background: var(--cream-bg);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
}

.founder-quote span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.cta-logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-values {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.value-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item span {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -15px;
  margin-bottom: -10px;
}

/* Approach Section - Redesigned */
.approach {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

.approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--gold),
    var(--primary-color)
  );
}

.approach-header {
  margin-bottom: 60px;
  text-align: center;
}

.approach-intro {
  max-width: 700px;
  margin: 0 auto;
}

.approach-intro .section-label {
  text-align: center;
}

.approach-intro h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 800;
}

.approach-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.learners-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.learner-category {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.learner-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.learner-category:hover::before {
  transform: scaleX(1);
}

.learner-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.category-icon i {
  font-size: 1.8rem;
  color: white;
}

.learner-category h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.learner-list {
  list-style: none;
}

.learner-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.learner-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.learner-list li:last-child {
  border-bottom: none;
}

.approach-cta {
  text-align: center;
  padding: 50px;
  background: var(--secondary-color);
  border-radius: 20px;
  color: white;
}

.approach-cta p {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 30px;
  opacity: 0.95;
}

.approach-cta .btn-primary {
  background: white;
  color: var(--secondary-color);
}

.approach-cta .btn-primary:hover {
  background: var(--gold);
  color: var(--secondary-color);
}

/* Impact Section */
.impact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d4a6f 100%);
  color: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.impact-stat {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: white;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  line-height: 1.5;
  opacity: 0.95;
}

.impact-stat h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}

.impact-stat p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.impact-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.insight-card i {
  color: var(--success);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.insight-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Skills Section */
.skills {
  padding: 100px 0;
  position: relative;
}

.skills::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.skill-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skill-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.skill-icon i {
  font-size: 2rem;
  color: white;
}

.skill-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.skill-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Operations Timeline Section */
.operations {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.operations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
}

.operations-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.operation-step {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.operation-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.operation-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.operation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.operation-step:hover .operation-image img {
  transform: scale(1.05);
}

.operation-step h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.operation-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Ice Cream Productions Section */
.solutions {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.solutions-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.solutions-text .section-label {
  text-align: left;
}

.solutions-text h2 {
  text-align: left;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.solutions-text .section-desc {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.solutions-detail {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.solutions-highlights {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.solutions-highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.solution-card {
  text-align: center;
  padding: 50px 35px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-top: 4px solid var(--primary-color);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.solution-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.solution-icon i {
  font-size: 2.2rem;
  color: white;
}

.solution-card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.solutions-image {
  text-align: center;
  position: relative;
}

.solutions-image::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--gold) 100%
  );
  border-radius: 15px;
  z-index: 0;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.solutions-image img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}

.solutions-image:hover::before {
  transform: translate(6px, 6px);
}

.solutions-image img:hover {
  transform: translate(-6px, -6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .solutions-image::before {
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
  }
}

/* Founder Section */
.founder {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #fef6f0 100%);
}

.founder-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-image-wrapper {
  position: sticky;
  top: 120px;
  text-align: center;
}

.founder-logo-large {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
}

.founder-bio .section-label {
  text-align: left;
}

.founder-bio h2 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.founder-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px !important;
}

.founder-bio p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-mission {
  background: var(--secondary-color);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.founder-mission h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-mission h4 i {
  color: var(--gold);
}

.founder-mission p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.founder-philosophy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.philosophy-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.philosophy-item strong {
  display: block;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.philosophy-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Story Section */
.story {
  padding: 100px 0;
  background: var(--secondary-color);
  position: relative;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-width: 85%;
}

.story-video img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-dark);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.video-modal-close:hover {
  color: var(--primary-color);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-text {
  color: white;
}

.story-text .section-label {
  color: var(--gold);
  text-align: left;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-text p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Rules Section */
.rules {
  padding: 100px 0;
  background: var(--light-bg);
}

.rules-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.rule-item {
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.rule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rule-item i {
  color: var(--primary-color);
}

.quote-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-color);
}

.quote-box p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
}

/* Involved Section */
.involved {
  padding: 100px 0;
  position: relative;
}

.involved::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.involved-card {
  text-align: center;
  padding: 50px 40px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: all 0.3s;
}

.involved-card:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.involved-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.involved-card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.involved-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.card-link:hover {
  color: var(--primary-dark);
}

/* Merch Section */
.merch {
  padding: 100px 0;
  background: var(--cream-bg);
  position: relative;
}

.merch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary-color));
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.merch-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.merch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.merch-image {
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.merch-card:hover .merch-image img {
  transform: scale(1.05);
}

.merch-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.merch-card .price {
  padding: 0 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-buy {
  display: block;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 12px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-buy:hover {
  background: var(--primary-color);
}

/* Form Styles */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin-bottom: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.checkbox-label span {
  flex: 1;
  color: var(--text-muted);
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding-top: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-brand-text h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.footer-brand-text p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-cta p {
  opacity: 0.8;
}

.btn-footer {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-footer:hover {
  background: var(--primary-dark);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.email-link {
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.email-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 5px;
  color: var(--gold);
  opacity: 1 !important;
  font-weight: 500;
}

.footer-credit-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit-link:hover {
  color: var(--gold);
}

/* Announcements Side Tab */
.announcements-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: white;
  padding: 14px 10px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.announcements-tab i {
  font-size: 1.1rem;
}

.announcements-tab span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.announcements-tab:hover {
  transform: translateY(-50%) translateX(4px);
  box-shadow: 4px 2px 15px rgba(0, 0, 0, 0.2);
}

.announcements-tab.hidden {
  transform: translateY(-50%) translateX(-100%);
  pointer-events: none;
}

/* Announcements Overlay */
.announcements-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.announcements-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Announcements Drawer */
.announcements-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background: white;
  z-index: 1100;
  transform: translateX(-100%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.announcements-drawer.active {
  transform: translateX(0);
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

.announcements-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.announcements-header h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
}

.announcements-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.3s ease;
}

.announcements-close:hover {
  color: var(--primary-color);
}

.announcements-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

.announcement-card {
  display: flex;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.announcement-accent {
  width: 5px;
  flex-shrink: 0;
  background: var(--primary-color);
}

.announcement-content {
  padding: 18px 20px;
  flex: 1;
}

.announcement-date {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.announcement-content h4 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.announcement-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.announcement-embed {
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
}

.announcement-embed .announcement-accent {
  width: 100%;
  height: 5px;
  border-radius: 10px 10px 0 0;
}

.announcement-embed .announcement-content {
  overflow: hidden;
  padding-bottom: 0;
}

.instagram-embed-clip {
  overflow: hidden;
  margin-top: 8px;
  position: relative;
}

.instagram-embed-clip iframe {
  margin-bottom: -140px !important;
}

.instagram-embed-clip .instagram-media {
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-hero {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .solutions-text h2 {
    font-size: 2rem;
  }

  .programs-grid,
  .skills-grid,
  .operations-timeline,
  .solutions-grid,
  .involved-grid,
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learners-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-insights {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow on mobile */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  /* Mobile Navbar - Fixed at top */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    transition: height 0.3s ease;
  }

  .navbar.scrolled {
    height: 55px;
  }

  .nav-container {
    padding: 0 15px;
  }

  /* Mobile Logo */
  .logo-img {
    height: 65px;
    padding: 8px 12px;
    position: relative;
    left: 0;
    top: auto;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .logo-img.shrink {
    height: 50px;
    padding: 5px 8px;
  }

  /* Hamburger positioning */
  .hamburger {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 10px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > .nav-link i {
    margin-left: auto;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
    word-wrap: break-word;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: 20px;
    word-wrap: break-word;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 25px;
  }

  /* Section Headers Mobile */
  .section-header {
    padding: 0 10px;
  }

  .section-header h2 {
    font-size: 1.8rem;
    word-wrap: break-word;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 5px;
  }

  /* Grid Layouts Mobile */
  .solutions-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions-text .section-label,
  .solutions-text h2,
  .solutions-text .section-desc,
  .solutions-detail {
    text-align: center;
  }

  .solutions-highlights {
    align-items: center;
  }

  .programs-grid,
  .skills-grid,
  .operations-timeline,
  .solutions-grid,
  .involved-grid,
  .merch-grid {
    grid-template-columns: 1fr;
    padding: 0 10px 20px 10px;
    gap: 20px;
  }

  .program-card,
  .skill-card,
  .operation-step,
  .solution-card,
  .involved-card {
    padding: 25px 20px;
    margin: 0;
  }

  .learners-showcase {
    grid-template-columns: 1fr;
  }

  .learner-category {
    padding: 30px 25px;
  }

  .approach-intro h2 {
    font-size: 2.2rem;
  }

  .approach-cta p {
    font-size: 1.1rem;
  }

  .about-content,
  .story-content,
  .founder-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-wrapper {
    position: static;
  }

  .founder-logo-large {
    width: 200px;
  }

  .founder-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-cta {
    flex-direction: column;
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Announcements Drawer Responsive */
  .announcements-drawer {
    width: 100%;
  }

  .announcements-tab {
    padding: 10px 8px;
  }

  .announcements-tab i {
    font-size: 1rem;
  }

  .announcements-tab span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-stat h3 {
    font-size: 2.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .program-card,
  .skill-card,
  .solution-card,
  .involved-card {
    padding: 20px 15px;
  }
}
