/* Style the scroll to top button */
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 60px;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999; /* Ensure it is on top of other content */
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}

/* Make the scroll to top button responsive */
@media (max-width: 768px) {
  #progress {
    height: 50px;
    width: 50px;
    bottom: 15px;
    right: 10px;
  }

  #progress-value {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  #progress {
    height: 40px;
    width: 40px;
    bottom: 10px;
    right: 10px;
  }

  #progress-value {
    height: calc(100% - 5px);
    width: calc(100% - 5px);
    font-size: 20px;
  }
}



/* Style the admin login button */
#admin-login {
  position: fixed;
  bottom: 20px;
  left: 10px;
  height: 60px;
  width: 60px;
  background-color: #3cc78f;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999; /* Ensure it is on top of other content */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

#admin-login i {
  font-size: 30px;
}

#admin-login:hover {
  background-color: #333; /* Add a dark-grey background on hover */
  transform: scale(1.1); /* Slightly increase the size on hover */
}

/* Hide the admin login button on mobile view */
@media only screen and (max-width: 768px) {
  #admin-login {
    display: none !important;
  }
}




/* 📌 GALLERY CONTAINER */
.gallery-container {
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap on smaller screens */
  justify-content: center; /* Centers items in a row */
  width: 100%;
  height: auto; /* Auto height for better adaptability */
  margin-top: 20px; /* Adjust for spacing */
  gap: 10px; /* Creates consistent spacing between items */
}

/* 📌 GALLERY ITEMS */
.item {
  flex: 1;
  height: 60vh; /* Default height for larger screens */
  min-height: 200px; /* Prevents items from being too small */
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden; /* Ensures content does not overflow */
}

/* Hover Effect */
.item:hover {
  transform: scale(1.05);
}

/* 📌 CUSTOM BACKGROUND */
.custom-background {
  background-color: #7fceaca0;
}

/* 📌 MOBILE RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .gallery-container {
    flex-direction: row;
    justify-content: center;
  }

  .item {
    flex: 0 1 calc(50% - 10px); /* Two items per row on tablets */
    height: 40vh;
  }
}

@media (max-width: 600px) {
  .gallery-container {
    flex-direction: column;
    align-items: center; /* Ensures images are centered */
  }

  .item {
    width: 90%; /* Full width with spacing */
    height: 35vh;
  }
}
















.gallery {
  min-height: 100vh;
  background: #eee;
  padding-bottom: 100px;
}

.gallery .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  list-style: none;
}

