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

/* Cyclone Alert Styles */
.cyclone-alert {
  background: linear-gradient(135deg, #ff4444, #cc0000);
  color: white;
  padding: 15px 20px;
  position: fixed;
  top: 85px; /* Position below header */
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease-out;
  border-bottom: 3px solid #ff6b6b;
}

.cyclone-alert.hidden {
  animation: slideUp 0.3s ease-in forwards;
}

.alert-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
}

.alert-icon {
  font-size: 24px;
  color: #ffeb3b;
  animation: pulse 2s infinite;
}

.alert-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.alert-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.alert-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.alert-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@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;
  }
}

/* Responsive design for cyclone alert */
@media (max-width: 768px) {
  .cyclone-alert {
    padding: 12px 15px;
  }
  
  .alert-content {
    gap: 10px;
  }
  
  .alert-text h3 {
    font-size: 16px;
  }
  
  .alert-text p {
    font-size: 13px;
  }
  
  .alert-icon {
    font-size: 20px;
  }
  
  .alert-close {
    padding: 6px 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cyclone-alert {
    padding: 10px 12px;
  }
  
  .alert-text h3 {
    font-size: 14px;
  }
  
  .alert-text p {
    font-size: 12px;
  }
}

html, body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

/* 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: 65px; */
  height:auto;
}

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: 1px;
  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 { 
  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 Our Partners */
}

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

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 */
}
/* add */


/* 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);
}

/* News Ticker Styles */
.news-ticker-container {
  position: fixed;
  top: 85px; /* Below header */
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  height: 45px;
  overflow: hidden;
}

.news-ticker-label {
  background: rgba(0, 0, 0, 0.2);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  height: 100%;
}

.news-ticker-label i {
  font-size: 16px;
}

.news-ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.news-ticker {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: scroll-news 130s linear infinite;
  gap: 60px;
  will-change: transform;
}

.news-ticker-container:hover .news-ticker {
  animation-play-state: paused;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  padding: 0 20px;
  flex-shrink: 0;
}

.news-date {
  font-size: 12px;
  color: #a8d5ff;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  flex-shrink: 0;
}

.news-text {
  font-size: 14px;
  color: #E0F7FA;
  font-weight: 400;
  text-shadow: 0 0 8px rgba(224, 247, 250, 0.4);
}

@keyframes scroll-news {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles for News Ticker */

/* Desktop (1920px and above) */
@media screen and (min-width: 1920px) {
  .news-ticker-container {
    height: 50px;
  }
  
  .news-ticker-label {
    padding: 0 25px;
    font-size: 15px;
  }
  
  .news-date {
    font-size: 13px;
  }
  
  .news-text {
    font-size: 15px;
  }
  
  .hero {
    margin-top: 135px; /* Header (85px) + News Ticker (50px) */
  }
}

/* Laptop (1441px - 1919px) */
@media screen and (min-width: 1441px) and (max-width: 1919px) {
  .news-ticker-container {
    height: 48px;
  }
  
  .news-ticker-label {
    padding: 0 22px;
    font-size: 14px;
  }
  
  .news-date {
    font-size: 12px;
  }
  
  .news-text {
    font-size: 14px;
  }
  
  .hero {
    margin-top: 133px; /* Header (85px) + News Ticker (48px) */
  }
}

/* MacBook (1024px - 1440px) */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .news-ticker-container {
    height: 45px;
  }
  
  .news-ticker-label {
    padding: 0 18px;
    font-size: 13px;
  }
  
  .news-date {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .news-text {
    font-size: 13px;
  }
  
  .news-item {
    gap: 12px;
    padding: 0 15px;
  }
  
  .hero {
    margin-top: 130px; /* Header (85px) + News Ticker (45px) */
  }
}

/* iPad (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .news-ticker-container {
    height: 42px;
    top: 85px;
  }
  
  .news-ticker-label {
    padding: 0 15px;
    font-size: 12px;
    gap: 6px;
  }
  
  .news-ticker-label i {
    font-size: 14px;
  }
  
  .news-date {
    font-size: 10px;
    padding: 3px 7px;
  }
  
  .news-text {
    font-size: 12px;
  }
  
  .news-item {
    gap: 10px;
    padding: 0 12px;
  }
  
  .news-ticker {
    gap: 40px;
  }
  
  .hero {
    margin-top: 127px; /* Header (85px) + News Ticker (42px) */
  }
}

/* Tablet (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .news-ticker-container {
    height: 40px;
    top: 85px;
  }
  
  .news-ticker-label {
    padding: 0 12px;
    font-size: 11px;
    gap: 5px;
  }
  
  .news-ticker-label i {
    font-size: 13px;
  }
  
  .news-ticker-label span {
    display: inline; /* Show "Latest News" text on smaller tablets */
  }
  
  .news-date {
    font-size: 9px;
    padding: 2px 6px;
  }
  
  .news-text {
    font-size: 11px;
  }
  
  .news-item {
    gap: 8px;
    padding: 0 10px;
  }
  
  .news-ticker {
    gap: 30px;
  }
  
  .hero {
    margin-top: 125px; /* Header (85px) + News Ticker (40px) */
  }
}

/* Mobile (320px - 480px) */
@media screen and (max-width: 480px) {
  .news-ticker-container {
    height: 38px;
    top: 85px;
  }
  
  .news-ticker-label {
    padding: 0 10px;
    font-size: 10px;
    gap: 4px;
    min-width: 40px;
  }
  
  .news-ticker-label i {
    font-size: 12px;
  }
  
  .news-ticker-label span {
    display: inline; /* Show "Latest News" text on mobile */
  }
  
  .news-date {
    font-size: 8px;
    padding: 2px 5px;
  }
  
  .news-text {
    font-size: 10px;
  }
  
  .news-item {
    gap: 6px;
    padding: 0 8px;
  }
  
  .news-ticker {
    gap: 25px;
  }
  
  .hero {
    margin-top: 123px; /* Header (85px) + News Ticker (38px) */
  }
}

/* Hero Section styles */
.hero {
  background-image: url("assets/img/Aerator.html\ with\ Pond_11zon.jpg");
  background-size: cover;
  background-position:bottom;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 130px; /* Header (85px) + News Ticker (45px) */
}

.hero-content {
  text-align: center;
  /* color: #fff; */
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 20px;
  max-width: 80%;
  color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    position: relative;
    top: -160px;
    /* top: 7px; */
    left: -420px;
    display: block;
}

.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;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .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;
        
    }
    .hero-content{
      left: -118px;
    }
    .hamburger {
        display: block;
        text-align: right;
        color: rgb(80, 121, 235);
        margin-right: 0; /* Remove margin to prevent overflow */
    }
    nav ul li a.active::after {
      content: "";
      position: absolute;
      left: 20px;
      bottom: -3px;
      width: 15%;
      height: 2px;
      background-color: #eb7dfa;
  }
}
@media (max-width:480px) {
  header {
    padding-left: 15px; /* Further reduced padding for smaller mobile */
    padding-right: 15px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .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 */
  }
    .hero-content {
        text-align: center;
        padding: 20px;
        max-width: 100%;
        color: white;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.2em;
        position: relative;
        top: -125px;
        left: -4px;
      }
      .hamburger {
        display: block;
        font-size: 20px;
        cursor: pointer;
        text-align: right;
        color: rgb(60, 124, 221);
        margin-right: 0; /* Remove margin to prevent overflow */
        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%;
  }

  nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -3px;
    width: 30%;
    height: 2px;
    background-color: #eb7dfa;
}
  
   /* 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: 14px; /* Slightly smaller font */
    padding: 8px 8px; /* Reduced padding */
  }
  
  .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 */
  }
}

