/* will be using flexbox so i wan to prefix it
 for browsers that do not support it */
 @import url('https://fonts.googleapis.com/css?family=Merriweather+Sans');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
 @mixin flexbox() {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  
  @mixin flex($values) {
    -webkit-box-flex: $values;
    -moz-box-flex:  $values;
    -webkit-flex:  $values;
    -ms-flex:  $values;
    flex:  $values;
  }
  
  @mixin order($val) {
    -webkit-box-ordinal-group: $val;  
    -moz-box-ordinal-group: $val;     
    -ms-flex-order: $val;     
    -webkit-order: $val;  
    order: $val;
  }
  
  .wrapper {
    @include flexbox();
  }
  
  .item {
    @include flex(1 200px);
    @include order(2);
  }
  .container {
    width: 70%;           
    max-width: 1100px;     
    margin: 0 auto;        
    padding: 0px 20px 20px;  
  }
  
  .navbar {
    background-color: #3499575e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

/* Dropdown Styles */
.dropdown {
  position: relative; /* Makes sure the dropdown menu is positioned relative to the icon */
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f7f8f7;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 100px;
  z-index: 1;
  top: 160%;
  left: -40%;
  transform: translateX(-50%);
  border: 1px solid;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  border-radius: 1px;
  margin: 2px 0px 2px;
  background-color: #f1f1f1;
}

.dropdown-menu a:hover {
  background-color: #dfe9e4; /* Background color on hover */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

  .responsive-logo {
    width: 100%; /* Makes the image adapt to the container */
    max-width: 230px; /* Sets a maximum width */
    height: auto; /* Keeps the aspect ratio */
  }
  .nav_button{
    background-color: #27FF48;
    border-style: none;
    padding: 10px;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    cursor: pointer;
  }
  .menu-links{
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .menu-links a {
    margin-right: 20px;    /* Adds space to the right of each link */
    text-decoration: none;  /* Removes the underline from the links */
    color: #333;            /* Default color for the links */
    font-weight: bold;      /* Makes the text bold */
    transition: color 0.3s ease; /* Smooth color transition */
    cursor: pointer;
  }
  
  .menu-links a:last-child {
    margin-right: 0;       /* Removes extra space after the last link */
  }
  
  .menu-links a:hover {
    color: #1adb54;         /* Changes color when hovered */
    text-decoration: none; /* Adds an underline on hover */
  }
  .contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    max-width: 60%;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.input-field,
.textarea-field {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f2f2f2;
}

.textarea-field {
    height: 150px;
    resize: none;
}

.submit-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #27FF48;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #1fb93c;
}

.contact-image img {
    max-width: 150px;
    height: auto;
    margin-left: 1rem;
}

  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 0rem; /* Adds some spacing around the section */
    background-image: url('images/heroBG.png');
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the background covers the whole area */
    width: auto; /* Full width */
}

.hero-content {
    max-width: 50%; /* Limits the width of the text section */
    color: #fff; /* Ensures text color contrasts well with the background */
}

.hero-title {
    font-size: 3rem; /* Adjust font size */
    color: #27FF48;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #e1e1e1;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.hero-image {
    max-width: 50%; /* Ensures the image section is half the width */
    text-align: center;

}

.hero-img {
    margin-bottom: 80px;
    max-width: 80%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional for rounded corners */
}
.responsive-logo {
    width: 100%; /* Makes the image adapt to the container */
    max-width: 230px; /* Sets a maximum width */
    height: auto; /* Keeps the aspect ratio */
  }
  .page-moto {
    background-color: #27FF48;
    border-radius: 10px;
    padding: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    bottom: -7%; 
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 850px;
    box-sizing: border-box;
}

  .service{
    background-image: url('images/service_bg.png');
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the background covers the whole area */
    height: 100vh; /* Full height */
    width: 100%; /* Full width */
    max-width: fit-content;
  }
  .service-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    margin: 0px 0% 0px;
  }
  .div-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Ensures equal space between cards both vertically and horizontally */
    justify-content: center; /* Centers the cards horizontally */
    padding: 20px; /* Adds space around the entire section */
}

.card {
    height: auto;
    width: 350px;
    border: 0px solid rgb(73, 67, 67);
    border-radius: 5px;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between card title and body */
    padding: 20px;
    background-color: #fff;
}
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}

