/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Keyframes for GPTW animation */
@keyframes softGlow {
  0%, 100% {
    opacity: 1;
    filter: brightness(1) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.15) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    transform: scale(1.03);
  }
}

@keyframes gentleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Paragraph alignment removed - keeping original text alignment */

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 85px;
  padding-left: 77px;
  padding-right: 47px;
  position: fixed; /* Fix header to top */
  top: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 1000; /* Ensures it's above other elements */
}

.logo {
  display: flex;
  align-items: center;
  gap: -10px; 
  margin-top: 15px;
}

.logo .icon {
  height: 150px;
  margin-left: -55px;
  position: relative;
  left: 57px;
}

.logo .text {
  height: 240px; /* Adjust height for the text image */
}

nav ul {
  list-style: none;
  display: flex;
  /* margin-right: 10px; */
  height:auto;
  margin-bottom: 0 !important;
}

nav ul li {
  margin-left: 20px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding: 8px 12px;
}
nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
nav ul li:first-child::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #000; /* Color of the vertical line */
}
nav ul li:nth-child(4) {
  margin-right: 10px;
}

nav ul li:nth-child(7)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #000; /* Color of the vertical line */
}
nav ul li a:hover {
  color: rgb(77, 195, 241);
}

/* Add a large colored dot (like a bullet) before FAQs, Contact, and Awards */
nav ul li:nth-child(2) a::before, /* Before FAQs */
nav ul li:nth-child(3) a::before, /* Before Contact */
nav ul li:nth-child(4) a::before {
  /* Before Awards */
  content: "";
  display: inline-block;
  width: 10px; /* Adjust size of the dot */
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

nav ul li:nth-child(5) a::before, /* Before Library */
nav ul li:nth-child(6) a::before,
nav ul li:nth-child(7) a::before { /* Before Recognitions */
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

/* Assign different colors to each dot */
nav ul li:nth-child(2) a::before {
  background-color: rgb(125, 241, 57); /* Dot color for FAQs */
}

nav ul li:nth-child(3) a::before {
  background-color: rgb(247, 21, 5); /* Dot color for Contact */
}

nav ul li:nth-child(4) a::before {
  background-color: rgb(229, 255, 0); /* Dot color for Awards */
}

nav ul li:nth-child(5) a::before {
  background-color: rgb(237, 181, 108); /* Dot color for Library */
}

nav ul li:nth-child(6) a::before {
  background-color: rgb(245, 240, 139); /* Dot color for Library */
}

nav ul li:nth-child(7) a::before {
  background-color: rgb(159, 106, 244); /* Dot color for Recognitions */
}

/* Hover effect: underline with slight distance from text */
nav ul li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 25px;
  width: 100%;
  height: 2px;
  background-color: #eb7dfa; /* Color of the underline */
}

/* Always underline the active link */
nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #eb7dfa; /* Color of the underline */
}
.contact-infosss {
  display: none; /* Hidden by default */
}
.contact-infossss {
  display: none; /* Hidden by default */
}
.contact-infosss a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  /* border: 1px solid #444; */
  /* padding: 8px 15px; */
  /* border-radius: 8px; */
  /* background: linear-gradient(45deg, #6a11cb, #2575fc); */
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  left: -2px;
  /* bottom: 59px */
}
.contact-infosss a i {
  font-size: 18px;
}
.contact-infossss a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  /* border: 1px solid #444; */
  /* padding: 8px 15px; */
  /* border-radius: 8px; */
  /* background: linear-gradient(45deg, #6a11cb, #2575fc); */
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  bottom: 59px
}
.contact-infossss a i {
  font-size: 18px;
}
.contact-infosss a:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}
.scrolled {
background-color: rgb(31, 48, 69); 
}

.scrolled nav ul li a {
color: #ffffff; /* Change text color to white when scrolled */
}

/* Adjust image color on scroll */
.scrolled .logo img {
filter: none;
}