/* Media Queries for smaller laptops (769px - 1024px) */
/* @media screen and (min-width: 769px) and (max-width: 1024px) { */
  /* nav ul li { */
    /* margin-left: 8px; */
  /* } */
  
  /* nav ul li a { */
    /* font-size: 13px; */
    /* padding: 8px 6px; */
  /* } */
  
  /* .logo .icon { */
    /* height: 100px; */
    /* left: 30px; */
  /* } */
  
  /* .logo .text { */
    /* height: 180px; */
  /* } */
  
  /* Hide some less important menu items if needed */
  /* nav ul li:nth-child(7), */
  /* nav ul li:nth-child(8) { */
    /* display: none; */
  /* } */
/* } */


.aquaculture-hero {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  /* background-color: #fff; */
  border-radius: 10px;
  min-height: 600px; /* Ensures the section is taller */
}

.aquaculture-content {
  flex: 1;
  margin-left: -100px; /* Move the content to the left */
  padding-right: -20px; /* Reduced right padding to move text left */
  padding-left: 40px;  /* Add small left padding for better alignment */
}

.aquaculture-content h1 {
  font-size: 3.5rem; /* Increased font size */
  line-height: 1.2; /* Keeps proper spacing between lines */
  color: #08419a;
  margin-bottom: 20px;
  /* No white-space: nowrap, so it can break into multiple lines */
}

.aquaculture-content p {
  font-size: 1.3rem; /* Adjusted font size */
  color: black;
  margin-bottom: 30px;
  white-space: nowrap; /* Keeps this on a single line */
}

.download-btn {
  display: inline-flex;
  background-color: #E0F2FF;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.3px;
  padding: 15px 25px;
  border: 1.5px solid #caeaff;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none; 
  /* display: inline-block; */
}

.download-btn a {
  color: inherit; /* Inherit color from button */
  text-decoration: none; /* Remove underline */
  display: block; /* Make the link fill the button */
  height: 100%; /* Ensure it covers the button */
  width: 100%; /* Ensure it covers the button */
}

.download-btn:hover {
  background: #08419a;
  border-color: #08419a;
  color: #fff;
  transform: scale(1.05); /* Slightly increase button size on hover */
  text-decoration: none;
}

.download-btn:hover a {
  color: #fff; /* Change link color on button hover */
}

.aquaculture-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aquaculture-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-left: 100px;
  object-fit: contain;
}
/* mine */
@media (max-width: 768px) {
  .aquaculture-hero {
    flex-direction: column;
    padding: 20px;
    min-height: auto; /* Adjust for smaller screens */
  }

  .aquaculture-content {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center; /* Center-align text on smaller screens */
  }

  .aquaculture-content h1 {
    font-size: 2.5rem;
  }

  .aquaculture-content p {
    font-size: 1.1rem;
    white-space: normal; /* Allow text wrapping */
  }

  .download-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .aquaculture-image img {
    margin-left: 0;
    max-width: 80%; /* Adjust size for smaller screens */
  }
}

@media (max-width: 480px) {
  .aquaculture-hero {
    padding: 15px;
  }

  .aquaculture-content h1 {
    font-size: 2rem;
  }

  .aquaculture-content p {
    font-size: 1rem;
  }

  .download-btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .aquaculture-image img {
    max-width: 100%; /* Full-width on very small screens */
  }
}
/* end */

@media screen and (max-width: 768px) {
  .aquaculture-hero {
      flex-direction: column;
      text-align: center;
  }

  .aquaculture-content {
      padding-right: 0;
      margin-bottom: 20px;
  }

  .aquaculture-content h1 {
      font-size: 2rem;
  }

  .download-btn {
      padding: 10px 30px;
  }

  .aquaculture-image img {
      width: 80%;
      margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .aquaculture-hero {
      display: flex; /* Ensure flexbox is activated */
      flex-direction: column;
      text-align: center;
      width: 100%; /* Full width to prevent overflow */
      padding: 20px; /* Add padding for breathing room */
      align-items: center;
  }

  .aquaculture-content {
      padding: 0 10px; /* Added padding for sides */
      margin-bottom: 20px;
      width: 100%;
  }

  .aquaculture-content h1 {
      font-size: 1rem; /* Smaller font size for mobile */
      margin-bottom: 10px; /* Space below the heading */
  }

  .aquaculture-content p {
      font-size: 0.5rem; /* Adjusted paragraph font size */
      line-height: 1.4; /* Better line height for readability */
      overflow-wrap: break-word; /* Prevent overflow of long words */
      margin: 0; /* Remove default margins */
  }

  .download-btn {
      padding: 10px 20px; /* Adjust padding for button */
      font-size: 1rem; /* Ensure text is readable */
      display: inline-block; /* Ensure it behaves like a block */
      margin-top: 20px; /* Add space above the button */
  }

  .aquaculture-image {
      width: 100%; /* Full width to prevent overflow */
      display: flex; /* Flexbox for centering */
      justify-content: center; /* Center the image horizontally */
      margin-bottom: 20px; /* Space below the image */
  }

  .aquaculture-image img {
      width: 100%; /* Use full width of the container */
      height: auto; /* Maintain aspect ratio */
      max-width: 100%; /* Ensure it doesn't exceed the container */
      margin: 0 auto; /* Center image */
      display: block; /* Ensures no extra space around image */
  }
}
.title {
  font-size: 48px;
  font-weight: 600;
  line-height: 58 px;
  color: #1d3ba1;
  margin-bottom: 18px;
  letter-spacing: -2 px;
}

.description {
  /* font-family: "Inter", sans-serif; */
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.3px;
    color: #000;
    position: relative;
    margin-bottom: 0;
    text-align: justify;
}


/* Responsive Design */


.service-section {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: white; /* Adjust as needed */
  text-align: center;
}

.section-title h2 {
  font-size: 48px;
  color: #08419a; /* Blue color similar to "Download Aquapulse App" */
  margin-bottom: 30px;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Adds space between the images */
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

.image-container img {
  max-width: 17%; /* Adjust width to fit within row */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); Subtle shadow effect */
  transition: transform 0.3s ease; /* Adds smooth zoom effect on hover */
}

.image-container img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}
@media (max-width: 768px) {

  .section-title h2 {
    font-size: 36px;
  }

  .image-container img {
    max-width: 30%; /* Increase width of images on mobile */
  }
}

@media (max-width: 480px) {

  .section-title h2 {
    font-size: 28px;
  }

  .image-container img {
    max-width: 45%; /* Adjust image size for smaller screens */
  }
}


@media (max-width: 768px) {
  .image-container img {
      max-width: 45%; /* Smaller width on tablets */
  }
}

@media (max-width: 480px) {
  .image-container img {
      max-width: 100%; 
  }
}

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 70px;
 /* background: linear-gradient(to right, #2a5298, #91b5f3);  */
 border-radius: 10px;
  color: #0a0a0a;
  font-family: Arial, sans-serif;
  font-weight: bold; /* Makes text bold */
}
.stat {
  text-align: center; 
}
.number {
  display: block;
  font-size: 70px;
  font-weight: bold;
  color: black;
}