.card-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    color: #000000;
    line-height: 1.6;
    font-weight: normal;
    text-align: center;
}
.facility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 2rem 0rem; /* Adds some spacing around the section */
  background-image: url('images/facility_bg.png');
  background-repeat: no-repeat;
  background-size: contain; /* Ensures the background covers the whole area */
  height: 100vh; /* Full height */
  width: 100%; /* Full width */
  max-width: fit-content;
}

.facility-content {
  max-width: 50%; /* Limits the width of the text section */
  color: #fff; /* Ensures text color contrasts well with the background */
}

.facility-title {
  font-size: 2rem; /* Adjust font size */
  color: #040505;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.facility-description {
  font-size: 1.2rem;
  color: #686464;
  line-height: 1.6;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}
.facility-image {
  max-width: 50%; /* Ensures the image section is half the width */
  text-align: center;

}

.facility-img {
  max-width: 80%; /* Makes the image responsive */
  height: auto; /* Maintains aspect ratio */
  border-radius: 10px; /* Optional for rounded corners */
}
.review{
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center the content horizontally */
  padding: 2rem; /* Adds spacing around the section */
  background-image: url('images/review_bg.png');
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the background fills the section */
  height: auto; /* Adapts height to the content */
  width: 100%; /* Full width of the viewport */
}
.review-title{
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #040505;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: .1cqmax;
}
.reviewcards{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.review-card{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between card title and body */
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    max-width: 300px;
}
.review-user-card{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.review-card-body{
  display: flex;
  flex-direction: column;
  align-items: last baseline;
  gap: 5px;
  
}
.review-card-name{
  color:darkgreen;
  font-weight:bold;
}
.review-card-info{
  text-wrap: no-wrap;
  font-weight: lighter;
}
.about-text{
  font-size: 1.5rem;
  color: #333;
}

.about-page-text{
  padding: 0 10px;
  line-height: 25px;
}

.team{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #27FF48;
  padding: 60px 80px 60px;
}
.about{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #27FF48;
  padding: 60px 80px 60px;
  text-align: left;
}
.team-title{
  width: 100%;
  font-size: 2rem;
  text-align: center;
  color: #040505;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: .5cqmax;
}
.team-body{
  text-align: center;
  color: #fff;
  font-size: large;
  line-height: 150%;
  font-weight: bold;
}
.newsletter{
  display: flex;
  flex-direction: column;
  padding: 60px 80px 60px;
}
.newsletter-one{
  width: 100%;
  font-size: 1.9rem;
  text-align: left;
  color: #040505;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  margin: 1rem 1rem 0rem 1rem;
  letter-spacing: .1cqmax;
}
.newsletter-two{
  width: 100%;
  font-size: 1.2rem;
  text-align: left;
  color: #5c5e5e;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  margin: 0rem 1rem 0rem 1rem;
  letter-spacing: .1cqmax;
}
.newsletter-form{
  display: flex;
  gap: 20px;
}
.form-input{
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  width: 50%;
  border-width: 1px;
}
.form-button{
  margin-top: 20px;
  padding: 15px 20px 15px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  background-color: #27FF48;
  border-style: none;
  font-family: 'Montserrat', sans-serif;
}
.newsletter-green{
  display: flex;
  justify-content: space-between;
}
.enve-icon{
  width: 200px;
  height: auto;
}
.enve{
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.footer{
  background-color: #27FF48;
  display: flex;
  justify-content: space-between;
  padding: 30px 25px 20px;
}
.one{
  flex-grow: 2;
}
.two{
  flex-grow: 1;
  flex-direction: column;
  gap: 50px;
}
.footer-one{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-title{
    font-size: 1.5rem; /* Adjust font size */
    color: #070707;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-info{
  font-size: 1rem; /* Adjust font size */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  margin-bottom: 1rem;
  text-wrap: wrap;
  max-width: 300px;
}
.Q-links{
  font-size: 1.2rem; /* Adjust font size */
    color: #070707;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
.links{
  text-decoration: none;
  font-size: 1rem; /* Adjust font size */
    color: #070707;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
.m_nav_button, .m-facility, .m-review, .m-team, .m-newsletter, .m-footer{
  display: none;
}
/* Mobile Hero Section */
.m-hero {
  display: none; /* Hide the mobile hero by default */
}

.m-hero-content {
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.m-hero-title {
  font-size: 2rem;
  color: #27FF48;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.m-hero-description {
  font-size: 1rem;
  color: #e1e1e1;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

.m-hero-image {
  text-align: center;
}

.m-hero-img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

.m-newsletter {
  background-color: #fff; /* Light greenish background */
  padding: 20px; /* Spacing around section */
  text-align: center; /* Center-align content */
  position: relative; /* For positioning icons */
}

.m-newsletter-header {
  background-color: #f7f7f700; /* Green bar */
  padding: 10px 0;
  border-radius: 5px; /* Rounded corners */
  margin-bottom: 15px; /* Space below header */
}

.m-newsletter-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #27ff48; 
  font-family: 'Arial', sans-serif;
}

.m-newsletter-subtitle {
  font-size: 1rem;
  color: #333; /* Neutral text color */
  margin-bottom: 20px; /* Space below subtitle */
}

.m-newsletter-form {
  display: flex;
  justify-content: center; /* Center-align form */
  gap: 10px; /* Space between input and button */
  flex-wrap: wrap; /* Ensure responsiveness */
}

.m-form-input {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc; /* Light border */
  border-radius: 5px;
  width: 250px; /* Fixed width for desktop */
  max-width: 100%; /* Responsive for mobile */
}

.m-form-button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff; /* White text */
  background-color: #27ff48; /* Green button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.m-form-button:hover {
  background-color: #1ccc3a; /* Darker green on hover */
}

.m-enve {
  margin-top: 20px; /* Space above icons */
  display: flex;
  justify-content: space-between; /* Center-align icons */
  gap: 15px; /* Space between icons */
}

.m-green-vector {
  width: 50px; /* Scaled down for better placement */
  height: 50px;
}

.m-enve-icon {
  width: 60px; /* Envelope icon size */
  height: 60px;
}

.m-best-footer {
  background-color: #1e293b; /* Dark, professional background */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  padding: 20px 10px;
  text-align: center;
}

.m-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.m-footer-logo {
  margin-bottom: 0px;
}

.m-logo {
  width: 250px;
  height: auto;
}

.m-footer-slogan {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 10px;
  color: #ffffff; /* Accent Green */
}

.m-footer-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0;
  text-transform: uppercase;
  color: #ffffff;
}

.m-links-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.m-link {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin: 8px 0;
  text-decoration: none;
  transition: color 0.3s;
}

.m-link:hover {
  color: #27ff48; /* Accent Green */
}

.m-footer {
  background-color: #232f3e; /* Dark background for a professional look */
  color: #ffffff;
  padding: 50px 20px;
  text-align: left;
}

.m-footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.m-footer-logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.m-responsive-logo {
  width: 150px; /* Logo size */
  height: auto;
}

.m-footer-title {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin: 15px 0;
}

.m-footer-info {
  font-size: 1rem;
  line-height: 1.6;
  color: #dddddd;
  margin-top: 10px;
}

.m-footer-links {
  flex: 1;
}

.m-q-links {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #27ff48; /* Green for accent */
}

.m-links-list {
  list-style: none;
  padding-left: 0;
}

.m-links {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1rem;
  transition: color 0.3s;
}

.m-links:hover {
  color: #27ff48; /* Green color on hover */
}

.m-footer-social {
  flex: 1;
  text-align: center;
}

.m-social-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.m-social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.m-social-icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.m-social-icon:hover img {
  transform: scale(1.1);
}

.m-footer-bottom {
  background-color: #1d2733; /* Darker footer bottom section */
  padding: 15px 20px;
  text-align: center;
}

.m-footer-text {
  font-size: 0.9rem;
  color: #bbbbbb;
}
section.About {
  background-color: #f9f9f9; /* Soft background for readability */
  color: #333; /* Darker text for contrast */
  padding: 40px; /* Extra padding for a spacious layout */
  margin: 20px auto; /* Center the section with margin */
  border-radius: 12px; /* Smooth rounded corners */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  max-width: 1000px; /* Limit width for focus and readability */
  font-family: 'Georgia', serif; /* Elegant serif font */
  line-height: 1.8; /* Good spacing between lines */
}

/* Section Title */
section.About h2 {
  color: #27FF48; 
  font-size: 2.2em; /* Larger font size for importance */
  text-align: center; /* Center-align the heading */
  margin-bottom: 25px; /* Space below the heading */
  font-family: 'Arial', sans-serif; /* Bold sans-serif for contrast */
}

/* Paragraph Text */
section.About .about-page-text {
  font-size: 1.2em; /* Slightly larger text for readability */
  margin-bottom: 20px; /* Space between paragraphs */
  text-align: justify; /* Justified text for a professional look */
}
section.Terms {
  background-color: #f9f9f9; /* Light gray background for readability */
  color: #333; /* Darker text for contrast */
  padding: 20px; /* Add padding around the section */
  border-radius: 8px; /* Smooth corner edges */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a lifted effect */
  margin: 20px; /* Add margin to separate it from other sections */
  font-family: Arial, sans-serif; /* Clean and simple font */
}

/* Styling for the heading */
section.Terms h2 {
  color: #27FF48; 
  text-align: center; /* Center-align the main heading */
  font-size: 1.8em; /* Larger font size for emphasis */
  margin-bottom: 20px; /* Add spacing below */
}

/* Styling for subheadings */
section.Terms h3 {
  color: #444; /* Slightly lighter than the text color */
  font-size: 1.4em; /* Distinguish from normal text */
  margin-top: 15px; /* Space above the subheading */
  margin-bottom: 10px; /* Space below the subheading */
  border-left: 4px solid #27FF48; 
  padding-left: 10px; /* Indent the subheading text */
}

/* Paragraph styling */
section.Terms p {
  line-height: 1.6; /* Increase line height for better readability */
  font-size: 1em; /* Standard font size */
  margin-bottom: 15px; /* Space between paragraphs */
}

/* List styling (if you decide to use ul or ol in future updates) */
section.Terms ul, section.Terms ol {
  padding-left: 40px; /* Indent list items */
  margin-bottom: 15px; /* Space below the list */
}

/* Strong text styling */
section.Terms p strong {
  color: #0056b3; /* Match the title color */
  font-weight: bold; /* Emphasize important text */
}

/* Mobile-specific styles */
@media screen and (max-width: 680px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
  .container {    
    margin: 0;        
    padding: 0px;        
    width: 100%; /* Prevent containers from exceeding viewport width */
    max-width: 100%; /* Ensure no extra spacing */  
  }
  .m_nav_button{
    display: block;
  }
  .menu-links{
    display: none;
  }
  .nav_button, .footer{
    display: none;
  }
  section.Terms {
    padding: 15px; /* Reduce padding for smaller devices */
    margin: 10px; /* Adjust margin */
  }
  section.Terms h2 {
      font-size: 1.6em; /* Adjust font size */
  }
  section.Terms h3 {
      font-size: 1.2em; /* Adjust subheading font size */
  }
  .page-moto{
    background-color: #27FF48;
    border-radius: 10px;
    padding: 5px;
    margin: 5px 10% 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    color: #000000;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    min-height: 30px;
    display: none;
    justify-content: center; /* Centers content horizontally */
    text-align: center;
    position: absolute;
    min-width: 250px;
    left: 25px;
    top: 200px;
  }
  .responsive-logo {
    width: 100%; /* Makes the image adapt to the container */
    max-width: 130px; /* Sets a maximum width */
    height: auto; /* Keeps the aspect ratio */
  }
  .hero {
    display: none; /* Hide desktop hero on mobile */
  }
  section.About {
    padding: 20px; /* Adjust padding */
    margin: 15px; /* Reduce margin */
}
section.About h2 {
    font-size: 1.8em; /* Adjust heading size */
}
section.About .about-page-text {
    font-size: 1em; /* Adjust text size */
}
  .m-hero {
      display: flex; /* Show mobile hero */
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 50%;
      background-image: url('images/heroBG.png');
      background-repeat: no-repeat;
      background-size: cover;
  }
  .card {
    height: auto;
    width: 100%;
    border: 0px solid rgb(73, 67, 67);
    border-radius: 5px;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between card title and body */
    padding: 10px;
    background-color: #fff;
}
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
}

.card-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    color: #000000;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
    text-wrap: wrap;
}
.facility, .review, .team, .newsletter{
  display: none;
}
.m-facility{
  display: flex;
  margin-top: 0px;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  padding: 20px; /* Add spacing around the content */
  text-align: center; /* Center-align text */
  background-color: #80d18c; /* Light background color */
}
.section-title{
  font-size: 1.8rem; /* Slightly larger title */
  color: #333; /* Dark gray color for the title */
  margin-bottom: 15px; /* Space below the title */
  font-family: Arial, sans-serif;
}
.section-body{
  font-size: 1rem; /* Normal font size for body text */
  color: #555; /* Slightly lighter gray for body text */
  margin-bottom: 20px; /* Space below the text */
  line-height: 1.6; /* Better readability */
  font-family: Arial, sans-serif;
}
.section-image{
  width: 100%; /* Make image responsive */
  max-width: 400px; /* Limit max width for mobile view */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
.m-review {
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa; /* Light background */
  padding: 20px; /* Spacing around the section */
  text-align: center; /* Center the title */
}

.m-review-title {
  font-size: 1.5rem; /* Mobile-friendly font size */
  font-weight: bold;
  color: #333; /* Dark text color */
  margin-bottom: 20px; /* Space below the title */
  font-family: Arial, sans-serif;
}

/* Review Cards Container */
.m-review-cards {
  display: flex;
  flex-direction: row; /* Stack cards vertically */
  gap: 15px; /* Space between cards */
  align-items: center; /* Center cards horizontally */
}

/* Individual Review Card */
.m-review-card {
  display: flex;
  flex-direction: row; /* Align avatar and text side by side */
  align-items: center;
  background: #fff; /* White background for card */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 15px; /* Internal spacing */
  max-width: 350px; /* Limit width for mobile */
  width: 100%; /* Full width for smaller screens */
}

/* Avatar Styling */
.m-review-avatar {
  border-radius: 50%; /* Circular avatar */
  width: 60px;
  height: 60px;
  margin-right: 15px; /* Space between avatar and text */
}

/* Review Card Body */
.m-review-card-body {
  text-align: left; /* Align text to the left */
}

.m-review-card-name {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem; /* Slightly larger name font */
  color: #333;
  margin-bottom: 5px; /* Space below the name */
  display: block; /* Ensures proper line spacing */
}

.m-review-card-info {
  font-size: 0.9rem; /* Smaller font for details */
  color: #555; /* Lighter text color */
  line-height: 1.4; /* Better readability */
  font-family: Arial, sans-serif;
}
.m-team {
  display: flex;
  flex-direction: column;
  background-color: #f4f4f9; /* Subtle background */
  padding: 20px; /* Spacing around the section */
  text-align: center; /* Center-align text */
}

.m-team-title {
  font-size: 1.8rem; /* Mobile-friendly font size */
  font-weight: bold;
  color: #333; /* Dark text color */
  margin-bottom: 20px; /* Space below the title */
  font-family: 'Arial', sans-serif;
}

.m-team-content {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  gap: 30px; /* Space between paragraphs */
  align-items: center; /* Center-align content */
}

.m-team-body {
  font-size: 1rem; /* Font size for mobile readability */
  color: #555; /* Neutral text color */
  line-height: 1.5; /* Improved readability */
  display: flex;
  align-items: flex-start; /* Align icon and text */
  gap: 10px; /* Space between icon and text */
  text-align: left; /* Align text to the left */
  max-width: 400px; /* Limit width for mobile */
  margin: 0 auto; /* Center content horizontally */
}

.m-team-icon img {
  width: 30px; /* Icon size */
  height: 30px; /* Icon size */
  object-fit: contain; /* Ensure the icon maintains its aspect ratio */
}
.m-newsletter {
  display: block;
  padding: 15px; /* Adjust spacing for smaller screens */
}
.m-form-input {
  width: 100%; /* Full-width input on small screens */
}
.m-newsletter-title {
  font-size: 1.2rem; /* Slightly smaller font size */
}
.m-form-button {
  width: 100%; /* Full-width button */
}
.m-footer-content {
  flex-direction: column;
  align-items: center;
}

.m-footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.m-footer-title {
  text-align: center;
  font-size: 1.8rem;
}

.m-footer-info {
  text-align: center;
  font-size: 0.9rem;
}

.m-footer-links {
  text-align: center;
}

.m-footer-social {
  text-align: center;
  margin-top: 20px;
}

.m-footer-bottom {
  padding: 10px 15px;
}
.m-footer{
  display: block;
}
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
}
.contact-form {
  max-width: 100%; /* Ensures the form takes full width */
    width: 100%;
}
}