.gallery .controls .buttons {
  height: 40px;
  width: 140px;
  background: #fff;
  color: #666;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  margin: 20px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.gallery .controls .buttons.active {
  background: #29de95;
  color: #fff;
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .image-container .image {
  height: 250px;
  width: 350px;
  overflow: hidden;
  border: 15px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  margin: 20px;
  position: relative;
  border-radius: 8px;
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery .image-container .image:hover img {
  transform: scale(1.1);
}

.gallery .image-container .image video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Remove lightbox effect for videos */
.gallery .image-container .image.video {
  border: none;
  box-shadow: none;
}

.gallery .image-container .image.video video {
  /* Ensure video has proper display without lightbox effect */
  border: none;
}



.bradcam_area {
  height: 250px; /* Adjust this value as needed */
  padding: 60px 0 20px 0; /* Add top padding to create space */
  background-size: cover;
  background: url('img/psc3.jpg') no-repeat center center/cover;
  background-position: center;
}

.bradcam_area .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bradcam_area .bradcam_text {
  color: #fff; /* Ensures text is visible on dark or overlay backgrounds */
}

.bradcam_area .bradcam_text h3 {
  font-size: 36px; /* Adjust font size as needed */
  margin: 0;
}







.contact {
    padding: 130px 0;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.contact .heading h2 span {
    color: #ff9100;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #35a678;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
    text-align: center;
    width: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  .contact {
      padding: 60px 20px; /* Reduced padding for smaller screens */
  }

  .contact .heading h2 {
      font-size: 24px; /* Adjusted font size */
  }

  .contact .heading p {
      font-size: 14px; /* Adjusted font size */
      margin: 10px 0 40px; /* Adjusted margins */
  }

  .contact .form-control {
      padding: 15px; /* Reduced padding */
      font-size: 14px; /* Adjusted font size */
  }

  .contact button.btn {
      padding: 8px; /* Reduced padding */
      font-size: 14px; /* Adjusted font size */
  }

  .contact .title h3 {
      font-size: 16px; /* Adjusted font size */
  }

  .contact .title p {
      font-size: 12px; /* Adjusted font size */
      margin: 0 0 30px; /* Adjusted margins */
  }

  .contact .content .info i {
      font-size: 24px; /* Adjusted icon size */
      margin-right: 10px; /* Adjusted margin */
  }

  .contact .content .info h4 {
      font-size: 12px; /* Adjusted font size */
  }

  .contact .content .info h4 span {
      font-size: 12px; /* Adjusted font size */
  }
}

@media (max-width: 480px) {
  .contact .heading h2 {
      font-size: 20px; /* Further reduced font size */
  }

  .contact .heading p {
      font-size: 12px; /* Further reduced font size */
      margin: 5px 0 20px; /* Further adjusted margins */
  }

  .contact .form-control {
      padding: 10px; /* Further reduced padding */
      font-size: 16px; /* Increased font size for better readability */
  }

  .contact button.btn {
      padding: 6px; /* Further reduced padding */
      font-size: 16px; /* Increased font size for better readability */
  }

  .contact .title h3 {
      font-size: 14px; /* Further adjusted font size */
  }

  .contact .title p {
      font-size: 10px; /* Further reduced font size */
      margin: 0 0 15px; /* Further adjusted margins */
  }

  .contact .content .info i {
      font-size: 20px; /* Further adjusted icon size */
      margin-right: 5px; /* Further adjusted margin */
  }

  .contact .content .info h4 {
      font-size: 10px; /* Further reduced font size */
  }

  .contact .content .info h4 span {
      font-size: 10px; /* Further reduced font size */
  }
}






.ceo-message {
    background: #f8f9fa; /* Section background */
    padding: 60px 0;
}

.ceo-message .ceo-content {
    background: linear-gradient(135deg, #29de95, #0f2027); /* Vibrant gradient */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    color: #fff; /* White text for contrast */
}

.ceo-message .ceo-image {
    flex: 1;
    max-width: 400px;
    margin-right: 30px;
    text-align: center;
}

.ceo-message .ceo-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ceo-message .ceo-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.ceo-message .ceo-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff; /* Headline white */
}

.ceo-message .ceo-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #f1f1f1; /* Softer white for paragraphs */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ceo-message .ceo-content {
        flex-direction: column;
        text-align: center;
    }
    .ceo-message .ceo-image {
        margin-bottom: 30px;
        margin-right: 0;
    }
    .ceo-message .ceo-text h2 {
        font-size: 28px;
    }
    .ceo-message .ceo-text p {
        font-size: 16px;
    }
}










/* General Styles */
.projects {
  padding: 50px 0;
  background-color: #e9ecef;
}

.projects .container {
  width: 90%;
  margin: 0 auto;
}

.projects h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #333;
  font-family: 'Arial', sans-serif;
}

/* Project Grid */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Project Card */
.project-card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.project-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.project-card:hover .project-card-inner {
  transform: rotateY(180deg);
}

.project-card-front, .project-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.project-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.project-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card-front:hover img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.project-card-overlay h3 {
  font-size: 1.75rem;
  color: #f4f4f4; /* Highlight color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adding a shadow for better readability */
}

.project-card-back {
  background: #96bfd1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #333;
  transform: rotateY(180deg);
  border-radius: 10px;
}

.project-info p {
  margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-grid {
      flex-direction: column;
      align-items: center;
  }
}



.climate-change {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px;
  background: radial-gradient(circle at top right, #004d40, #80cbc4);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  transition: all 0.3s ease-in-out;
}

/* Subtle animated background effect */
.climate-change::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path/to/overlay_pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
  animation: backgroundMove 8s infinite alternate ease-in-out;
}