.gender-symbol {
  font-size: 40px; /* Further increased font size */
  font-weight: bold;
  color: black; /* Distinct color for high contrast */
  line-height: 1; /* Adjusted line height for spacing */
  margin-top: 8px;
  display: block;
}

.label {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}

.stat p {
  font-size: 15px;
  margin: 5px 0 0; 
  /* letter-spacing: 1px; */
}
.female{
  font-size: 21px;
    font-weight: bold;
}
.male{
  font-size: 21px;
    font-weight: bold;
}
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column; /* Stack items vertically */
    padding: 40px 20px;
  }

  .stat {
    width: 100%; /* Full-width for each stat */
    margin: 15px 0;
  }

  .number {
    font-size: 50px; /* Reduce font size for mobile */
  }

  .gender-symbol {
    font-size: 30px;
  }

  .label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 20px;
  }

  .number {
    font-size: 40px; /* Further reduced for small screens */
  }

  .gender-symbol {
    font-size: 25px;
  }

  .label {
    font-size: 12px;
  }

  .female,
  .male {
    font-size: 18px;
  }
}


/* faq page style */

.faq-page {
  text-align: left;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%); */
  /* border-radius: 20px; */
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.section-title {
  font-size: 45px;
  font-weight: 600;
  color: #08419a;
  /* margin-bottom: 40px; */
  text-align: center;
  position: relative;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
  /* font-family: 'Georgia', serif; */
  /* margin-top: 50px; */
  margin: 50px 0 30px 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a4ba3, #4d90fe);
  border-radius: 2px;
}

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


 /* BUTTONS STYLES */
 .faq-buttons {
  display: flex;
  flex-direction: column;
  width: 250px;
  gap: 15px;
}

.theme-btn {
  background: linear-gradient(145deg, #ffffff, #e6e9f0);
  color: #1A4D90;
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}


.theme-btn:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #ffffff, #d9e0ed);
}

.theme-btn.active {
  background: linear-gradient(145deg, #08419a, #1a4ba3);
  color: white;
  box-shadow: 0 8px 25px rgba(8, 65, 154, 0.4);
  transform: translateY(-5px) rotate(2deg);
  z-index: 2;
}

.theme-btn.active::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"/></svg>') no-repeat;
  background-size: contain;
  animation: sparkle 1.5s infinite;
}

 /* CONTENT STYLES */
 .faq-content {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 700px;
}

.faq-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #1a4ba3, #4d90fe);
}

.faq-question-container {
  margin-bottom: 0;
  /* animation: cardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1); */
  /* position: relative; */
}



.faq-question {
  color: #1A4D90;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #4d90fe;
  font-size: 28px;
  top: -5px;
  animation: pulse 2s infinite;
}

.faq-answer {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  padding-left: 40px;
  position: relative;
  font-family: 'Georgia', serif;
}

.faq-answer::before {
  content: '❖';
  position: absolute;
  left: 10px;
  color: #08419a;
  font-size: 20px;
  top: -3px;
  opacity: 0.7;
}

 /* ANIMATIONS */
 @keyframes cardReveal {
  from { 
      opacity: 0; 
      transform: perspective(800px) rotateY(20deg) translateY(30px);
  }
  to { 
      opacity: 1; 
      transform: perspective(800px) rotateY(0) translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes sparkle {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(20deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Increased gap for better mobile spacing */
  }

  /* Remove the blue line that appears between buttons and content */
  .faq-buttons, 
  .faq-content {
    width: 100%;
    max-width: 100%;
  }

  .faq-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0; /* Remove any padding that might cause the line */
    border-bottom: none; /* Explicitly remove any border */
  }

  .faq-buttons::after {
    content: none !important; /* Remove any pseudo-element lines */
  }

  .theme-btn {
    flex: 1 1 45%;
    min-width: 150px;
    text-align: center;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 32px;
    margin-top: 40px; /* Adjusted for mobile */
  }

  .faq-content {
    padding: 25px;
    margin-top: 0; /* Remove any top margin that might cause spacing */
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 28px;
  }
  
  .theme-btn {
      flex: 1 1 100%;
      padding: 15px;
  }
  
  .faq-content {
      padding: 20px 15px;
  }
  
  .faq-question {
      font-size: 18px;
      padding-left: 30px;
  }
  
  .faq-answer {
      font-size: 15px;
      padding-left: 30px;
  }
}

/* CONTACT PAGE STYLE */

  /* Base Styles */
  .contact-container {
    display: flex;
    padding: 0;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
    overflow: hidden;
    position: relative;
  }
  
  /* Left Side - Contact Form */
  .contact-form {
    width: 50%;
    padding: 60px;
    background: white;
    position: relative;
    z-index: 1;
  }
  
  .form-header {
    margin-bottom: 85px;
  }
  
  .form-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a4ba3;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    margin-top: 25px;
  }
  
  .form-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a4ba3, #4d90fe);
    border-radius: 2px;
  }
  
  .form-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Floating Input Styles */
  .floating-input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .input-wrapper, .textarea-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
  }
  
  .input-wrapper input, .textarea-wrapper textarea {
    width: 100%;
    padding: 15px 15px 10px 15px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background-color: transparent;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .textarea-wrapper textarea {
    height: 120px;
    resize: none;
  }
  
  .input-wrapper label, .textarea-wrapper label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .input-highlight, .textarea-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a4ba3, #4d90fe);
    transition: all 0.4s ease;
  }
  
  .input-wrapper input:focus, .textarea-wrapper textarea:focus {
    outline: none;
    border-bottom-color: transparent;
  }
  
  .input-wrapper input:focus ~ label,
  .input-wrapper input:valid ~ label,
  .textarea-wrapper textarea:focus ~ label,
  .textarea-wrapper textarea:valid ~ label {
    top: -15px;
    left: 0;
    font-size: 12px;
    color: #1a4ba3;
  }
  
  .input-wrapper input:focus ~ .input-highlight,
  .textarea-wrapper textarea:focus ~ .textarea-highlight {
    width: 100%;
  }
  
  /* Animated Button */
  .animated-button {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 18px 0;
    margin-top: 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #1a4ba3, #4d90fe);
    color: white;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
  }
  
  .animated-button span {
    position: relative;
    z-index: 2;
  }
  
  .liquid {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    transition: 0.6s;
    z-index: 1;
  }
  
  .animated-button:hover .liquid {
    top: -120px;
  }
  
  /* Message Styles */
  .message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
  }
  
  .error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
  }
  
  .success {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
    border: 1px solid #00c853;
  }
  
  /* Right Side - Original Contact Info Styles */
  .contact-info {
    padding: 60px;
    padding-top: 95px; /* Account for fixed header */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-info h2 {
    font-size: 45px;
    font-weight: 600;
    color: #1a4ba3;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a4ba3, #4d90fe);
    border-radius: 2px;
  }
  
  .contact-display {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .contact-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .phone-item {
    border-left-color: #4d90fe;
  }
  
  .email-item {
    border-left-color: #ff6b6b;
  }
  
.location-item {
  border-left-color: #51cf66;
  text-decoration: none;
  color: inherit;
}

.registered-office-item {
  border-left-color: #ff9800;
  text-decoration: none;
  color: inherit;
}
  
  .contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    position: relative;
  }
  
  .contact-icon img {
    width: 40px;
    height: 40px;
    z-index: 2;
  }
  
  /* Phone specific effects */
  .phone-item .contact-icon {
    background: rgba(77, 144, 254, 0.1);
  }
  
  .icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(77, 144, 254, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 1;
  }
  
  /* Email specific effects */
  .email-item .contact-icon {
    background: rgba(255, 107, 107, 0.1);
  }
  
  .icon-shine {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,107,107,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .email-item:hover .icon-shine {
    opacity: 1;
  }
  
/* Location specific effects */
.location-item .contact-icon {
  background: rgba(81, 207, 102, 0.1);
}

.registered-office-item .contact-icon {
  background: rgba(255, 152, 0, 0.1);
}
  
  .icon-pin {
    position: absolute;
    bottom: -5px;
    width: 20px;
    height: 20px;
    background: url('assets/img/location-removebg-preview.png') center no-repeat;
    background-size: contain;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.3s;
  }
  
.location-item:hover .icon-pin {
  transform: scale(1) translateY(-15px);
}

.registered-office-item:hover .icon-pin {
  transform: scale(1) translateY(-15px);
}
  
  .contact-details h3 {
    font-size: 20px;
    color: #1a4ba3;
    margin-bottom: 5px;
  }
  
.contact-details p {
  font-size: 17px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.contact-details p br {
  display: block;
  content: "";
  margin: 2px 0;
}

.contact-details p strong {
  color: #1a4ba3;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
  
  .contact-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .contact-item:hover .contact-ripple {
    opacity: 1;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      opacity: 0.7;
    }
    70% {
      transform: scale(1.1);
      opacity: 0.2;
    }
    100% {
      transform: scale(0.95);
      opacity: 0.7;
    }
  }
  
  /* Background Effect for Contact Info */
  .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1a4ba3 0%, #4d90fe 100%);
    z-index: -1;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-form, .contact-info {
      width: 100%;
      padding: 40px;
    }
    
    .contact-info {
      padding-top: 95px; /* Account for fixed header */
    }
    
    .contact-info::before {
      width: 100%;
      height: 50%;
      top: auto;
      bottom: 0;
    }

    .contact-item {
      flex-wrap: wrap;
    }

    .contact-details p {
      line-height: 1.6;
      word-wrap: break-word;
    }
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-form, .contact-info {
      width: 100%;
      padding: 40px 30px;
    }
    
    .contact-info {
      padding-top: 95px; /* Account for fixed header */
    }
    
    .floating-input-group {
      flex-direction: column;
      gap: 0;
    }
    
    .form-header h1 {
      font-size: 36px;
      margin-top: 60px;
    }
    
    .contact-info h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }
    
    .contact-item {
      padding: 20px;
      flex-wrap: wrap;
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      margin-right: 20px;
    }
    
    .contact-details p {
      word-wrap: break-word;
      line-height: 1.6;
    }
  }
  
  @media (max-width: 480px) {
    .contact-form, .contact-info {
      padding: 30px 20px;
      width: 100%;
    }
    
    .form-header h1, .contact-info h2 {
      font-size: 28px;
    }
    
    .contact-details h3 {
      font-size: 18px;
    }
    
    .contact-details p {
      font-size: 14px;
      line-height: 1.5;
      word-wrap: break-word;
    }
    
    .contact-item {
      padding: 15px;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      margin-bottom: 10px;
    }
    
    .contact-icon img {
      width: 30px;
      height: 30px;
    }
    
    .contact-details {
      width: 100%;
    }
  }

/* awards & recognitions style */

.carousel-container-main {
  /* margin-top: 100px; */
  font-family: Arial, sans-serif;
  /* background-color: #f3f4f6; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 120vh; */
}

.carousel-container {
  position: relative;
  margin-top: 93px;
  width: 70%;
  max-width: 950px;
  overflow: visible; /* allow arrows to sit outside edges */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  text-align: center;
  display: none; 
}

.carousel-item.active {
  display: block; /* Show only the active item */
}

.carousel-image {
  width: 100%;
}

#carousel-prev-arrow {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: absolute; 
  top: 50%; 
  left: -60px; 
  transform: translateY(-50%); 
  z-index: 10; 
  background: rgba(0,0,0,0.3); 
  border: none; 
  border-radius: 50%; 
  width: 52px;
  height: 52px; 
  cursor: pointer;
}