/* Adjust text image color on scroll */
.scrolled .logo .text {
filter: brightness(0) invert(1); /* Makes only the text image appear white */
}

.scrolled .logo{
color: #ffffff; /* Changes text-based logo color to white */
}


@media screen and (max-width: 768px) {
  header {
    padding-left: 20px; /* Reduced padding for mobile */
    padding-right: 20px;
  }
  
  .logo {
    margin-left: -15px; /* Shift logo slightly to the left, keeping it visible */
  }
  
  nav ul {
      flex-direction: column;
      display: none; /* Hide menu initially */
      background-color: blue;
      width: 100%;
      position: absolute;
      top: 70px; /* Adjusts position below the nav bar */
      left: 0;
      height: 1000px;
  }

  nav ul.show {
      display: flex; /* Show menu when hamburger is clicked */
  }
  
  /* Hide progress circle when mobile menu is shown */
  body:has(nav ul.show) .progress-circle {
      display: none !important;
  }

  nav ul li {
      text-align: left;
      margin: 15px 0;
  }

  .hamburger {
      display: block;
      text-align: right;
      color: rgb(80, 121, 235);
      margin-right: 20px; /* Shift menu icon to the left */
  }
  nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -3px;
    width: 30%;
    height: 2px;
    background-color: #eb7dfa;
}
}
@media (max-width:480px) {
  header {
    padding-left: 15px; /* Further reduced padding for smaller mobile */
    padding-right: 15px;
  }
  
  .contact-infosss {
    display: block; /* Visible on small screens */
    margin-bottom: 10px;
  }
  .contact-infossss {
    display: block;
    margin-bottom: 10px;
  }
  .logo {
    margin-left: -25px; /* Shift logo slightly to the left for smaller screens, keeping it visible */
  }

.hamburger {
  display: block;
  font-size: 20px;
  cursor: pointer;
  text-align: right;
  color: rgb(60, 124, 221);
  margin-right: 15px; /* Shift menu icon to the left */
  padding-left: 0; /* Remove left padding */
}

 /* Styling the menu items for right alignment */
nav ul li {
width: 100%;
padding: 15px 20px;
text-align: left; /* Align items to the left */
}

/*removing the underline for mobile responsiveness*/
nav ul li a:hover::after {
width: 0%;
}

/* Keep hero-content visible unless hamburger is activated */
.hero-content {
display: block;
}  
}

/* Media Queries for MacBook range (1024px - 1440px) */
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header {
    padding-left: 100px; /* Push header contents slightly right on Mac */
    padding-right: 60px;
  }

  .logo {
    margin-left: 24px; /* Keep logo/text aligned across pages on Mac */
  }
  
  nav ul li {
    margin-left: 10px; /* Reduce spacing between menu items */
  }
  
  nav ul li a {
    font-size: 14.5px; /* Slightly smaller font */
    padding: 8px 8px; /* Reduced padding */
    /* font-weight: bolder; */
  }
  
  .logo .icon {
    height: 120px;
    left: 40px;
  }
  
  .logo .text {
    height: 200px;
  }

  nav ul li:first-child::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #000; /* Color of the vertical line */
  }
}


/* aboutus page(new) */
.about-us {
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
}

.about-us h3 {
  font-size: 2.5em;
  margin-bottom: 10px;
  margin-right: 550px;
  color: blue;
  margin-top: 45px;
}

.about-us .description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
  /* margin-left: 910px; */
  text-align: end;
  margin-right: 100px;
}

