* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  
}
.logo {
  width: 50px; 
  height: auto; 
  border-radius: 50%; 
  object-fit: cover; 
  position: absolute; 
  top: 0;
  left: 0;
  padding: 30px;
}
.logo-container {
  display: flex;
  align-items: center; /* Vertically centers the logo and text */
}
.site-title {
  margin-left: 15px; /* Space between logo and text */
  font-size: 24px; /* Adjust text size */
  color: #fff; /* Text color */
}

@media (max-width: 600px) {
  .logo {
    width: 20px; 
  }
  .site-title {
      display: none;
    }
}

.header1{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/banner.png);
  background-position: center;
  background-size: cover;
  position: relative;

}
.header2{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/rock_climbing.png);
  background-position: center;
  background-size: cover;
  position: relative;

}
.header3{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/girlswing.png);
  background-position: center;
  background-size: cover;
  position: relative;

}
.header4{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(images/kidwriting.png);
  background-position: center;
  background-size: cover;
  position: relative;

}
nav{
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img{
  width: 150px;

}
.nav-links{
  flex: 1;
  text-align: right;

}
.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #068d3e;
  display: block;
  margin: auto;
  transition: 0.5s;

}
.nav-links ul li:hover::after{
  width: 100%

}
.text-box{
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1{
  font-size: 62px;
}
.text-box p{
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;

}
.hero-btn{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover{
  border: 1px solid #068d3e;
  background: #068d3e;
  transition: 1s;

}
nav .fa{
  display: none;
}
@media(max-width: 700px){
  .text-box h1{
      font-size: 20px;
  }
  .nav-links ul li{
      display: block;

  }
  .nav-links{
      position: absolute;
      background: #068d3e;
      height: 100vh;
      width: 200px;
      top:0;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
  }
  nav .fa{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;

  }
  .nav-links ul{
      padding: 30px;
  }
}
/*-------services----------*/
.Services {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
h1{
  font-size: 36px;
  font-weight: 600;
}
p{
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;

}
.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;

}
.Services-col{
  flex-basis: 31%;
  background: #eeb259;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.5s;
  
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px;

}
.Services-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}
@media(max-width: 700px){
  .row{
      flex-direction: column;
  }
}

/* ---------------aboutme------------*/
#aboutme {
  padding: 28px ;
  

  
 
}
.row1{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}
.aboutme-col-1{
  flex-basis:30%;
}
.aboutme-col-1 img{
  width: 100%;
  border-radius: 15px;
}
.aboutme-col-2 {
  
  flex-basis: 65%;
}
.sub-title{
  font-size: 60px;
  font-weight: 600;
  color: #000;

}
.tab-titles{
  display:flex;
  margin: 20px 0 40px; 
  align-items: flex-start; 

}
.tab-links {
  margin-bottom: 10px; 
}
.tab-links{
  margin-right: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  background: #2EBA12;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s ;
}
.tab-links.active-link::after{
  width: 50%;



}
tab-contents ul li{
  list-style: none;
  margin: 10px 0;
}
.tab-contents ul li span{
  color: #2EBA12;
  font-size: 14px;
}
.tab-contents{
  display: none;
}
.tab-contents.active-tab{
  display: block;
}
@media(max-width: 600px){
  .sub-title{
      font-size: 30px;

  }
  .container{
    align-items: centre;
 
  }
  .aboutme-col-1, .aboutme-col-2{
      flex-basis: 100%;
      align-items: center;
      margin-right: auto;
      
  }
  .aboutme-col-1{
      margin-bottom: 30px ;

  }
  .aboutme-col-2{
      font-size: 10px;

  }
  .tab-links{
      font-size: 16px;
      margin-right: 20px;

  }
  
}
.Services {
  padding: 20px;
  background-color: #fff; /* Adjust background color as needed */
}

.Services h1 {
  text-align: center;
  color: #333; /* Adjust color as needed */
}

.Services p {
  text-align: center;
  color: #666; /* Adjust color as needed */
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap between columns */
  justify-content: center; /* Center columns horizontally */
}