#carousel-next-arrow{
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: absolute; 
  top: 50%; 
  right: -60px; 
  transform: translateY(-50%); 
  z-index: 10; 
  background: rgba(0,0,0,0.3); 
  border: none; 
  border-radius: 50%; 
  width: 52px;
  height: 52px; 
  cursor: pointer;
}

#carousel-next-arrow:hover, #carousel-prev-arrow:hover {
  background: rgba(0,0,0,0.5); 
}

/* Unique class for popover container */
.image-popover-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* The image */
.carousel-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Unique class for the popover content */
.image-popover-content {
  display: none;
  position: absolute;
  top: 105%; /* Below the image */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 10;
  font-size: 14px;
  text-align: center;
}

/* Show the popover on hover */
.image-popover-container:hover .image-popover-content {
  display: block;
}



.certificate-name {
  font-size: 16px; 
  color: #333;
  border: 1px solid #ccc; 
  border-radius: 5px; 
  padding: 10px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: auto; 
}
@media(max-width:768px){
  .carousel-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  .carousel-container {
    margin-top: 96px;
  }
}

/* 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;
  }
  
  .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;
    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 */
  }
  
  .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;
  }
  
  

  .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 */

  .aqua-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 130px;
  }
  
  .aqua-title {
    font-size: 2em;
    font-weight: bold;
    color:blue;
    margin-bottom: 65px;
    position: relative;
    top: 70px;
  }
  
  .aqua_content {
    display: flex;
    gap: 90px;
    width: 100%;
  }
  
  .aqua_left {
    flex: 1.2;
    font-size: 1.1em;
    line-height: 1.8;
    color: black;
    text-align: justify;
    position: relative;
    top: 80px;
  }
  
  .aqua_right {
    flex: 1.3;
    /* margin-top: -100px; */
  }
  
  .aqua_right ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 135px 20px; /* Increase vertical gap for more row spacing */
    padding: 0;
    list-style: none;
  }
  
  .aqua_right li {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #1a3e7c;
    position: relative; /* Set relative position for popover */
  }
  
  .about_icon {
    background-color: #d6eaff;
    color: #1a3e7c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    margin-right: 10px;
  }
  
  /* Popover Content Styling */
  .popover-content {
    display: none; /* Hide by default */
    position: absolute;
    bottom: 90%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: white; /* Light background to match the theme */
    color: black;
    font-size: 1rem;
    padding: 8px;
    border: 1px solid #1a3e7c;
    border-radius: 8px;
    width: 100%; /* Match the width of the icon heading */
    box-sizing: border-box;
    text-align: center;
    z-index: 10; /* Ensure it appears above other content */
  }
  
  /* Show Popover on Hover */
  .aqua_right li:hover .popover-content {
    display: block;
  }


/* vision and mission */
.about-section-vision {
  padding: 60px 20px;
  background-color: #ffffff; /* White background */
  font-family: 'Arial', sans-serif; /* Clean, modern font */
  color: black; /* Text color */
  position: relative;
  margin-top: -70px;
  /* max-width: 1200px; */
}

.section-title {
  margin-bottom: 50px; /* Adds spacing below the title */
  text-align: center;
}

.section-title h2 {
  font-size: 45px;
  color: #003399; /* Blue color for the heading */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  margin: 0 auto; /* Centers the title itself */
}

.p-xl {
  font-size: 16px;
  line-height: 1.8; /* Improves readability */
  color: black; /* Neutral gray text */
  margin-bottom: 20px;
  text-align: justify;
}