.team {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.member {
  background-color: #e0faf6;
  border-radius: 10px;
  width: 250px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.profile-pic:hover {
  transform: scale(1.1); /* Slight zoom-in effect */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  cursor: default;
}

.info {
  position: relative;
}

.name-box {
  background-color: #6200ea; /* Purple background */
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  margin: 0 auto; /* Centers the name box */
}

.name-box h2 {
  font-size: 1em;
  font-weight: normal; /* Makes the text thinner */
  margin: 0;
  word-wrap: break-word; /* Ensures long names wrap to the next line */
  white-space: normal; /* Ensures wrapping for longer names */
}

/* .plus-icon {
  background-color: #fff;
  color: #6200ea;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px; /* Adds spacing between text and the icon */
/* }  */

.info p {
  font-size: 0.9em;
  color: black;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
a {
  text-decoration: none;
}

a:focus,
a:active {
  outline: none;
}

.name-box h2 a {
  color: white; /* Keep the name white inside the purple box */
  text-decoration: none;
}

.name-box h2 a:hover {
  text-decoration: underline; /* Underline on hover for better UX */
}
/* Profile Picture Hover Effect */
.profile-pic {
width: 200px;
height: 200px;
border-radius: 10px;
object-fit: cover;
margin-bottom: 15px;
cursor: pointer; /* Shows it's clickable */
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
transform: scale(1.1);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
padding-top: 50px;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
text-align: center;
}

.modal-content {
max-width: 80%;
max-height: 80%;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
display: block;
margin: 0 auto;
}

.close {
position: absolute;
top: 20px;
right: 30px;
font-size: 40px;
color: white;
cursor: pointer;
}

.close:hover {
color: rgb(173, 9, 9);
}



.team-section {
  text-align: center;
  padding: 50px 20px;
}

.team-section h1 {
  font-size: 39px;
  margin-bottom: 40px;
  margin-right: 870px;
}

.team-section .highlight {
  color: blue;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 270px;
  padding: 20px;
  text-align: center;
}

.team-member img {
  border-radius: 10px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 15px;
  /* margin: 10px 0; */
  color: white;
  background: #6200ea;
  padding: 5px 0;
  border-radius: 20px;
  font-weight: normal;

}

.team-member .role {
  font-size: 14px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
  padding: 10px 0;
}

.team-member blockquote {
  font-style: italic;
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* who we are section */

.text-container {
  max-width: 1000px;
  margin: 0 auto; /* Center the content on the page */
  text-align: center;
  padding: 30px 20px;
  background: rgb(226, 236, 245); /* Light background color */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-family: 'Arial', sans-serif; /* Modern and clean font */
  line-height: 1.8; /* Improves readability */
}

.text-container h2 {
  font-size: 50px;
  margin-bottom: 30px;
  color: blue;
  font-weight: 700; /* Bold for emphasis */
  text-transform: capitalize; /* Ensures consistent casing */
}

.text-container p {
  font-size: 19px;
  color:black; /* Neutral color for text */
  margin-bottom: 20px;
  line-height: 1.8; /* Adds vertical spacing for better readability */
}

.text-container p:last-of-type {
  margin-bottom: 0; /* Remove bottom margin from the last paragraph */
}

.text-container p strong {
  color: #2c3e50; /* Emphasized text with darker color */
}

/* how we make a difference - OLD STYLES REMOVED */


/* vision and mission - OLD STYLES REMOVED */

@media (max-width: 768px) {
.about-us{
  overflow-x: hidden;
}
.about-us h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.team {
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.team-member {
  width: 80%;
  padding: 15px;
}

.text-container h2 {
  font-size: 40px;
}
  /* Old responsive styles removed */
}

/* Mobile Devices */
@media (max-width: 480px) {
.about-us{
  overflow-x: hidden;
}
.about-us h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
  width: 300px;
  margin-left: 30px;
  margin-top: 45px;
  /* margin-bottom: 0px; */
}
.about-us .description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
  /* margin-left: 910px; */
  text-align: center;
  /* margin-right: 40px; */
  margin-left: 90px;
}
.team {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.team-member {
  width: 100%;
  padding: 10px;
}
.team-member h3 {
  font-size: 15px;
  /* margin: 10px 0; */
  color: white;
  background: #6200ea;
  padding: 7px 0;
  border-radius: 20px;
  font-weight: normal;
  width: 200px;
  margin-left: 70px;
}
.team-section h1 {
  font-size: 40px;
  margin-bottom: 40px;
  /* margin-right: 870px; */
  margin-left: 32px;
  margin-top: -55px;
  width: 300px;
}
.about-page-img-wrapper{
/* overflow-x: hidden; */
}
.about-page-img-wrapper img {
  display: block;
  margin: 0 auto;
  border-radius: 10px; /* Optional: Adds slight rounding to the corners */
}
.text-container h2 {
  font-size: 35px;
}

.text-container p {
  font-size: 16px;
}

/* Old mobile responsive styles removed */
}


/* New Sections from about_new.html */

/* Section 1: How We Make a Difference */
.aqua-section {
    background: linear-gradient(135deg, #f9fcff, #e6f4ff);
    padding: 100px 20px;
    font-family: 'Outfit', sans-serif;
}

.aqua-container {
    max-width: 1300px;
    margin: 0 auto;
}

.aqua-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #003d99;
    margin-bottom: 70px;
    position: relative;
}

.aqua-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #00aaff;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.aqua_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.aqua_left {
    flex: 1 1 40%;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.aqua_left .highlight {
    color: #0077cc;
    font-weight: 600;
}

.aqua_right {
    flex: 1 1 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.feature {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature .popover {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature h3 {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #003d99;
}

.about_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d6eaff;
    color: #003d99;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.feature:hover .about_icon {
    background: #003d99;
    color: #fff;
    transform: scale(1.15) rotate(8deg);
}

.popover {
    display: none !important;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    animation: fadeIn 0.3s ease;
    opacity: 0;
    pointer-events: none;
    text-align: center !important;
}

.feature .popover {
    text-align: center !important;
}

.feature:hover .popover {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Section 2: Vision & Mission */
.vision-mission-section {
    padding: 80px 0;
    background-color: #e6f4f7;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Water wave effect */
.water-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23006994"></path></svg>');
    background-size: 1200px 100px;
    animation: wave 12s linear infinite;
    opacity: 0.1;
}

.water-wave:nth-child(2) {
    animation-delay: 0.5s;
    opacity: 0.05;
    height: 120px;
    background-size: 1100px 120px;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.vision-mission-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3c4d;
    display: inline-block;
    padding: 0 20px 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: #006994;
    border-radius: 2px;
    transform: translateX(-50%);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    width: 50%;
    padding: 0 15px;
}

/* Vision Card Styling */
.vision-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 105, 148, 0.1);
    padding: 35px;
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 6px solid #006994;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #006994, #00a8cc);
    opacity: 0.05;
    border-radius: 0 0 0 100px;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 105, 148, 0.15);
}

.vision-header, .mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.vision-icon, .mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: linear-gradient(135deg, #006994, #00a8cc);
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(26, 117, 188, 0.25);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-icon,
.vision-card:hover .mission-icon {
    transform: rotate(0deg);
}

.vision-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a3c4d;
    margin: 0;
    position: relative;
    display: inline-block;
}

.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9a3c;
    border-radius: 2px;
}

.vision-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #00a8cc;
    position: relative;
    text-align: center;
}

/* Mission Points Styling */
.mission-points-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 105, 148, 0.1);
    padding: 35px;
    margin-bottom: 30px;
    border-right: 6px solid #ff9a3c;
    position: relative;
    overflow: hidden;
}