/* Styles for each column */
.Services-col {
  flex: 1 1 300px; /* Adjust the width of columns */
  box-sizing: border-box;
  padding: 20px;
  background-color: #eeb259; /* Background for each column */
  border: 1px solid #ddd; /* Border color for columns */
  border-radius: 5px; /* Rounded corners for columns */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Styles for Read More buttons */
.readmore {
  display: inline-block;
  text-decoration: none;
  color: #fff; /* Text color */
  border: 1px solid #df5f0b;
  padding: 12px 34px;
  font-size: 13px;
  background: #df5f0b;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  margin-top: auto;
}

.readmore:hover {
  border: 1px solid #df5f0b;
  background: transparent;
  color: #df5f0b; /* Text color on hover */
  transition: 1s;
}
.footer{
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background-color: rgb(0, 0, 0);
  color:#068d3e;
  margin-bottom: 7px;

}
footer h4{
  margin-top: 20px;
  font-weight: 600;
  color:#068d3e;
  margin-bottom: 2px;
  
}
footer p{
  font-weight: 600;
  color:#f0f8f4;
  font-size: medium;
}
.location{
  width: 80%;
  margin:auto;
  
}
.location iframe{
  width: 100%;
}

.contact-us{
  width: 80%;
  margin: auto;

}


.contact-us a[href*="wa.me"],
.contact-us a[href*="mailto"],
.contact-us a[href*="instagram"],
.contact-us a[href*="linkedin"],
.contact-us a[href*="https://maps.app.goo.gl/qk7oACYPVozEzZYd8"] {
  color: #068d3e;
  padding: 6px;
}


.contact-col{
  flex-basis:48%;
  margin-bottom: 15px;

}
.contact-col div{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-col div .fa{
  font-size: 28px;
  margin: 10px;
  margin-right: 30px;

}
/*----------aboutot----------------------*/
.about-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.about-section2 {
  background: linear-gradient(135deg, #e0f2f1 0%, #a5d6a7 100%);
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


.container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 28px;
  color: #4a90e2;
  text-align: center;
  margin-bottom: 20px;
}

h3, h4 {
  font-size: 22px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  
}

.icon {
  margin-right: 10px;
  font-size: 24px;
  color: #ff6f61;
}

.about-section ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 20px;
}

.about-section ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 18px;
}

.about-section ul li:before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #4a90e2;
}
.about-section2 ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 20px;
}

.about-section2 ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 18px;
}

.about-section2 ul li:before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #4a90e2;
}


p {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px;
  }

  h2 {
      font-size: 24px;
  }

  h3 {
      font-size: 20px;
  }

  h4 {
      font-size: 18px;
  }

  ul li {
      font-size: 16px;
  }
}
.location-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.location,
.contact-us {
  flex-basis: 48%;
  margin-bottom: 7px;
}

/* Ensure that the map and contact info stack vertically on smaller screens */
@media screen and (max-width: 768px) {
  .location,
  .contact-us {
      flex-basis: 100%;
      margin-bottom: 10px;
  }
}
.footer-copyright {
  margin-top: 10px; /* Space above the copyright text */
  font-size: 12px; /* Smaller font size for copyright notice */
  color: #aaa; /* Lighter color for the copyright notice */
  text-align: center;
  
}

/* aboutot pages*/
.faq-section {
  width: 80%;
  margin: auto;
 
}

.faq-item {
  margin-top: 30px;
  margin-bottom: 15px;
}

.faq-title {
  background-color: #007777;
  color: #080000;
  border: none;
  padding: 10px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}



/* Example CSS for dropdown functionality */
.faq-content {
  display: none;
  overflow: hidden;
  padding: 10px;
  background-color: #007777;
  border: 1px solid #007777;
  border-top: none;
}
.faq-item button.active + .faq-content {
  display: block;
}

.faq-title:hover {
  background-color: #98caeb;
}
.faq-title {
  background-color: #007777;
  color: #080000;
  border: none;
  padding: 10px;
  text-align: left;
  width: calc(100% - 20px); /* Adjust width to account for padding */
  cursor: pointer;
  font-size: 16px;
  position: relative; /* Required for positioning the arrow */
}

.faq-title::after {
  content: "▼"; /* Unicode character for downward arrow */
  font-size: 12px; /* Adjust size as needed */
  color: #fff; /* Adjust color as needed */
  position: absolute;
  right: 10px; /* Position the arrow to the right */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for exact vertical centering */
}

.faq-item button.active::after {
  content: "▲"; /* Unicode character for upward arrow when active */
}



/* image silder */
.slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 30px auto;
  padding: 20px;
  background-color: #9ce9bc; /* Light background color for contrast */
  border-radius: 10px; /* Rounded corners for a sleek look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.slider-container h1 {
  font-size: 36px;
  color: #333;
  margin: 0;
  flex-basis: 40%;
  text-align: left;
  padding-right: 20px; /* Space between the heading and slider */
}

.slider {
  flex-basis: 55%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 3s ease-in-out; /* Smoother transition */
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 20px; /* Rounded corners on images */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow on images */
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5); /* Background color for better visibility */
  border-radius: 0 3px 3px 0;
  user-select: none;
  display: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}