.about-page-img-wrapper img {
  display: block;
  margin: 0 auto; /* Centers the image */
  border-radius: 10px; /* Optional: Adds slight rounding to the corners */
}

.mission-vision-content,
.mission-vision-contents {
  padding: 20px;
}

.mission-vision-content strong,
.mission-vision-contents strong {
  color: #003399; /* Blue for emphasis */
  font-size: 20px;
}

.mission-vision-contents ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style-type: disc;
}

.mission-vision-contents ul li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.mission-vision-contents ul li strong {
  color: #003399; /* Highlighted headings in blue */
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.col-xl-6, .col-lg-6 {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 15px;
  box-sizing: border-box;
}

@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;
  }

  .aqua_content {
    flex-direction: column;
    gap: 40px;
  }

  .aqua_left {
    font-size: 1.2em;
    flex: 1;
  }

  .aqua_right {
    flex: 1;
  }

  .aqua_right ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aqua_right li {
    font-size: 1.1em;
  }

  .section-title h2 {
    font-size: 35px;
  }

  .p-xl {
    font-size: 15px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .about-us{
    overflow-x: hidden;
  }
  .about-us h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
  }

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

  .team-member {
    width: 100%;
    padding: 10px;
  }

  .text-container h2 {
    font-size: 35px;
  }

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

  .aqua-title {
    font-size: 1.8em;
  }

  .aqua_left {
    font-size: 1.1em;
  }

  .aqua_right ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .p-xl {
    font-size: 14px;
  }
}


/* footer area */

.footer {
  /* background-color: #0a1a2f; */
  background-color: white;
  color: black;
  padding: 50px 0;
  text-align: left;
  font-weight: bold;
  position: relative;
  z-index: 200; /* Ensure footer appears above sidebar (z-index: 100) */
}

/* Footer on library page spans full width (excludes sidebar) */
body.library-page .footer {
  margin-left: 0; /* Footer spans full width, excluding sidebar */
  width: 100%;
  position: relative;
  z-index: 200; /* Ensure footer appears above fixed sidebar */
}

.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: -70px;
}

.slogan {
  font-size: 16px;
  line-height: 1.5;
  color: black;
  position: relative;
  bottom: 28px;
  margin-left: -30px;
}
.links-section{
  position: relative;
  left: 440px;
}
.social-section{
  position: relative;
  left: 455px;
}
.contact-info-section {
  position: relative;
  left: 440px;
}
.links-section h3, .social-section h3, .contact-info-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;
}

.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 */
}

.footer-contact-details {
  margin-left: 28px;
}

.footer-contact-details p {
  margin: 10px 0;
  line-height: 1.8;
  color: #333;
  font-size: 14px;
}

.footer-contact-details p i {
  margin-right: 8px;
  color: #1a4ba3;
  width: 16px;
  text-align: center;
}

.footer-contact-details p a {
  color: #1a4ba3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-details p a:hover {
  color: #0072ff;
  text-decoration: underline;
}

.footer-contact-details p strong {
  color: #1a4ba3;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}


.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;
}
.footer-bottomsssss{
  position: relative;
  top: 20px;
}

.footer-bottom p {
  color: black;
}

.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 0;
  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: 280px;
  }

  /* Footer Contact Section for Tablets */
  .contact-info-section {
    position: static;
    text-align: center;
  }

  .footer-contact-details {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .footer-contact-details p {
    margin: 10px 0;
    font-size: 14px;
  }
}

/* iPad (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Footer Contact Section for iPad */
  .contact-info-section {
    position: relative;
    left: 440px;
  }

  .footer-contact-details {
    margin-left: 28px;
    text-align: left;
  }

  .footer-contact-details p {
    text-align: left;
  }

  .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: 90px;
    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: 90px;
    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,
  .contact-info-section {
    position: static;
    text-align: center;
  }

  .links-section h3,
  .social-section h3,
  .contact-info-section h3,
  .links-section ul,
  .social-section .social-icons,
  .footer-contact-details {
    margin-right: 0;
    margin-left: 0;
  }

  .footer-contact-details {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .contact-info-section h3 {
    text-align: center;
  }

  .footer-contact-details p {
    margin: 12px 0;
    text-align: center;
  }

  .footer-contact-details p i {
    display: inline-block;
  }

  .footer-contact-details p a {
    word-break: break-word;
    display: inline-block;
  }

  .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: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Pointer to indicate clickability */
  z-index: 10000; /* Ensure it appears above all other elements */
} 

/* 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;
}

/* library page style */

:root {
  --primary-color: #0077b6;
  --secondary-color: #00b4d8;
  --accent-color: #90e0ef;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --menu-hover: rgba(0, 180, 216, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 85px;
}

/* Library container with padding to account for fixed header */
.library-container {
display: flex;
min-height: 100vh;
padding-top: 85px; /* Same as header height */
box-sizing: border-box;
/* Remove flex-direction: column from here (keep it in media queries) */
}


/* Enhanced Left Sidebar */
.sidebar {
width: 300px;
background: linear-gradient(180deg, #0077b6 0%, #00b4d8 100%);
padding: 0;
position: fixed; /* Fixed position */
top: 85px; /* Same as header height */
left: 0;
max-height: calc(100vh - 85px); /* Maximum height */
height: calc(100vh - 85px); /* Full viewport height minus header */
overflow-y: auto; /* Allow scrolling if content is too long */
box-shadow: 5px 0 15px rgba(0,0,0,0.1);
z-index: 100; /* Ensure sidebar stays above content */
transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth hide/show transition */
visibility: visible; /* Default visible */
}


.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="white" stroke-width="2"/></svg>');
  background-size: 200px;
  opacity: 0.3;
}

.sidebar-header {
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header h2 {
  color: white;
  margin: 0;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
}

.sidebar-header h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: white;
  margin-top: 10px;
  border-radius: 3px;
}

.menu-items {
  padding: 0 20px 20px;
  position: relative;
  z-index: 1;
}

.menu-item {
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  border-radius: 6px;
  margin-bottom: 8px;
  color: white;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  background: var(--menu-hover);
  transform: translateX(5px);
}

.menu-item.active {
  background: rgba(255,255,255,0.9);
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.menu-item i {
  margin-right: 15px;
  color: white;
  width: 20px;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s;
}

.menu-item.active::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.water-effect {
  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="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 40px;
  background-color: white;
  margin: 20px 20px 20px 320px; /* Left margin accounts for fixed sidebar (300px + 20px) */
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  overflow-y: auto; /* Make content scrollable */
  max-height: calc(100vh - 125px); /* Full viewport height minus header and margins */
  position: relative;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.content-header h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 28px;
}

.editions-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edition-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px;
  transition: all 0.2s;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.edition-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.edition-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s;
}

.edition-link:hover {
  background-color: var(--secondary-color);
}

/* TESTIMONIALS SECTION */
#testimonials {
  width: 100%;
  box-sizing: border-box;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-header h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.header-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.wave {
  width: 50px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M0,10 C20,0 40,20 60,10 C80,0 100,20 120,10' stroke='%2300aaff' fill='none' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
  opacity: 0.7;
}

.fish {
  color: var(--accent-color);
  font-size: 20px;
  animation: swim 3s ease-in-out infinite;
}

@keyframes swim {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(8px) rotate(5deg); }
}