.mission-points-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #006994, #00a8cc);
    opacity: 0.05;
    border-radius: 0 100px 0 0;
}

.mission-points-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a3c4d;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.mission-points-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9a3c;
    border-radius: 2px;
}

.mission-point {
    padding: 22px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(to right, rgba(0, 169, 204, 0.05), rgba(0, 169, 204, 0.02));
    border-left: 5px solid #00a8cc;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: justify;
}

.mission-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #006994, #00a8cc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-point:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 105, 148, 0.1);
}

.mission-point:hover::before {
    opacity: 1;
}

.mission-point strong {
    color: #006994;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.mission-point strong::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff9a3c;
    font-weight: bold;
}

/* Image Styling */
.about-page-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.about-page-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #006994, #00a8cc);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.about-page-img-wrapper:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-page-img-wrapper:hover .img-fluid {
    transform: scale(1.05);
}

/* Join Text Styling */
.join-text {
    background: linear-gradient(135deg, #006994, #00a8cc);
    padding: 0px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 105, 148, 0.3);
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.join-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: rotate(30deg);
}

.join-text p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.2px;
    text-align: center;
}

/* Fish animation */
.fish {
    position: absolute;
    width: 40px;
    height: 20px;
    background: #ff9a3c;
    border-radius: 50% 0 0 50%;
    opacity: 0.3;
    animation: swim 20s linear infinite;
    z-index: 1;
}

