* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-navy: #1a365d;
  --secondary-navy: #2c5282;
  --accent-gold: #d4af37;
  --cream: #faf8f4;
  --light-gray: #f7fafc;
  --dark-gray: #4a5568;
  --white: #ffffff;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--cream);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(26, 54, 93, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(26, 54, 93, 0.1));
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active .hamburger:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active .hamburger:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-link:hover {
  background: var(--light-gray);
  color: var(--accent-gold);
  padding-left: 2rem;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-gray);
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-link {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .dropdown-link:hover {
    padding-left: 2.5rem;
  }

  .arrow {
    margin-left: auto;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="30" cy="30" r="1" fill="white" opacity="0.08"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.06"/><circle cx="70" cy="70" r="1" fill="white" opacity="0.04"/><circle cx="90" cy="90" r="1" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-gold);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.1s;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.4s;
}

.cta-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Section Styles */
.section {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-title {
  font-size: 3rem;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: var(--accent-gold);
  transform: translateX(-50%);
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
}

.project-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-image:not(:has(img)) {
  background: linear-gradient(
    135deg,
    var(--secondary-navy),
    var(--accent-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}

.project-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 500;
}

.project-description {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  text-align: center;
}

.project-button:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0; /* Remove padding */
}

.founder-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center; /* Add this */
  border-radius: 0; /* Remove border radius on image */
}

.about-year {
  font-size: 2rem;
  font-weight: 300;
  color: var(--primary-navy);
  letter-spacing: 2px;
  text-align: center;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 100px 0;
}

.mission-vision-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-vision-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  text-align: center;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-image-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  background: var(--light-gray);
}

.service-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-item p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.service-button:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
}

.news-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  padding-bottom: 3.5rem;
}

.news-title {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.news-description {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.news-date {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.play-icon {
  width: 70px;
  height: 70px;
  opacity: 1;
}

.play-icon circle {
  stroke: transparent;
  stroke-width: 2;
  fill: transparent;
}

.play-icon path {
  fill: white;
}

.news-card:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: rgba(212, 175, 55, 0.9);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* news images look clickable */
.news-img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.news-img:hover {
  opacity: 0.9;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.form-input,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Georgia", serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.submit-button {
  padding: 15px 30px;
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-family: "Georgia", serif;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button:hover {
  background: var(--secondary-navy);
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer p {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-link {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-gold);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.back-to-top:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

/* Form Error Styling */
.field-error {
  color: #e53e3e;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-banner {
    gap: 2rem;
    flex-direction: column;
  }

  .partner-img {
    max-height: 60px;
    max-width: 150px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    height: 350px;
  }

  .founder-image {
    max-width: 100%;
    max-height: 100%;
  }

  .about-year {
    font-size: 1.5rem;
  }

  .projects-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  /* Prevent background scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* Mobile Navigation - Increased height for better scrolling */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0 8rem 0; /* Increased bottom padding from 3rem to 8rem */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .mobile-menu {
    display: flex;
  }

  /* Center align dropdown items */
  .dropdown {
    width: 100%;
  }

  /* Dropdown Toggle - Centered with arrow on right */
  .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
  }

  .dropdown-toggle .arrow {
    position: absolute;
    right: 2rem;
    margin-left: 0;
  }

  /* Mobile Dropdown - INCREASED MAX-HEIGHT */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-transform: none;
    box-shadow: none;
    background: var(--light-gray);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }

  .dropdown.active .dropdown-menu {
    max-height: 450px;
  }

  .dropdown-link {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    text-align: center;
  }

  /* Mobile tap/active states */
  .dropdown-link:active,
  .dropdown-link:focus {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 2rem;
  }

  .nav-link:active,
  .nav-link:focus {
    color: var(--accent-gold);
  }

  .dropdown:last-of-type {
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-container {
    width: 100%;
  }

  .about-image {
    height: 350px;
    width: 100%;
  }

  .founder-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .about-year {
    font-size: 1.5rem;
  }

  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-vision-text {
    text-align: justify;
    font-size: 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    display: flex;
    flex-direction: column;
  }

  .project-image {
    height: 220px;
  }

  .project-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .project-description {
    flex-grow: 1;
  }

  .project-button {
    margin-top: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-image {
    height: 220px;
  }

  .news-info {
    padding: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .news-title {
    font-size: 1.2rem;
  }

  .news-date {
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
  }

  .play-button-overlay {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .lightbox.active {
    padding: 10px;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 35px;
  }

  .partners-banner {
    gap: 2rem;
    flex-direction: column;
  }

  .partner-img {
    max-height: 60px;
    max-width: 150px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* General Section Padding */
  .section {
    padding: 60px 0;
  }

  /* Footer */
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Smaller Mobile Devices */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .mission-vision-content {
    padding: 0 1rem;
  }

  .project-image {
    height: 200px;
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .news-image {
    height: 200px;
  }

  .news-info {
    padding: 1.25rem;
    padding-bottom: 3rem;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-description {
    font-size: 0.9rem;
  }

  .news-date {
    bottom: 1rem;
    right: 1.25rem;
  }

  .play-button-overlay {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }

  .lightbox-content {
    max-width: 98%;
    max-height: 98%;
  }

  .form-group .g-recaptcha {
    transform: scale(0.85);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* reCAPTCHA Styling */
.g-recaptcha {
  display: inline-block;
  margin: 1rem 0;
}

.form-group .g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
}