@keyframes backgroundMove {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.2;
  }
}

.climate-content {
  flex: 1;
  max-width: 55%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-in-out;
}

.climate-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.climate-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #0a0a0a;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.climate-image {
  flex: 1;
  max-width: 40%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.climate-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.climate-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsiveness */
/* Tablet Screens (Up to 992px) */
@media (max-width: 992px) {
  .climate-change {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    min-height: auto;
  }

  .climate-content {
    max-width: 100%;
    padding: 0;
  }

  .climate-content h2 {
    font-size: 28px;
    color: #fff;
  }

  .climate-content p {
    font-size: 20px;
    line-height: 1.5; /* Reduced line height */
    text-align: left; /* Changed from justify to left */
    margin-bottom: 10px; /* Adjusted spacing */
  }

  .climate-image {
    max-width: 80%;
    margin-top: 20px;
    justify-content: center;
  }

  .climate-image img {
    width: 100%;
    max-width: 350px;
  }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
  .climate-change {
    padding: 30px;
  }

  .climate-content h2 {
    font-size: 24px;
  }

  .climate-content p {
    font-size: 14px;
    line-height: 1.4; /* Further reduced line height */
    text-align: left;
    margin-bottom: 8px;
  }

  .climate-image {
    max-width: 100%;
  }

  .climate-image img {
    width: 100%;
    max-width: 300px;
  }
}






 
.value-chain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: radial-gradient(circle at top right, #004d40, #80cbc4);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.value-chain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path/to/overlay_pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.value-content {
  flex: 1;
  max-width: 60%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.value-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.value-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
}

.value-images {
  flex: 1;
  max-width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.value-images img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .value-chain {
      flex-direction: column;
      text-align: center;
  }

  .value-content, .value-images {
      max-width: 100%;
  }

  .value-images {
      grid-template-columns: 1fr 1fr;
      margin-top: 20px;
  }
}
/* Tablets and smaller screens (Up to 992px) */
/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
  .value-chain {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    min-height: auto;
  }

  .value-content {
    max-width: 100%;
    padding: 0;
  }

  .value-content h2 {
    font-size: 28px;
    color: #fff;
  }

  .value-content p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
  }

  .value-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns layout */
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
  }

  .value-images img {
    width: 100%;
    max-width: 150px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
  .value-chain {
    padding: 30px;
  }

  .value-content h2 {
    font-size: 24px;
  }

  .value-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .value-images {
    grid-template-columns: 1fr; /* Stack images in a single column */
    gap: 10px;
  }

  .value-images img {
    max-width: 120px;
  }
}







.expert-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px; /* Increased padding for more space */
  background: radial-gradient(circle at top right, #004d40, #80cbc4);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 500px; /* Increased minimum height */
}

.expert-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path/to/overlay_pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.expert-content {
  flex: 1;
  max-width: 60%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.expert-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.expert-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
}

.expert-images {
  flex: 1;
  max-width: 30%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.expert-images img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-images img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
  .expert-service {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    min-height: auto;
  }

  .expert-content {
    max-width: 100%;
    padding: 0;
  }

  .expert-content h2 {
    font-size: 28px;
    color: #fff;
  }

  .expert-content p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
  }

  .expert-images {
    justify-content: center;
    margin-top: 20px;
  }

  .expert-images img {
    width: 100%;
    max-width: 200px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
  .expert-service {
    padding: 30px;
  }

  .expert-content h2 {
    font-size: 24px;
  }

  .expert-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .expert-images {
    display: flex;
    justify-content: center;
  }

  .expert-images img {
    max-width: 150px;
  }
}






.fpo-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: radial-gradient(circle at top right, #004d40, #80cbc4);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.fpo-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path/to/overlay_pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.fpo-content {
  flex: 1;
  max-width: 60%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.fpo-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.fpo-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
}

.fpo-images {
  flex: 1;
  max-width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.fpo-images img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fpo-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}