.fish::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.fish::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid #ff9a3c;
    border-bottom: 5px solid transparent;
}

@keyframes swim {
    0% { transform: translateX(-100px) rotateY(0deg); }
    50% { transform: translateX(calc(100vw + 100px)) rotateY(0deg); }
    51% { transform: translateX(calc(100vw + 100px)) rotateY(180deg); }
    100% { transform: translateX(-100px) rotateY(180deg); }
}

/* Bubbles */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: bubble-up 15s infinite;
    z-index: 1;
}

@keyframes bubble-up {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design for new sections */
@media (max-width: 992px) {
    .aqua_content { 
        flex-direction: column; 
        text-align: center; 
    }
    .aqua_left { 
        flex: 1 1 100%; 
        margin-bottom: 40px; 
    }
    .aqua_right { 
        grid-template-columns: 1fr 1fr; 
    }
    
    .col-lg-6 {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .vision-icon, .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .vision-card h3, .mission-points-card h3 {
        font-size: 1.7rem;
    }
    
    .fish {
        display: none;
    }
}

@media (max-width: 600px) {
    .aqua_right { 
        grid-template-columns: 1fr; 
    }
    .popover { 
        bottom: -80px; 
        width: 90%; 
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .vision-header h3, .mission-header h3 {
        font-size: 1.5rem;
    }
    
    .vision-icon, .mission-icon {
        width: 40px;
        height: 40px;
    }
    
    .vision-card, .mission-points-card {
        padding: 20px;
    }
}

/* footer area */ 

.footer {
  background-color: white;
  color: black;
  padding: 50px 0;
  text-align: left;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 65px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}
.logo-section{
  display: flex;
  flex-direction: column;
}
.logo-section .logo {
  width: 200px;
  margin-bottom: 3px;
  margin-left: -30px;
  margin-top: -60px ;
}

.slogan {
  font-size: 16px;
  line-height: 1.5;
  color: black;
  font-weight: bold;
  position: relative;
  bottom: 28px;
  margin-left: -30px;
}
.links-section{
  position: relative;
  left: 440px;
}
.social-section{
  position: relative;
  left: 455px;
}
.links-section h3, .social-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 28px;
}

.links-section ul {
  list-style-type: none;
  padding: 0;
  padding-left: 32px;
}

.links-section ul li {
  margin: 8px 0;
  line-height: 2.5;
}

.links-section ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.links-section ul li a:hover {
  color: black;
}

.social-section .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-left: 28px;
}

.social-section .social-icons a img {
  width: 24px; /* Adjust width for smaller icons */
  height: 24px; /* Adjust height for smaller icons */
  transition: transform 0.3s; /* Optional: smooth scaling effect on hover */
}

.social-section .social-icons a img:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
}


.app-store-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  top: 120px;
}

.app-store-links a img {
  width: 200px; /* Adjust width to match the size in your image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Rounded corners as shown in your image */
  transition: transform 0.3s; /* Smooth scaling effect */
  margin-left: 220px;
  border-bottom: 150px;
}

.app-store-links a img:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.footer-bottom {
  border-top: 1px solid black;
  padding-top: 10px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* max-width: 1200px; */
  width: 100%;
  margin: auto;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}