/* Carousel Controls */
/* TESTIMONIAL CAROUSEL STYLING */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  padding: 30px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  scroll-snap-align: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.client-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f5f5f5;
  margin-right: 20px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0; /* Prevent shrinking */
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure proper image cropping */
  display: block; /* Remove extra space below image */
}

#carousel-container-main {
  position: relative;
}

#carousel-next-arrow, #carousel-prev-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: background 0.2s;
}
#carousel-next-arrow i, #carousel-prev-arrow i {
  color: white;
  font-size: 1.5rem;
}

#carousel-next-arrow {
  right: -80px;
}
#carousel-prev-arrow {
  left: -80px;
}


#carousel-next-arrow:hover {
  background: rgba(0,0,0,0.5);
}

#carousel-next-arrow i {
  color: white;
  font-size: 2rem;
}

.client-details h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.client-details .position {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.testimonial-text {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  color: rgba(0, 180, 216, 0.2);
  font-family: serif;
  font-size: 60px;
  position: absolute;
  line-height: 1;
}

.testimonial-text::before {
  content: open-quote;
  top: -10px;
  left: -5px;
}

.testimonial-text::after {
  content: close-quote;
  bottom: -40px;
  right: 10px;
}

/* SPECIFIC TESTIMONIAL CAROUSEL CONTROLS */
.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonials-controls .control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-controls .control-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.testimonials-controls .indicators {
  display: flex;
  gap: 10px;
}

.testimonials-controls .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-controls .indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  #carousel-next-arrow, #carousel-prev-arrow {
    width: 46px;
    height: 46px;
    top: 50%;
  }
  #carousel-next-arrow {
    right: -64px;
  }
  #carousel-prev-arrow {
    left: -64px;
  }
}
@media (max-width: 480px) {
  #carousel-next-arrow, #carousel-prev-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
  }
  #carousel-next-arrow{
    right: -48px;
  }
  #carousel-prev-arrow{
    left: -48px;
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  .library-container {
      flex-direction: column;
      padding-top: 70px; /* Reduced padding for smaller header */
  }
  
  .sidebar {
width: 100%;
position: relative; /* Change back to relative on mobile */
top: auto;
left: auto;
height: auto;
padding-bottom: 60px;
}
  
  .main-content {
      margin: 10px;
      margin-left: 10px; /* Reset left margin on mobile */
      padding: 20px;
      max-height: none; /* Remove max-height on mobile */
  }
  
  .water-effect {
      height: 60px;
  }
  
  .sidebar-header {
      padding: 20px;
  }
  
  .menu-item {
      padding: 12px 15px;
  }
  
  .content-header h2 {
      font-size: 24px;
  }

  .edition-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }

  .edition-link {
      align-self: flex-end;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 30px;
  }
  
  .client-photo {
    width: 70px; /* Slightly smaller for tablet */
    height: 70px;
  }
}

@media (max-width: 480px) {
  .library-container {
      padding-top: 60px; /* Further reduced padding */
  }
  
  .sidebar-header h2 {
      font-size: 20px;
  }
  
  .menu-item {
      padding: 10px 12px;
      font-size: 14px;
  }
  
  .menu-item i {
      font-size: 16px;
      margin-right: 10px;
  }
  
  .edition-card {
      padding: 15px;
  }
  
  .edition-title {
      font-size: 16px;
  }
  
  .edition-link {
      padding: 6px 12px;
      font-size: 12px;
  }
  
  .content-header h2 {
      font-size: 20px;
  }

  .testimonial-card {
    min-width: 85vw;
    padding: 25px;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
  }
  
  .client-photo {
    width: 80px; /* Reset to normal size for mobile */
    height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    text-align: center;
    padding-left: 0;
  }
  
  .testimonial-text::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Our Investors Section */
.investors-section {
  position: relative;
  padding: 80px 0;
  /* background: white; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.investors-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.investors-section h2 {
  /* Use only initial animation states; inherit typography from .section-title h2 */
  opacity: 0; /* Start hidden for animation */
  transform: translateY(30px); /* Start position for animation */
}

/* Hide the default underline when using the section-title wave */
.investors-section h2::after { display: none; }

/* Match Trusted Partners container centering behavior */
.investors-section .section-title {
  position: relative;
  display: block;
  left: auto;
  transform: none;
  text-align: center;
  margin: 0 auto 3rem;
}

.investors-section h2.animate-underline::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.investors-section h2:hover::after {
  width: 120px;
}

.investor-content {
  margin: 0 auto 50px;
  max-width: 900px;
}

.investor-description {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.8;
  font-weight: 400;
  padding: 0 20px;
  opacity: 0; /* Start hidden for animation */
  transform: translateY(30px); /* Start position for animation */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.investor-logos {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center; /* Center the logos */
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1000px;
  padding-right: 0; /* Remove right padding */
  -webkit-transform: translateZ(0); /* Force hardware acceleration for Safari */
  transform: translateZ(0);
}

/* Investor logo animations */
.investor-logo {
  position: relative;
  width: 280px;
  height: 140px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  will-change: transform, box-shadow, opacity;
}

/* Logistic partners container styling */
#logistic-partners .investor-logo {
  overflow: hidden; /* Ensure logos stay within card boundaries */
  -webkit-transform: translateZ(0); /* Force hardware acceleration for Safari */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden; /* Prevent flickering in Safari */
  backface-visibility: hidden;
  /* Hide logos by default until animation triggers */
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

/* Show logos when animated */
#logistic-partners .investor-logo.animated {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.investor-logo.slide-in {
  opacity: 1;
  transform: translateX(0) !important;
}

.investor-logo.slide-left {
  transform: translateX(-100px);
}

.investor-logo.slide-right {
  transform: translateX(100px);
}

.investor-logo:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  margin: 0 auto;
  will-change: transform, box-shadow, opacity;
}

/* Slide animations */
.investor-logo.slide-left {
  transform: translateX(-100px);
}

.investor-logo.slide-right {
  transform: translateX(100px);
}

.investor-logo.slide-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 1s cubic-bezier(0.25, 0.5, 0.25, 1);
}

.investor-logo.visible {
  animation: fadeInUp 0.8s forwards;
}

.investor-logo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* .investor-logo .logo-img {
  max-width: 90%; 
  max-height: 90px; 
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%) contrast(90%);
  opacity: 0.9;
  transform: scale(1.3); 
} */

/* Specific styling for STPI logo only */
.investor-logo img[src*="STPI_logo.png"] {
  max-width: 95%; 
  max-height: 110px; 
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1.5);
  filter: none !important;
}

/* Specific styling for Black Soil logo */
.investor-logo img[src*="blacksoil_logo.png"] {
  max-width: 90%; 
  max-height: 100px; 
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1.2);
  filter: none !important;
  padding: 10px;
}

/* Specific styling for Drip Capital logo */
.investor-logo img[src*="dripcapital_logo.png"] {
  max-width: 90%; 
  max-height: 100px; 
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1.2);
  filter: none !important;
  padding: 15px;
}

/* Specific styling for Quid Cash logo */
.investor-logo img[src*="quid_logo.png"] {
  max-width: 90%; 
  max-height: 100px; 
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1.2);
  filter: none !important;
  padding: 15px;
}

/* Specific styling for Logistic Partners logos - Properly fitted size */
.investor-logo img[src*="seashell_logo.png"],
.investor-logo img[src*="seaworld_logo.png"] {
  max-width: 100%; 
  max-height: 190px; 
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: none !important;
  padding: 15px;
}