/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
  .fpo-service {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    min-height: auto;
  }

  .fpo-content {
    max-width: 100%;
    padding: 0;
  }

  .fpo-content h2 {
    font-size: 28px;
    color: #fff;
  }

  .fpo-content p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
  }

  .fpo-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .fpo-images img {
    width: 45%;
    max-width: 180px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
  .fpo-service {
    padding: 30px;
  }

  .fpo-content h2 {
    font-size: 24px;
  }

  .fpo-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .fpo-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .fpo-images img {
    width: 100%;
    max-width: 250px;
  }
}





.health-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: radial-gradient(circle at top right, #004d40, #80cbc4);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.health-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('path/to/overlay_pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.health-content {
  flex: 1;
  max-width: 60%;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.health-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.health-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.5px;
}

.health-images {
  flex: 1;
  max-width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.health-images img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Tablets and below (max-width: 992px) */
@media (max-width: 992px) {
  .health-service {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    min-height: auto;
  }

  .health-content {
    max-width: 100%;
    padding: 0;
  }

  .health-content h2 {
    font-size: 28px;
    color: #fff;
  }

  .health-content p {
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
  }

  .health-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .health-images img {
    width: 45%;
    max-width: 180px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
  .health-service {
    padding: 30px;
  }

  .health-content h2 {
    font-size: 24px;
  }

  .health-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .health-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .health-images img {
    width: 100%;
    max-width: 250px;
  }
}










/* Team Section Styling */
.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.team-member {
  text-align: center;
  max-width: 250px;
  transition: transform 0.3s ease;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo img {
  width: 100%;
  height: auto;
  border-radius: 20px 50px;
  border: 4px solid #007BFF;
}

.team-name {
  font-size: 1.5rem;
  color: #333;
  margin: 15px 0 5px;
}

.team-designation {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 15px;
}

.team-social a {
  display: inline-block;
  margin: 0 10px;
  color: #555;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.team-social a:hover {
  color: #007BFF;
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');









.footer {
  background-color: #2d2d2d;
  padding: 60px 0;
  color: #f1f1f1;
}

.footer .footer_top {
  padding-bottom: 60px;
  border-bottom: 1px solid #444;
}

.footer .footer_widget {
  margin-bottom: 30px;
}

.footer .footer_logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer .address_text {
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer .socail_links ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}

.footer .socail_links ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #555;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s ease;
}

.footer .socail_links ul li a:hover {
  background: #3CC78F;
}

.footer .footer_title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 10px;
}

.footer .footer_title:after {
  content: '';
  width: 50px;
  height: 2px;
  background: #3CC78F;
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer .contacts p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
}

.footer .contacts p i {
  color: #3CC78F;
  margin-right: 10px;
}

.footer .links {
  padding: 0;
  list-style: none;
}

.footer .links li {
  margin-bottom: 10px;
}

.footer .links li a {
  color: #aaa;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer .links li a:hover {
  color: #3CC78F;
}

@media (max-width: 767px) {
  .footer .footer_widget {
      margin-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer .footer_widget {
      margin-bottom: 30px;
  }
}




.news-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.news-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.news-item iframe {
  width: 100%;
  height: 230px;
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-description {
  padding: 10px 0;
  color: #555;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.news-description:hover {
  color: #007BFF;
}

/* Proper Top and Bottom Margins */
.news-item {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-section {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Design Enhancements */
@media (max-width: 768px) {
  .news-section {
      grid-template-columns: 1fr;
  }

  h2 {
      font-size: 28px;
      color: #222;
  }

  .news-item {
      padding: 15px;
      margin-bottom: 30px;
      background: linear-gradient(145deg, #ffffff, #e6e6e6);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      border-radius: 12px;
  }

  .news-item iframe {
      height: 200px;
      border-radius: 8px;
      margin-bottom: 10px;
  }

  .news-description {
      font-size: 15px;
      line-height: 1.5;
      color: #333;
  }

  /* Enhance touch interaction with larger clickable areas */
  .news-description:hover {
      color: #0056b3;
  }

  /* Make the section more attractive with added spacing */
  .news-section {
      gap: 25px;
  }
}