.footer-bottomsssss{
  position: relative;
  top: 20px;
}

.footer-bottom p {
  color: black;
  /* font-weight: bold; */
}

.horizontal-images {
  display: flex;
  gap: 20px;
  margin-top: -10px;
  margin-left: -60px;
}
.horizontal-images img {
  width: 150px;
  height: 150px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.horizontal-images img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.gptw-image {
  text-align: center;
  margin: 20px -120px;
  animation: gentleFadeIn 1.5s ease-out;
}

.gptw-image img {
  max-width: 180px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: softGlow 3s ease-in-out infinite;
  filter: brightness(1) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
  transform-origin: center;
}

.gptw-image img:hover {
  filter: brightness(1.2) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  transform: scale(1.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: none;
}

/* Mobile (up to 480px) */
@media (max-width: 480px) {
  .gptw-image {
    order: 4; /* Place after other content */
    margin: 15px auto;
    width: 100%;
  }
  
  .gptw-image img {
    max-width: 250px;
  }
}

/* Tablet (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .gptw-image {
    margin: 20px auto;
    width: 100%;
  }
  
  .gptw-image img {
    max-width: 250px;
  }
}

/* iPad (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .gptw-image {
    margin: 20px 0;
  }
  
  .gptw-image img {
    max-width: 250px;
  }
}

/* Laptop (1025px to 1440px) - Your existing styling */
@media (min-width: 1025px) and (max-width: 1440px) {
  .gptw-image {
    position: absolute;
    left: 42%;
    transform: translateX(-50%);
    bottom: 60px;
    text-align: center;
  }
  
  .gptw-image img {
    max-width: 500px;
    height: auto;
  }
}

/* Large screens (1441px and up) */
@media (min-width: 1441px) {
  .gptw-image {
    position: absolute;
    left: 42%;
    transform: translateX(-50%);
    bottom: 55px;
    text-align: center;
  }
  
  .gptw-image img {
    max-width: 500px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 30px;
    min-width: unset;
  }
  .footer-bottomsssss {
    position: static;
    /* top: 20px; */
}

.horizontal-images {
  display: flex;
  gap: 20px;
  margin-top: -10px;
  margin-left: 130px;
}
.horizontal-images img {
  width: 150px;
  height: 150px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

  .logo-section .logo,
  .slogan,
  .app-store-links a img {
    margin: 0 auto;
  }

  .links-section,
  .social-section {
    position: static;
    text-align: center;
  }

  .links-section h3,
  .social-section h3,
  .links-section ul,
  .social-section .social-icons {
    /* margin: auto; */
    margin-right: 20px;
  }

  .social-section .social-icons {
    justify-content: center;
  }

  .app-store-links {
    align-items: center;
    margin-top: 20px;
    top: unset;
  }
}

@media (max-width: 480px) {
  .horizontal-images {
    display: flex;
    gap: 20px;
    margin-top: -10px;
    margin-left: 45px;
  }
  .horizontal-images img {
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}


/* Circular progress bar container */
.progress-circle {
position: fixed;
bottom: 20px;
/* right: 75px; */
right: 20px;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer; /* Pointer to indicate clickability */
} 

/* SVG circle styling */
.circle {
position: absolute;
transform: rotate(-90deg); /* Rotate to start progress at the top */
}

circle {
fill: none;
stroke-width: 3;
}

.background {
stroke: #e0e0e0; /* Light background stroke */
}

.progress {
stroke: blue; /* Blue progress stroke */
stroke-dasharray: 145; /* Total circumference of the circle (2 * PI * r) */
stroke-dashoffset: 130; /* Initially hide the progress */
transition: stroke-dashoffset 0.1s linear;
}

/* Upward arrow styling */
.progress-iconssss {
display: flex;
flex-direction: column;
align-items: center;
/* position: absolute; */
/* text-align: center; */
}

.top-text {
font-size: 10px;
color: black; 
font-weight: bold;
margin-bottom: -45px;
opacity: 0;
}
.top-text.visible {
opacity: 1; /* Visible when class 'visible' is added */
font-size: 10px;
color: black; /* Black color for the text */
font-weight: bold;
position: relative;
z-index: 9999;
/* margin-bottom: -45px; */
}

.arrow {
font-size: 20px;
font-weight: bold;
color: black; /* Black color for the arrow */
position: relative;
top: 7px;
}

.last-updated {
/* border-top: 1px solid #ccc; */
/* width: 100%; */
text-align: center;
margin-top: 20px;
padding-top: 10px;
}

.last-updated::before {
content: "";
display: block;
border-top: 1px solid #ccc;
margin: 0 auto;
width: 80%;
}

#last-updated-text {
font-size: 14px;
color: black;
}

/* added */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .logo .icon {
    height: 120px;
    margin-left: -30px;
  }
  
  .logo .text {
    height: 200px;
  }

  nav ul li {
    font-size: 20px;
  }
  
  /* Hero section adjustments */
  .hero-content {
    top: -100px;
    left: 0;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }
  
  /* Aquaculture hero section */
  .aquaculture-hero {
    padding: 20px;
    flex-direction: column;
  }
  
  .aquaculture-content {
    margin-left: 0;
    padding: 0 15px;
    text-align: center;
  }
  
  .aquaculture-content h1 {
    font-size: 2rem;
    white-space: normal;
  }
  
  .aquaculture-content p {
    font-size: 1rem;
    white-space: normal;
  }
  
  .aquaculture-image img {
    margin-left: 0;
    max-width: 90%;
    margin: 20px auto;
  }
  

  
  /* Stats section */
  .stats-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .stat {
    margin: 15px 0;
  }
  
  /* Service section */
  .image-container img {
    max-width: 45%;
  }
  
  /* FAQ section */
  .faq-container {
    flex-direction: column;
  }
  
  .faq-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .theme-btn {
    flex: 1 1 45%;
    min-width: 120px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 12px 10px;
  }
  
  .faq-content {
    width: 100%;
    padding: 20px 15px;
  }
  
  /* Contact section */
  .contact-container {
    flex-direction: column;
    min-height: 82vh;
  }
  
  /* .contact-form, .contact-info {
    width: 100%;
    padding: 30px 20px;
  } */
  .contact-form{
    margin-top: 200px;
  }
  .contact-info{
    margin-top: -200px;
    margin-bottom: 200px;
  }
  
  /* About us section */
  .about-us h3 {
    margin-right: 0;
    text-align: center;
  }
  
  .about-us .description {
    margin-right: 0;
    text-align: center;
  }
  
  .team {
    gap: 30px;
  }
  
  .member {
    width: 90%;
  }
  
  /* Text container */
  .text-container {
    padding: 20px 15px;
  }
  
  /* Old responsive styles removed */
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .logo-section .logo {
    margin-left: 0;
  }
  
  .slogan {
    margin-left: 0;
  }
  
  .links-section, .social-section {
    position: static;
    margin: 20px 0;
  }
  
   .social-section h3,
   .social-section  {
    margin-left: 0;
  }
  
  .app-store-links {
    position: static;
    align-items: center;
    margin-top: 20px;
  }
  
  .app-store-links a img {
    margin-left: 0;
  }
  
  .horizontal-images {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .horizontal-images img {
    width: 120px;
    height: 120px;
  }
  
  /* Library page */
  .library-container {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    position: relative;
    height: auto;
  }
  
  .main-content {
    margin: 10px;
    padding: 20px;
  }
  
  /* Partners page */
  .partners-hero {
    padding: 3rem 1rem;
  }
  
  .partner-header {
    flex-direction: column;
    text-align: center;
  }
  
  .partner-content {
    flex-direction: column;
  }
  
  .partner-image {
    width: 100%;
    margin-right: 0;
  }
  
  .partner-details {
    width: 100%;
  }
}