/* Specific styling for Emirates logo - Properly fitted size */
.investor-logo img[src*="emirates.png"],
.investor-logo img[src*="emirates_logo.jpg"] {
  max-width: 100%; 
  max-height: 190px; 
  object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: none !important;
  padding: 15px;
}

/* Smaller font size for trusted partners description */
.trusted-partners-description {
  font-size: 1rem !important;
  max-width: 600px !important;
  text-align: center;
}

.investor-logo:hover .logo-img {
  filter: grayscale(0) contrast(100%);
  opacity: 1;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.investor-logo .logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 65, 154, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 15px;
  text-align: center;
  color: white;
  border-radius: 12px;
  will-change: transform, opacity;
}

.investor-logo:hover .logo-hover {
  animation: float 3s ease-in-out infinite;
}

.investor-logo:hover .logo-hover {
  opacity: 1;
  transform: translateY(0);
}

.logo-hover span {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.logo-hover p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .investor-logos {
    gap: 30px;
    justify-content: center; /* Center on smaller screens */
    padding-right: 0; /* Remove right padding on mobile */
  }
  
  .investor-logo {
    width: 200px;
    height: 110px;
    margin: 0 auto; /* Center on smaller screens */
  }
  
  .investor-logo .logo-img {
    max-height: 70px; /* Slightly smaller on mobile */
    transform: scale(1.1); /* Slightly smaller scale on mobile */
  }
  
  .investor-logo img[src*="blacksoil_logo.png"] {
    max-height: 60px;
    transform: scale(1.1);
    padding: 8px;
  }
  
  .investor-logo img[src*="dripcapital_logo.png"] {
    max-height: 60px;
    transform: scale(1.1);
    padding: 10px;
  }
  
  .investor-logo img[src*="quid_logo.png"] {
    max-height: 60px;
    transform: scale(1.1);
    padding: 10px;
  }
  
  .investor-logo img[src*="seashell_logo.png"],
  .investor-logo img[src*="seaworld_logo.png"] {
    max-width: 100%;
    max-height: 115px;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    padding: 15px;
  }
  
  .investor-logo img[src*="emirates.png"],
  .investor-logo img[src*="emirates_logo.jpg"] {
    max-width: 100%;
    max-height: 115px;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    padding: 15px;
  }
  
  /* Force logistic partners logos to be visible on tablets */
  #logistic-partners .investor-logo {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
    -webkit-transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
  }
}

@media (max-width: 768px) {
  .investors-section {
    padding: 60px 0;
  }
  
  .investors-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  
  .investor-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .investor-logos {
    gap: 25px;
  }
  
  .investor-logo {
    width: 160px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .investors-section h2 {
    font-size: 1.8rem;
  }
  
  .investor-description {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .investor-logos {
    gap: 20px;
  }
  
  .investor-logo {
    width: 140px;
    height: 70px;
  }
  
  .logo-hover span {
    font-size: 1rem;
  }
  
  .logo-hover p {
    font-size: 0.8rem;
  }
  
  /* Force logistic partners logos to be visible on mobile */
  #logistic-partners .investor-logo {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
    -webkit-transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
  }
}

.investor-logo .logo-hover p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 300;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles for investors section */
@media (max-width: 768px) {
  .investors-section {
    padding: 40px 0;
  }
  
  .investors-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .investor-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .investor-logos {
    gap: 20px;
  }
  
  .investor-logo {
    width: 160px;
    height: 90px;
  }
  
  .investor-logo .logo-img {
    max-height: 50px;
  }
  
  .investor-logo img[src*="blacksoil_logo.png"] {
    max-height: 45px;
    transform: scale(1.0);
    padding: 5px;
  }
  
  .investor-logo img[src*="dripcapital_logo.png"] {
    max-height: 45px;
    transform: scale(1.0);
    padding: 8px;
  }
  
  .investor-logo img[src*="quid_logo.png"] {
    max-height: 45px;
    transform: scale(1.0);
    padding: 8px;
  }
  
  .investor-logo img[src*="seashell_logo.png"],
  .investor-logo img[src*="seaworld_logo.png"] {
    max-width: 100%;
    max-height: 95px;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    padding: 12px;
  }
  
  .investor-logo img[src*="emirates.png"],
  .investor-logo img[src*="emirates_logo.jpg"] {
    max-width: 100%;
    max-height: 95px;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    padding: 12px;
  }
  
  /* Force logistic partners logos to be visible on mobile */
  #logistic-partners .investor-logo {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
    -webkit-transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
  }
}