@media (max-width: 600px) {
  .slider-container {
      flex-direction: column;
      align-items: center;
      padding: 15px;
  }

  .slider-container h1 {
      text-align: center;
      margin-bottom: 15px;
      padding-right: 0;
  }

  .slide img {
      max-width: 90%;
      max-height: 150px;
  }
}


/* What is OT section */
.ot-process {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
}

.ot-process h2 {
  text-align: center;
  color: #6a0dad; /* Lovely Purple */
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.ot-step {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 8px solid #8a2be2; /* Border in Deep Purple */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.ot-step:hover {
  transform: translateY(-5px);
}

.ot-step h3 {
   /* Deep Purple for Headers */
  font-size: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.step-number {
  background-color: #8a2be2; /* Deep Purple for Step Numbers */
  color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.ot-step p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.ot-step ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.ot-step ul li {
  color: #8a2be2; /* Deep Purple for List Items */
  font-size: 16px;
  line-height: 1.6;
}

.ot-step ul li strong {
  color: #f7202b; /* Stronger Purple for Emphasis */
}
/* Define pastel colors for each step with corresponding text colors and step number colors */
.ot-step:nth-child(1) {
  background-color: #fce4ec; /* Pastel Pink */
  border-left-color: #f06292; /* Stronger Pink for Border */
  color: #f06292; /* Stronger Pink for Text */
}

.ot-step:nth-child(1) .step-number {
  background-color: #f06292; /* Stronger Pink for Step Number */
  color: #ffffff; /* White text inside step number */
}

.ot-step:nth-child(2) {
  background-color: #e8f5e9; /* Pastel Green */
  border-left-color: #81c784; /* Stronger Green for Border */
  color: #81c784; /* Stronger Green for Text */
}

.ot-step:nth-child(2) .step-number {
  background-color: #81c784; /* Stronger Green for Step Number */
  color: #ffffff; /* White text inside step number */
}

.ot-step:nth-child(3) {
  background-color: #e3f2fd; /* Pastel Blue */
  border-left-color: #64b5f6; /* Stronger Blue for Border */
  color: #64b5f6; /* Stronger Blue for Text */
}

.ot-step:nth-child(3) .step-number {
  background-color: #64b5f6; /* Stronger Blue for Step Number */
  color: #ffffff; /* White text inside step number */
}

.ot-step:nth-child(4) {
  background-color: #f3e5f5; /* Pastel Purple */
  border-left-color: #ba68c8; /* Stronger Purple for Border */
  color: #ba68c8; /* Stronger Purple for Text */
}

.ot-step:nth-child(4) .step-number {
  background-color: #ba68c8; /* Stronger Purple for Step Number */
  color: #ffffff; /* White text inside step number */
}

.ot-step:nth-child(5) {
  background-color: #fff9c4; /* Pastel Yellow */
  border-left-color: #fdd835; /* Stronger Yellow for Border */
  color: #fdd835; /* Stronger Yellow for Text */
}

.ot-step:nth-child(5) .step-number {
  background-color: #fdd835; /* Stronger Yellow for Step Number */
  color: #ffffff; /* White text inside step number */
}

/* Define red color for step 5 */
.ot-step:nth-child(6) {
  background-color: #ffebee; /* Light Red (Pastel) */
  border-left-color: #f44336; /* Stronger Red for Border */
  color: #f44336; /* Stronger Red for Text */
}

.ot-step:nth-child(6) .step-number {
  background-color: #f44336; /* Stronger Red for Step Number */
  color: #ffffff; /* White text inside step number */
}


.ot-step:nth-child(7) {
  background-color: #c8e6c9; /* Pastel Mint */
  border-left-color: #4caf50; /* Stronger Mint for Border */
  color: #4caf50; /* Stronger Mint for Text */
}

.ot-step:nth-child(7) .step-number {
  background-color: #4caf50; /* Stronger Mint for Step Number */
  color: #ffffff; /* White text inside step number */
}

/* Specific text colors for headers and list items */
.ot-step h3 {
  color: inherit; /* Inherit color from the parent step */
}

.ot-step p {
  color: inherit; /* Inherit color from the parent step */
}

.ot-step ul li {
  color: inherit; /* Inherit color from the parent step */
}


/* Payment */
.payment-info {
  background: linear-gradient(135deg, #f9f9f9 0%, #ece9f9 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden; /* Ensures the curve effect is contained */
}

.payment-info::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #6a0dad; /* Lovely Purple */
  border-radius: 0 0 100% 100%;
  z-index: -1; /* Ensures the curve is behind the content */
}

.payment-info h2 {
  text-align: center;
  color: #6a0dad; /* Lovely Purple */
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #dcd3f9; /* Light Purple Border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 40px;
  color: #8a2be2; /* Deep Purple */
  margin-right: 20px;
}

.info-content h3 {
  color: #6a0dad; /* Lovely Purple for Headers */
  font-size: 20px;
  font-family: 'Georgia', serif; /* Different Font Style for Headings */
  margin-top: 0;
}

.info-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .ot-process {
    padding: 20px;
  }

  .ot-process h2 {
    font-size: 24px;
  }

  .ot-step {
    padding: 15px;
    margin-bottom: 10px;
  }

  .ot-step h3 {
    font-size: 18px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .ot-step p {
    font-size: 14px;
  }

  .ot-step ul li {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .payment-info {
    padding: 20px;
  }

  .payment-info h2 {
    font-size: 24px;
  }

  .info-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .info-icon {
    font-size: 35px;
  }

  .info-content h3 {
    font-size: 18px;
  }

  .info-content p {
    font-size: 14px;
  }
}  
/* services offered */
.services-offered {
  padding: 30px;
  background-color: #f7f7f7;
  border-radius: 15px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Arial', sans-serif;
}

.service-card {
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  color: #333; /* Softer text color */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

/* Specific pastel colors for each service card */
.service-baby-therapy {
  background-color: #a8d5ba; /* Pastel Green */
}

.service-school-aged-children {
  background-color: #a3cbe7; /* Pastel Blue */
}

.service-school-readiness {
  background-color: #f7c6a3; /* Pastel Orange */
}

.service-developmental-assessments {
  background-color: #d1c6e7; /* Pastel Purple */
}

.service-functional-evaluations {
  background-color: #f5a5a7; /* Pastel Red */
}

.service-parent-education {
  background-color: #f6e6a3; /* Pastel Yellow */
}

/* Enhanced styling for text and nested lists */
.service-title {
  font-size: 1.7em;
  margin-bottom: 12px;
  font-weight: bold;
  color: #555;
}

.service-details p,
.service-details ul {
  margin-top: 12px;
  line-height: 1.7;
  font-size: 1.1em;
}

.service-details ul {
  padding-left: 25px;
}

.service-details li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 10px;
}

/* Custom bullet points for main list items */
.service-details li::before {
  content: '';
  color: #555;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Styling for nested lists */
.service-details ul ul {
  margin-top: 5px;
  padding-left: 20px;
}

.service-details ul ul li {
  margin-bottom: 8px;
  padding-left: 5px;
  font-size: 1em;
}

/* Custom bullet points for nested list items */
.service-details ul ul li::before {
  content: '';
  color: #777;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 0;
}

/* mission statement */
.mission-statement {
  padding: 40px;
  background: #e0f2f1; /* Soft Teal Background */
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: justify;
}

.mission-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  text-align: justify;
  
}

.quote-icon {
  font-size: 4rem;
  color: #00796b; /* Deep Teal */
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
}

.quote-icon:last-of-type {
  right: 20px;
  left: auto;
  top: auto;
  bottom: -20px;
  transform: rotate(180deg);
}

.text-container {
  margin-bottom: 40px; /* Adjust spacing if needed */
}

.mission-statement h2 {
  color: #00796b; /* Deep Teal */
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.mission-content p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Media Queries for Mission Statement */
@media (max-width: 768px) {
  .mission-statement {
    flex-direction: column;
    align-items: flex-start;
  }

  .mission-statement h2 {
    font-size: 28px;
  }

  .mission-content p {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 3rem;
  }
}



/* What is OT */
.ot-section {
  background: linear-gradient(to right, #e0f7fa, #b2ebf2);
  font-family: 'Arial', sans-serif;
  color: #333;
  padding: 20px;
}

/* Ensure other sections are not affected */
body {

  margin: 0;
  padding: 0; /* Reset padding for body if necessary */
}

.ot-section {
  
  padding: 30px;
  border-radius: 50px 50px 0 0; /* Curve at the top */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  overflow: hidden; /* Ensure content stays within curved area */
}

.ot-section::before {
  content: '';
  position: absolute;
  top: -50px; /* Adjust this value to control the curve height */
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.ot-section h1 {
  color: #008080;
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.ot-section h2 {
  color: #006666;
  margin-top: 25px;
  font-size: 24px;
  text-decoration: underline;
}

.ot-section h3 {
  color: #004c4c;
  margin-top: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.icon {
  background-color: #e0f7fa;
  border-radius: 50%;
  padding: 8px;
  margin-right: 10px;
  font-size: 20px;
}

.ot-point {
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.ot-point:hover {
  background-color: #f1f8e9;
  border-radius: 8px;
  padding: 10px;
}

.ot-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.ot-section strong {
  color: #007777;
  font-weight: bold;
}
.did-you-know {
  background-color: #f7f9fc;
  border-left: 6px solid #007777;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.did-you-know h3 {
  color: #007777;
  font-size: 22px;
  margin-top: 0;
  font-weight: bold;
}

.did-you-know p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}
/* free */
.free-screenings {
  text-align: center;
  padding: 20px;
  background: #f0f0f0; /* Light background for contrast */
}

.free-icon {
  display: inline-block;
  padding: 30px; /* Increase padding for a larger bubble */
  background: linear-gradient(to right, #ffeb3b, #f44336); /* Flashing effect */
  position: relative;
  font-family: 'Arial', sans-serif;
  font-size: 3rem; /* Increase font size for bigger text */
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adjust shadow for larger size */
  animation: flash 1s infinite; /* Flashing animation */
  border-radius: 15px; /* Adjust border-radius for larger bubble */
  overflow: hidden; /* Ensure the zig-zag effect doesn't overflow */
}

/* Create larger zig-zag edges */
.free-icon::before,
.free-icon::after {
  content: '';
  position: absolute;
  border-style: solid;
}

.free-icon::before {
  border-width: 30px; /* Increase border-width for larger zig-zag */
  border-color: transparent transparent #f44336 transparent;
  top: -30px;
  left: 15%;
  transform: rotate(-45deg);
  transform-origin: 0 0;
}

.free-icon::after {
  border-width: 30px; /* Increase border-width for larger zig-zag */
  border-color: transparent transparent #ffeb3b transparent;
  bottom: -30px;
  right: 15%;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.screening-text {
  margin-top: 30px; /* Increase margin for larger spacing */
  font-size: 2rem; /* Increase font size for larger text */
  color: #333;
  font-family: 'Arial', sans-serif;
}

/* Animation Keyframes */
@keyframes flash {
  0% {
    background: #ffeb3b;
  }
  50% {
    background: #f44336;
  }
  100% {
    background: #ffeb3b;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .free-icon {
    font-size: 2rem; /* Adjust font size */
    padding: 20px; /* Adjust padding */
  }

  .free-icon::before,
  .free-icon::after {
    border-width: 20px; /* Adjust zig-zag size */
  }

  .screening-text {
    font-size: 1.5rem; /* Adjust text size */
  }
}

@media (max-width: 480px) {
  .free-icon {
    font-size: 1.5rem; /* Adjust font size */
    padding: 15px; /* Adjust padding */
  }

  .free-icon::before,
  .free-icon::after {
    border-width: 15px; /* Adjust zig-zag size */
  }

  .screening-text {
    font-size: 1.25rem; /* Adjust text size */
  }
}




/* pop up code */
#modalbox{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  max-width: 450px;
  text-align: center;
  padding: 80px 60px;
  font-size: 18px;
  font-weight: 500;
  background: #e09812;
  border-radius: 20px;
  display: none;
  color: #000;



}
#modalbox h2{
  color: #000;

}
.popup{
  width: 100px;
  margin-bottom: 15px;

}
#modalbox button{
  background: #ebcf52;
  color: #000;
  padding: 15px 0;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  width: 40%;
  border:0;
  outline: 0;
  margin-top: 50px;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);



}
.close-icon{
  width:25px;
  height: 25px;
  position: absolute;
  top: 25px;
  right: 25px;
}
@media (max-width: 600px) {
  #modalbox {
      width: 50%;
      padding: 60px 40px;
  }

  #modalbox button {
      font-size: 18px;
      width: 60%;
      margin-top: 30px;
  }

  .popup {
      width: 80px;
      margin-bottom: 10px;
  }

  .close-icon {
      width: 20px;
      height: 20px;
      top: 15px;
      right: 15px;
  }
}
/* free screening */

.content-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-wrapper h1 {
  color: #064d4d;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.content-wrapper h2 {
  color: #007777;
  border-bottom: 2px solid #007777;
  padding-bottom: 10px;
  font-size: 1.8em;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

li {
  margin-bottom: 10px;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

button, .button {
  display: inline-block;
  font-size: 18px;
  padding: 15px 30px;
  color: #fff;
  background: linear-gradient(90deg, #007777, #66a7bb);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button {
  font-weight: bold;
}

.button:hover {
  background: linear-gradient(90deg, #007777, #007777);
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
