/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

p, li {
  font-family: 'Times New Roman', Times, serif, sans-serif;
}

/* Navigation Bar */
.header {
  background-color: #008080;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between; /* Adjusted */
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.header li {
  display: inline-block;
}

.header a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

/* Logo */
.logo {
  max-height: 60px;
  width: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}


/* Hero Section */
.home-screen {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.video-bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.tophead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  height: 100%;
  padding: 0 40px;
}

.tophead-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tophead-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
}

/* Headings Section */
.headings {
  flex: 1;
  color: #ffffff;
  padding: 60px;
  box-sizing: border-box;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.headings h1 {
  font-size: 2.8rem;
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Animation Delays */
.headings h1:nth-child(1) { animation-delay: 0.2s; }
.headings h1:nth-child(2) { animation-delay: 0.4s; }
.headings h1:nth-child(3) { animation-delay: 0.6s; }

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

/* Explanation Section */
.explanation {
  background-color: #444;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explanation:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.explanation h2 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
  width: 100%;
}

.explanation p {
  color: white;
  margin: 0;
  text-align: center;
}

/* ========== RESPONSIVE STYLES ========== */


 /* SERVICES SECTION */
.services {
  background-color: #c0e7e7;
  padding: 30px 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
}

.service-item p {
  margin: 16px 0 0;
  padding: 0 10px;
  line-height: 1.5;
  font-size: 16px;
  color: black;
}

.service-item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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


/* STATS SECTION */
.stats {
  background-color: teal;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.stats img {
  width: 600px;
  height: 500px;
  object-fit: cover;
}

.num h3, .num p {
  color: white;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 30px;
}

/* PARTNERS SECTION */
.partners {
  background-color: #c0e7e7;
  padding: 30px 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.partners h1 {
  text-align: center;
  font-size: 2.5rem;
}

.partners-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.partners-logo img {
  height: 150px;
  object-fit: contain;
}

/* FOUNDER SECTION */
.home-founder {
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.home-founder h1 {
  font-size: 2.5rem;
  color: #008080;
  text-align: center;
  margin: 0;
}

.home-founder .bio {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.home-founder .bio img {
  width: 30%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.home-founder .bio-wrapper {
  flex: 1;
  max-width: 60%;
}

.home-founder .bio-wrapper p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}



/* FOOTER */
.footer {
  background-color: rgb(80, 80, 80);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .horizontal-line {
  border-bottom: 2px solid white;
  width: 95%;
  margin: 20px 0;
}

.footer ul {
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer h2 {
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

.footer .social {
  display: flex;
  flex-direction: row;
  max-width: 300px;
  gap: 10px;
}

.footer .social img {
  height: 100px;
  object-fit: contain;
}

/* Chatbot */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* Tablet and small laptops */
@media (max-width: 768px) {
  .chatbot-popup {
    right: 15px;
    bottom: 80px;
    width: 320px;      /* smaller than desktop */
    max-width: 90%;    /* prevent overflow */
    height: 420px;     /* shorter than desktop */
    border-radius: 12px;
  }

  .chat-body {
    height: calc(100% - 110px); 
    padding: 15px;
  }

  #chatbot-toggler {
    bottom: 20px;
    right: 20px;
    height: 45px;
    width: 45px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .chatbot-popup {
    right: 10px;
    bottom: 70px;
    width: 280px;      /* nice card size on mobile */
    max-width: 95%;
    height: 380px;     /* slightly shorter */
    border-radius: 10px;
  }

  .chat-body .message .message-text {
    font-size: 0.85rem;
    max-width: 85%;    /* messages take up more width */
  }

  .chat-footer {
    padding: 10px 12px 14px;
  }
}

#chatbot-toggler{
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: aqua;
  transition: all 0.2s ease;
}

body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}

#chatbot-toggler span{
  color: #fff;
  position: absolute;
}

body.show-chatbot #chatbot-toggler span:first-child,
#chatbot-toggler span:last-child{
  opacity: 0; 
}

body.show-chatbot #chatbot-toggler span:last-child{
  opacity: 1;
}
.chatbot-popup{
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  overflow:hidden;
  border-radius: 15px;
  opacity: 0;
  transform: scale(0.2);
  transform-origin: bottom right;
  pointer-events: none;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
}

body.show-chatbot .chatbot-popup{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chat-header{
  display: flex;
  align-items: center;
  background: #0ad9c1;
  padding: 15px 22px;
  justify-content: space-between;
}

.chat-header .header-info{
  display: flex; 
  gap: 10px; 
  align-items: center;
}

.header-info .chatbot-logo{
  height: 35px;
  width: 35px;
  padding: 6 px;
  fill: #008080;
  background: #fff;
  flex-shrink: 0;
  border-radius: 50%;
}

.header-info .logo-text{
  color: #fff;
  font-size: 1.31rem;
  font-weight: 600;
}

.chat-header #close-chatbot{
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background:none;
  transition: 0.2s ease;
}

.chat-header #close-chatbot:hover{
  background:#0ad9c1;
}

.chat-body{
  padding: 25px 22px;
  display: flex;
  gap: 20px;
  height: 460px;
  margin-bottom: 82px;
  overflow-y: auto;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: gray transparent;
}

.chat-body .message{
  display: flex;
  gap: 11px;
  align-items: center;
}

.chat-body .bot-message .bot-avatar{
  height: 35px;
  width: 35px;
  padding: 6 px;
  fill: #fff;
  background: #0ad9c1;
  align-self: flex-end;
  flex-shrink: 0;
  border-radius: 50%;
  margin-bottom: 2px;
}

.chat-body .user-message{
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .message .message-text{
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}

.chat-body .bot-message.thinking .message-text{
  padding: 2px 16px;
}

.chat-body .bot-message .message-text{
  background: lightgray;
  border-radius: 13px 13px 13px 3px;
}


.chat-body .user-message .message-text{
  color: #fff;
  background: #2fc1d8;
  border-radius: 13px 13px 13px 3px;
}

.chat-body .user-message .attachment{
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}

.chat-body .bot-message .thinking-indicator{
  display: flex;
  gap: 4px;
  padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot{
  height: 7px;
  width: 7px; 
  opacity: 0.7;
  border-radius: 50%;
  border-radius: 50%;
  background: black;
  animation: dotPulse 1.8s ease-in-out infinite;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1){
  animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2){
  animation-delay: 0.3s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3){
  animation-delay: 0.4s;
}

@keyframes dotPulse{
  0%, 44%{
    transform: translateY(0);
  }

  28%{
    opacity: 0.4;
    transform: translateY(-4px);
  }

  44%{
    opacity: 0.2;
  }
}


.chat-footer{
  position:absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 15px 22px 20px;
}

.chat-footer .chat-form{
  display: flex;
  position: relative;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #CCCCE5;
}

.chat-footer .chat-form:focus-within{
  outline: 2px solid #5350C4;
}

.chat-form .message-input{
  border: none;
  outline: none;
  height: 47px;
  width: 100%;
  resize: none;
  max-height: 180px;
  white-space:pre-line ;
  font-size: 0.95rem;
  padding: 14px 0 13px 18px;
  border-radius: inherit;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.chat-form .message-input:hover{
  scrollbar-color: #ccccf5 transparent;
}

.chat-form .chat-controls{
  display: flex;
  height: 47px;
  align-items: center;
  align-self: flex-end;
  padding-right: 6px;
}

.chat-form .chat-controls button{
  height: 35px;
  width: 35px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: black;
  background: none;
  border-radius: 50%;
  transition: 0.2s ease;
}

.chat-form .chat-controls #send-message{
  color: #fff;
  display: none;
  background: aqua;
}

.chat-form .message-input:valid~.chat-controls #send-message{
  display: block;
}

.chat-form .chat-controls #send-message:hover{
  background: aqua;
}

.chat-form .chat-controls button:hover{
  background: #f1f1ff;

}

.chat-form .file-upload-wrapper{
  height: 35px;
  width: 35px;
  position: relative;
}

.chat-form .file-upload-wrapper :where(img,button){
  position: absolute;
}
.chat-form .file-upload-wrapper img{
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-form .file-upload-wrapper #file-cancel{
  color: #ff0000;
  background: #fff;
}

.chat-form .file-upload-wrapper :where(img,#file-cancel),
.chat-form .file-upload-wrapper.file-uploaded #file-upload{
  display: none;
}

.chat-form .file-upload-wrapper.file-uploaded img, 
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel{
  display: block;
}

em-emoji-picker{
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 250px;
  max-height: 330px;
  transform: translateX(-50%);
  visibility: hidden;
}

body.show-emoji-picker em-emoji-picker{
  visibility:  visible;
}

/* ===== About Page Styles ===== */
.about-us {
    padding: 60px;
    margin: 0 auto;
    background-image: url("../images/background-img.png");
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  
  .about-us h1 {
    font-size: 2.5rem;
    color: #008080; 
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about-us article {
    margin-bottom: 40px;
  }
  
  .about-us p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #333;
  }
  
  .about-us ul {
    list-style: none;
    padding-left: 0;
  }
  
  .about-us li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
  }
  
  .founders {
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
    align-items: center;
    gap: 40px;
  }
  
.founders h1 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 30px;
}

.founders .bio {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    text-align: left;
    width: 100%;
  }
  
  .founders .bio img {
    width: 300px;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* prevent image from shrinking */
  }
  .founders .bio-wrapper{
    flex: 1;
    max-width: 650px;
  }
  .founders .bio-wrapper p {
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
  }
/* ====== Our Mission Section ====== */
.mission {
    padding: 60px;
    margin: 0 auto;
    background-color: white;
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    text-align: center;
    color: white;
  }
  
  /* Section Title */

  .mission p{
    color: black;
    font-size: 20px;
  }
  
  /* Slider Container */
  .slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    overflow: hidden;
  }
  


/* ======= Next ======== */
.vision {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  width: 100%; /* Avoid horizontal scroll */
  margin: 0;
  padding: 40px;
  background-image: url("../images/background-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden; /* Hide overlay overflow */
}

/* Background overlay for readability */
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

/* Ensure all direct children are above overlay */
.vision > * {
  position: relative;
  z-index: 1;
}

/* Header */
.vision h2 {
  font-size: 2rem;
  color: #008080;
  margin-bottom: 20px;
  text-align: left;
}

/* Layout */
.vision .bio {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small widths */
}

/* Image */
.vision .image-wrapper {
  flex: 0 0 40%;
  padding-right: 20px;
  box-sizing: border-box;
  min-width: 250px; /* prevent shrinking too small */
}

.vision .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Text */
.vision .bio-wrapper {
  flex: 1;
  overflow-y: auto;
  padding-left: 20px;
  box-sizing: border-box;
  min-width: 250px; /* prevent shrinking too small */
}

.vision .bio-wrapper p {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.vision .bio-wrapper ul {
  padding-left: 20px;
  margin: 0;
  font-size: 0.95rem;
  list-style: disc;
}

.vision .bio-wrapper li {
  margin-bottom: 8px;
  line-height: 1.4;
}

   
  /* Inquires */

  .inquiries{
    padding: 60px;
    margin: 0 auto;
    background-image: url(../images/background-img.png);
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    text-align: center;
    color: black;
  }


/* Testimonials */
.testimonials{
    padding: 60px;
    margin: 0 auto;
    background-image: url(../images/background-img.png);
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    text-align: center;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    min-height: 100vh;
  }

.testimonials .text-wrapper p{
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonials .image-wrapper img{
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
  /* Global Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background-color: #008080;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  max-height: 60px;
  width: auto;
}

.header ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 10px 0 0 0;
  width: 100%;
  justify-content: center;
}

.header li {
  flex: 1 1 auto;
  text-align: center;
}

.header a {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

/* Hero Section */
.home-screen {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tophead-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.tophead-text h1 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  margin-bottom: 10px;
}

.tophead-text p {
  font-size: clamp(1rem, 4vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

/* Headings */
.headings {
  padding: clamp(30px, 8vw, 60px);
  text-align: center;
}

.headings h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
}

/* Explanation */
.explanation {
  padding: 20px;
  text-align: center;
}

.explanation h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
}

.explanation p {
  font-size: clamp(0.9rem, 3vw, 1rem);
}

/* Services Section */
.services {
  background-color: #c0e7e7;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.service-item img {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Stats Section */
.stats {
  background-color: teal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  text-align: left;
}

.stats img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  flex: 1 1 300px;
  border-radius: 8px;
}

.num {
  flex: 1 1 300px;
  max-width: 600px;
}

.num h3, .num p {
  color: white;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
}

.home-founder {
  padding: clamp(20px, 5vw, 30px) clamp(20px, 8vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.home-founder h1 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  color: #008080;
  text-align: center;
  margin: 0;
}

.home-founder .bio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.home-founder .bio img {
  width: clamp(200px, 30%, 300px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  justify-content: center;
}

.home-founder .bio-wrapper {
  flex: 1 1 300px;
  max-width: 100%;
}

.home-founder .bio-wrapper p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  color: #333;
}

/* Partners Section */
.partners {
  background-color: #c0e7e7;
  padding: 20px;
  text-align: center;
}

.partners-logo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  justify-content: center;
}

.partners-logo img {
  max-height: 100px;
  width: auto;
}

/* Founder Section */
.home-founder{
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
}


.image-wrapper {
  width: 100%;
  max-width: 300px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-wrapper h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: black;
}

.bio img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  display: block;
 
}

.bio-wrapper {
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.bio-wrapper p {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
}

.bio-wrapper ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 auto;
  text-align: left;
  max-width: 500px;
  font-size: 1rem;
}


/* Vision Section */
.vision {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #eafafa;
  gap: 20px;
}

.vision .bio {
  flex-direction: column;
}

.vision h2 {
  text-align: center;
}

.vision .image-wrapper img {
  width: 100%;
  height: auto;
}

/* Testimonials / Inquiries */
.testimonials {
  padding: 20px;
  text-align: center;
}

.testimonials .image-wrapper img {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}

.testimonials .text-wrapper p {
  font-size: clamp(0.9rem, 3vw, 1rem);
}

}