/* for partner page */
        :root {
            --primary: #00a8cc;
            --secondary: #0077b6;
            --accent: #90e0ef;
            --light: #caf0f8;
            --dark: #03045e;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }
        
        .partners-hero {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .water-bg {
            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="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23caf0f8"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23caf0f8"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23caf0f8"/></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .partners-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transform: translateY(20px);
            opacity: 0;
        }
        
        .partners-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
            line-height: 1.6;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .hero-cta {
            position: relative;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            z-index: 2;
            animation: bounce 2s infinite;
            cursor: pointer;
            opacity: 0;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }
        
        .fish-animation {
            position: absolute;
            width: 80px;
            height: 40px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M95,25c0,10-15,20-40,20S0,35,0,25s15-20,40-20S95,15,95,25z" fill="%23ffffff" opacity="0.7"/><circle cx="75" cy="20" r="3" fill="%23000000"/><path d="M10,15L0,25l10,10" stroke="%23ffffff" stroke-width="2" fill="none"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0;
            filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
        }
        
        .partners-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            /* margin-bottom: 1rem; */
            margin-top: 30px;
        }
        
        .section-title .wave {
            position: absolute;
            bottom: -6px; /* slightly closer to the heading */
            left: 50%;
            transform: translateX(-50%);
            width: 60%; /* scale relative to heading width */
            max-width: 320px; /* cap similar to Trusted Partners feel */
            height: 8px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 30" preserveAspectRatio="none"><path d="M0,15C75,15 175,0 250,15C325,30 425,30 600,15" fill="none" stroke="%2300a8cc" stroke-width="2"/></svg>');
            background-size: 200% 100%;
            animation: wave 3s linear infinite;
        }
        
        @keyframes wave {
            0% {background-position-x: 0;}
            100% {background-position-x: 200%;}
        }
        
        .partner-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
            transform: scale(0.95);
            opacity: 0;
        }
        
        .partner-card:hover {
            transform: translateY(-10px) scale(1);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .partner-card:hover::before {
            transform: translateX(100%);
        }
        
        .partner-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .partner-header::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.5s;
        }
        
        .partner-header:hover::after {
            transform: scale(1);
        }
        
        .partner-logo {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            box-shadow: var(--shadow);
            flex-shrink: 0;
            transition: transform 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .partner-logo::before {
            content: '';
            position: absolute;
            border: 2px dashed var(--accent);
            border-radius: 50%;
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            animation: spin 20s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .partner-card:hover .partner-logo::before {
            opacity: 1;
        }
        
        @keyframes spin {
            0% {transform: rotate(0deg);}
            100% {transform: rotate(360deg);}
        }
        
        .partner-logo img {
            max-width: 60%;
            max-height: 60%;
            transition: transform 0.3s;
        }
        
        .partner-card:hover .partner-logo img {
            transform: scale(1.1);
        }
        
        .partner-title {
            flex-grow: 1;
            z-index: 1;
        }
        
        .partner-title h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .partner-title h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s;
        }
        
        .partner-card:hover .partner-title h2::after {
            width: 100%;
        }
        
        .partner-title p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .partner-content {
            display: flex;
            flex-direction: column;
            padding: 2rem;
        }
        
        .partner-image {
            width: 100%;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            position: relative;
            box-shadow: var(--shadow);
        }
        
        .partner-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
            z-index: 1;
        }
        
        .partner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s, filter 0.5s;
        }
        
        .partner-card:hover .partner-image img {
            transform: scale(1.05);
            filter: brightness(1.05);
        }
        
        .partner-details {
            position: relative;
        }
        
        .partner-details p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .partner-benefits {
            margin-top: 1rem;
            position: relative;
        }
        
        .partner-benefits h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
        }
        
        .partner-benefits h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .benefit-list {
            list-style-type: none;
        }
        
        .benefit-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 2rem;
            line-height: 1.5;
            transition: transform 0.3s;
        }
        
        .benefit-list li:hover {
            transform: translateX(5px);
        }
        
        .benefit-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.4rem;
            width: 1rem;
            height: 1rem;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300a8cc"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
            background-size: contain;
            transition: transform 0.3s;
        }
        
        .benefit-list li:hover:before {
            transform: scale(1.2);
        }
        
        .partner-link {
            display: inline-flex;
            align-items: center;
            margin-top: 1.5rem;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .partner-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .partner-link:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
        }
        
        .partner-link:hover::before {
            left: 100%;
        }
        
        .partner-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }
        
        .partner-link:hover i {
            transform: translateX(3px);
        }
        
        .bubbles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .bubble {
            position: absolute;
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: float-up linear infinite;
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }
        
        @keyframes float-up {
            0% {
                transform: translateY(100vh) scale(0.5);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }
        
        /* Floating particles */
        .particle {
            position: absolute;
            background-color: rgba(255,255,255,0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        
        /* Responsive Breakpoints */
        @media (min-width: 992px) {
          .partner-content {
              flex-direction: row;
          }
          
          .partner-image {
              width: 45%;
              margin-right: 2rem;
              margin-bottom: 0;
              height: 300px;
          }
          
          .partner-details {
              width: 55%;
          }
      }
      
        @media (max-width: 768px) {
            .partners-hero h1 {
                font-size: 2.8rem;
            }
            
            .partners-hero p {
                font-size: 1.1rem;
            }
            
            .partner-header {
                flex-direction: column;
                text-align: center;
            }
            
            .partner-logo {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .partner-title h2 {
                font-size: 1.6rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .partners-hero {
                padding: 3rem 1rem;
                min-height: 70vh;
                margin-top: 60px;
            }
            
            .partners-hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .partners-hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .partner-card {
                margin-bottom: 2rem;
                border-radius: 10px;
            }
            
            .partner-header {
                padding: 1rem;
            }
            
            .partner-logo {
                width: 60px;
                height: 60px;
            }
            
            .partner-title h2 {
                font-size: 1.4rem;
            }
            
            .partner-content {
                padding: 1.5rem;
            }
            
            .partner-image {
                height: 180px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .benefit-list li {
                font-size: 0.9rem;
            }
            
            .partner-link {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            
            /* Force logistic partners logos to be visible on mobile */
            #logistic-partners .investor-logo {
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
                -webkit-transform: translateX(0) translateY(0) rotate(0) scale(1) !important;
            }
        }
        
        /* Loading animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .loader-circle {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s linear infinite;
        }



/* Last Updated Section */
.last-updated {
  background-color: white !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.last-updated-text {
  margin: 0;
  padding: 10px 0;
  color: #333;
  font-size: 14px;
}

/* 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;
    margin-left: 100px;
  }
  
  /* Contact section */
  .contact-container {
    flex-direction: column;
    min-height: 82vh;
  }
  
  /* .contact-form, .contact-info {
    width: 100%;
    padding: 30px 20px;
  } */
  .contact-form{
    margin-top: 35px;
  }
  .contact-info{
    padding-top: 125px; /* Account for fixed header + original padding */
    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;
  }
  
  /* Aqua container */
  .aqua-container {
    padding: 0 15px;
  }
  
  .aqua-title {
    text-align: center;
  }
  
  .aqua_content {
    flex-direction: column;
    gap: 40px;
  }
  
  .aqua_left {
    top: 40px;
  }
  
  .aqua_right ul {
    grid-template-columns: 1fr;
    gap: 80px 0;
  }
  
  /* Vision and mission */
  .about-section-vision {
    padding: 40px 15px;
  }
  
  .col-xl-6, .col-lg-6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* 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, .contact-info-section {
    position: static;
    margin: 20px 0;
  }
  
   .social-section h3,
  .social-section,
  .contact-info-section h3 {
    margin-left: 0;
    text-align: center;
  }

  .footer-contact-details {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .footer-contact-details p {
    margin: 10px 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-contact-details p i {
    display: inline-block;
    margin-right: 6px;
  }

  .footer-contact-details p a {
    word-break: break-word;
    display: inline-block;
  }
  
  .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%;
  }
}

/* Services we offer section styles */
.services-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.services-container .title {
    font-size: 3.2rem;
    color: #08419a;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-container .title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #08419a, #00b3ff);
    border-radius: 10px;
}

.services-container .description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.service-feature-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.single-service-feature {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e6eeff;
    box-shadow: 0 5px 15px rgba(8, 65, 154, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.single-service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #08419a, #00b3ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.single-service-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(8, 65, 154, 0.15);
}

.single-service-feature:hover::before {
    transform: scaleX(1);
}

.single-service-feature .icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #e6f0ff 0%, #d9e6ff 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.single-service-feature:hover .icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d9e6ff 0%, #c5d9ff 100%);
}

.single-service-feature .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.single-service-feature h5 {
    font-size: 1.3rem;
    color: #08419a;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.single-service-feature:hover h5 {
    color: #0066cc;
}

.single-service-feature .service-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.single-service-feature.active .service-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.single-service-feature .read-more {
    margin-top: 15px;
    color: #08419a;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.single-service-feature .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.single-service-feature.active .read-more i {
    transform: rotate(180deg);
}

.single-service-feature .wave-decoration {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath 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='%2308419a' opacity='0.1'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .service-feature-wrap {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .services-container .title {
        font-size: 2.8rem;
    }
    
    .services-container .description p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        margin: 40px auto;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .services-container .description {
        margin-bottom: 40px;
    }
    
    .services-container .title {
        font-size: 2.4rem;
    }
    
    .service-feature-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .single-service-feature {
        padding: 25px 20px;
    }
    
    .single-service-feature .icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .single-service-feature .icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .services-container {
        margin: 30px auto;
        padding: 25px 15px;
    }
    
    .services-container .title {
        font-size: 2rem;
    }
    
    .services-container .description p {
        font-size: 1rem;
    }
    
    .single-service-feature {
        padding: 20px 15px;
    }
    
    .single-service-feature h5 {
        font-size: 1.2rem;
    }
}

/* Animation for services */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-feature-wrap .single-service-feature {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-feature-wrap .single-service-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.service-feature-wrap .single-service-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.service-feature-wrap .single-service-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.service-feature-wrap .single-service-feature:nth-child(4) {
    animation-delay: 0.4s;
}

.service-feature-wrap .single-service-feature:nth-child(5) {
    animation-delay: 0.5s;
}

.service-feature-wrap .single-service-feature:nth-child(6) {
    animation-delay: 0.6s;
}



