@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  background: rgb(110,190,125);
background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
}

/* ///////////..utility classes../////////// */

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  color: #fff;
  background: #16a083;
}

.btn-primary:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

/* ............/navbar/............ *

/* desktop mode */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  width: 100%;
  background: url('Images/navbanner2.jpg') no-repeat center center; /* Add background image */
  background-size: cover; /* Ensure the image covers the entire navbar */
  color: #fff; /* Change text color for better contrast against the background */
  opacity: 0.85;
  height: 104px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Center all items vertically */
  height: 100%;
  padding: 0 1rem; /* Add padding for better spacing */
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center text in logo container */
  justify-content: center;
  text-align: center;
  padding: 0;
  margin: 0;
}

.company-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 0; /* Remove any margin */
}

.company-motto {
  font-size: 1rem;
  color: #777;
  margin-top: 2px; /* Reduce the margin-top to bring motto closer to company name */
}

.menu-items {
  display: flex;
  list-style: none;
  margin-left: auto; /* Push menu items to the right */
}

.menu-items li {
  margin-left: 1.5rem;
  font-size: 1rem; /* Smaller font size */
  position: relative; /* Position relative to enable dropdowns */
}

.menu-items a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  display: flex;
  align-items: center; /* Align icons and text */
  transition: color 0.3s ease-in-out;
}

.menu-items a i {
  margin-right: 8px; /* Space between icon and text */
}

.menu-items a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

/* Dropdown Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(219,230,175);
  background: radial-gradient(circle, rgba(219,230,175,1) 0%, rgba(208,213,218,1) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

/* Dropdown Item Styles */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.dropdown-menu a:hover {
  background: rgb(219,230,175);
  background: radial-gradient(circle, rgba(219,230,175,1) 0%, rgba(208,213,218,1) 100%);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s 0s;
}

/* Optional: Slight animation on the hover for the dropdown */
.dropdown:hover .dropdown-menu {
  animation: fadeIn 0.3s ease-in-out;
}

/* Dropdown Hover Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments (Optional) */
@media (max-width: 768px) {
  .menu-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-items li {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* ............//// Showcase styling ////......... */

.showcase-area {
  height: 70vh;
  background: linear-gradient(
          rgba(240, 240, 240, 0.144),
          rgba(255, 255, 255, 0.336)
      ),
      url("./Images/crousel_photo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* Position relative to allow absolute positioning of carousel */
}

.carousel {
  position: absolute; /* Make the carousel absolute to fit in the showcase */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Fill the entire showcase area */
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}



/* ......//about us//...... */
.hero-section {
  background-image: url('https://via.placeholder.com/1920x600');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #343a40;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
}


/* .........../Gallery photo/............ */

/* General Section Styles */
/* General Section Styles */
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Background: Apply the linear gradient */
#tech-services {
  background: rgb(110,190,125);
background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
  padding: 60px 20px; /* Add padding for spacing */
}

/* Container setup */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  padding: 40px;
}

/* Service Item styling */
.service-item {
  background: rgb(219,230,175);
background: radial-gradient(circle, rgba(219,230,175,1) 0%, rgba(208,213,218,1) 100%);
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(30px); /* Start lower to animate */
  opacity: 0; /* Start invisible */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Add animation for sliding up */
.services-container .service-item {
  animation: slideUp 0.8s forwards;
  animation-delay: calc(0.2s * var(--i)); /* Stagger animation with a delay */
}

/* Stagger effect with custom variable for animation delays */
.service-item:nth-child(1) {
  --i: 1;
}
.service-item:nth-child(2) {
  --i: 2;
}
.service-item:nth-child(3) {
  --i: 3;
}
.service-item:nth-child(4) {
  --i: 4;
}
.service-item:nth-child(5) {
  --i: 5;
}

/* Keyframe for sliding animation */
@keyframes slideUp {
  from {
      transform: translateY(30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Title styling */
.service-title {
  font-size: 1.5rem;
  margin-top: 15px;
  color: #333;
  font-weight: bold;
}

/* Icon size and hover effect */
.service-icon i {
  color: #4CAF50;
  transition: transform 0.3s ease;
}

.service-icon i:hover {
  transform: scale(1.2);
}

/* Description paragraph styling */
.service-description p {
  color: #666;
  margin-top: 10px;
}

/* Hover effect on service items */
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Section Heading */
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .services-container {
      flex-direction: column;
      align-items: center;
  }
  .service-item {
      width: 100%;
      max-width: 400px;
  }
}


/* ........./ Testimonial /.......... */
/* Basic styles for body */
/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
.collaboration {
  font-family: 'Poppins', sans-serif;
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 50px;
  text-align: center;
}

/* Title container */
.title-container {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Title styling and animation */
.titles {
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: slideIn 2s ease-out forwards;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

/* Animation for title sliding in from the left */
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Text container styling */
.text-container {
  max-width: 850px;
  padding: 30px;
  background: rgb(219,230,175);
background: radial-gradient(circle, rgba(219,230,175,1) 0%, rgba(208,213,218,1) 100%);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fadeInUp 2.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  z-index: 0;
}

/* Paragraph styling with animation */
.animated-text {
  font-size: 1em;
  color: #333;
  line-height: 1.8;
  letter-spacing: 1px;
  animation: textFadeIn 3s ease-in-out 1s forwards;
}

/* Animation for text fading in and moving up */
@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for text fading in upwards */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive typography */
@media (max-width: 768px) {
  .titles {
    font-size: 1.5em;
  }

  .animated-text {
    font-size: 1em;
  }

  .text-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.5em;
  }

  .animated-text {
    font-size: 1em;
  }

  .text-container {
    padding: 15px;
  }
}




/* ........ Contact Us........... */

#contact {
  padding: 5rem 0;
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
}

.contact-container {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-img {
  width: 100%;
}

.contact-img img {
  display: block;
  height: auto;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.form-container {
  padding: 2rem;
  width: 100%;
}

.form-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.form-container input,
.form-container textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
  transition: border-bottom 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  border-bottom: 2px solid #007BFF;
  outline: none;
}

.form-container button {
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
}

@media (min-width: 768px) {
  .contact-container {
      flex-direction: row;
  }

  .contact-img {
      width: 50%;
  }

  .form-container {
      width: 50%;
      padding: 3rem;
  }
}

@media (max-width: 767px) {
  .form-container h2 {
      font-size: 2rem;
  }

  .form-container input,
  .form-container textarea {
      font-size: 0.9rem;
  }
}

/* #footer h2 {
  text-align: center;
  font-size: 1.8rem;
  padding: 2.6rem;
  font-weight: 500;
  color: #fff;
  background: rgb(65, 65, 65);
}
 */
/* ......../ media query /.......... */

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }

  /* ......./ food /......... */

  .food-container {
    flex-direction: column;
    align-items: stretch;
  }

  .food-type:not(:last-child) {
    margin-bottom: 3rem;
  }

  .food-type {
    box-shadow: 5px 5px 10px 0 #aaa;
  }

  .img-container {
    margin: 0;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 65%;
  }

  .navbar .menu-items li {
    font-size: 1.6rem;
  }

  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .food-menu-container img {
    margin: auto;
  }

  .food-menu-item {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    width: 90%;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-img {
    width: 90%;
    margin: 3rem auto;
  }

  .logo {
    position: absolute;
    top: 06px;
    right: 15px;
    font-size: 3rem;
  }

  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .img-container h3 {
    font-size: 1.5rem;
  }

  .img-container .btn {
    font-size: 0.7rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .showcase-area {
    height: 50vmax;
  }
}


/* footer section */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");



.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  animation-delay: 0.2s;
}

.footer-bottom {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  animation-delay: 0.4s;
}

.socials {
  list-style: none;
  padding: 0;
}

.socials li {
  display: inline;
  margin: 0 10px;
}

.socials a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: #f39c12;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .footer-content h3 {
      font-size: 1.5em;
  }
}
 
/* our mission and vison section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vission1 {
  font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.mission1 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.paravision {
  font-size: 1.1rem;
  color: #f1f1f1;
  line-height: 1.8;
}

/* Mission and Vision Section */
.mission-vision {
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.9), rgba(50, 90, 180, 0.8));

  padding: 80px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.containers {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mission, .vision {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.mission i, .vision i {
  font-size: 3rem;
  color: #ffcb00;
  margin-bottom: 20px;
}

.mission:hover, .vision:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.mission h2, .vision h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.mission p, .vision p {
  font-size: 1.2rem;
  color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .containers {
      flex-direction: column;
      gap: 30px;
  }

  .mission, .vision {
      text-align: left;
  }

  .mission h2, .vision h2 {
      font-size: 1.6rem;
  }

  .mission p, .vision p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission i, .vision i {
      font-size: 2.5rem;
  }

  .mission h2, .vision h2 {
      font-size: 1.4rem;
  }

  .mission p, .vision p {
      font-size: 0.9rem;
  }
}
/* Reset some default browser styles */
/* Basic Reset */
/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and General Styles */
body {
  font-family: Arial, sans-serif;
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
  padding: 20px;
}

.ngochart {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section container */
.containerchart {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

/* Flex/Grid Container for the Cards */
.achievements-container, .future-plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive columns */
  gap: 20px;
  justify-items: center;
}

.achievement-card, .future-plan-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover, .future-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card Heading */
.achievement-card h3, .future-plan-card h3 {
  font-size: 1.6rem;
  color: #34495e;
  margin-bottom: 15px;
}

/* Card Description */
.achievement-card p, .future-plan-card p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

/* Stats */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #2c97c4;
}

.stat-label {
  font-size: 1rem;
  color: #95a5a6;
}

/* Media Queries */

/* Tablet and smaller screens (up to 1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .achievement-card h3, .future-plan-card h3 {
    font-size: 1.4rem;
  }

  .achievements-container, .future-plans-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Fewer columns */
  }
}

/* Mobile screens (up to 768px) */
@media (max-width: 768px) {
  .stat-value {
    font-size: 1.4rem;
  }

  .achievement-card h3, .future-plan-card h3 {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .containerchart {
    padding: 15px;
  }

  /* Adjust grid to single column for small mobile devices */
  .achievements-container, .future-plans-container {
    grid-template-columns: 1fr; /* Single column */
  }

  h1 {
    font-size: 1.8rem;
  }

  .achievement-card, .future-plan-card {
    padding: 15px; /* Reduce padding for smaller screens */
  }
}

/* Mobile screens (up to 480px) */
@media (max-width: 480px) {
  .stat-value {
    font-size: 1.2rem;
  }

  .achievement-card h3, .future-plan-card h3 {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}
/* Video Section */
.video-section {
  background: rgb(110,190,125);
  background: radial-gradient(circle, rgba(110,190,125,1) 0%, rgba(208,213,218,1) 100%);
  padding: 4rem 2rem;
}

/* Centering the Text */
.video-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-section h2 {
  font-size: 2rem;
  font-weight: bold;
  animation: fadeInUp 1s ease-in-out;
}

.video-section p {
  font-size: 1.2rem;
  max-width: 600px;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
