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

:root {

  /**
   * colors
   */

  --ultramarine-blue_10: hsla(235, 70%, 60%, 0.1);
  --ultramarine-blue: hsl(235, 70%, 60%);
  --orange-peel_10: hsla(36, 100%, 55%, 0.1);
  --space-cadet_20: hsla(248, 32%, 23%, 0.2);
  --space-cadet_80: hsla(247, 35%, 19%, 0.8);
  --space-cadet-2: hsl(247, 35%, 19%);
  --old-lavender: hsl(251, 9%, 46%);
  --orange-peel: hsl(36, 100%, 55%);
  --tart-orange: hsl(0, 100%, 63%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-1: hsl(0, 0%, 96%);
  --cultured-2: hsl(0, 0%, 93%);
  --coral_10: hsla(14, 95%, 66%, 0.1);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --pumpkin: hsl(26, 98%, 49%);
  --white: hsl(0, 0%, 100%);

  /*
   typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.2rem;
  --fs-3: 2.4rem;
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.4rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /*
   spacing
   */

  --section-padding: 80px;

  /*
   box shadow
   */

  --shadow-1: 0 8px 20px hsla(0, 0%, 0%, 0.06);
  --shadow-2: 0px 4px 10px hsla(0, 0%, 0%, 0.05);

  /*
    border radius
   */

  --radius-4: 4px;
  --radius-6: 6px;

  /*
    transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*
  #RESET
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #e2f0ff;
  color: var(--old-lavender);
  font-size: 1.9rem;
  font-weight: var(--fw-500);
  line-height: 1.9;
 
}
html, body {
  margin: 0; 
  padding: 0; 
  width: 100%; 
  overflow-x: hidden; 
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 12px; }

::-webkit-scrollbar-track { background-color: var(--cultured-1); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*
  #REUSED STYLE
*/



.abs-img { display: none; }

.section-subtitle {
  color: var(--ultramarine-blue);
  text-transform: uppercase;
  font-weight: var(--fw-800);
  letter-spacing: 2px;
  margin-block-end: 5px;
}

.h1,
.h2,
.h3 {
  color: var(--space-cadet-2);
  line-height: 1.3;
  font-weight: var(--fw-800);
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

.btn {
  min-height: 60px;
  max-width: max-content;
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: var(--radius-6);
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--ultramarine-blue);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) { background-color: var(--space-cadet-2); }

.btn-secondary {
  background-color: var(--white);
  color: var(--ultramarine-blue);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--pumpkin);
  color: var(--white);
}

.w-100 { width: 100%; }

.section { padding-block: var(--section-padding); }

.grid-list {
  display: grid;
  gap: 30px;
}

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




/* Basic Styling - Adjust as needed */

.site-header {
  position: fixed;       /* Change from sticky to fixed */
  top: 0;
  left: 0;
  width: 100%;           /* Ensure it stretches across the screen */
  z-index: 1000;
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main{
  padding-top: 100px;
}
/* Rest of your existing CSS remains the same... */

/* Container for the content */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 30px;

  padding: 0 20px;
}

/* Logo Styling */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 30px;
  margin-right: 10px;
}

.logo-img-txt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
  margin-right: 30px;
}

.site-logo:hover .logo-img-txt {
  color: #4CAF50; /* Hover effect for logo text */
}

/* Navigation */
.site-nav {
  display: flex;
  justify-content: space-between;
}

/* Menu List */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
  margin-right: 30px;
  font-size: 1.5rem;
}

.nav-item.dropdown {
  position: relative;
}


.nav-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #4CAF50; /* Hover effect for nav links */
  transform: scale(1.2); /* Subtle scale effect */
}

.nav-link--cta{
  background-color: #196b1c;
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-link--cta:hover, .nav-login:hover {
  background-color: #45a049; /* Hover effect for call-to-action */
}

/* Search and Contact Section */
.header-actions {
  display: flex;
  align-items: center;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.search-button:hover {
  transform: scale(1.2); /* Hover effect for search button */
}

.search-button svg {
  width: 20px;
  height: 20px;
}

.button--primary {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}

.button--primary:hover {
  background-color: #84e689; /* Hover effect for contact button */
}

/* Basic Dropdown Styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  background-color: white;
  padding: 0.5rem 0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Show dropdown when .show class is applied */
.dropdown-menu.show {
  display: block;
}

/* Optional: style dropdown items */
.dropdown-item {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #062c06;
  display: block;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}



/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.search-overlay-inner {
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.search-overlay .search-input {
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 30px;
}

.search-overlay .search-submit {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-overlay .search-submit:hover {
  background-color: #45a049; /* Hover effect for search submit button */
}


@media screen and (max-width: 768px) {
  
  /* ==== NAVIGATION PANEL ==== */

  .site-header{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      padding: 10px 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .site-nav {
      position: fixed;
      top: 0;
      left: -260px; /* Initially hidden */
      width: 260px;
      height: 100vh;
      background-color: #f8f9fa;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
      padding-top: 70px; /* Space for the header */
      transition: left 0.3s ease-in-out;
      z-index: 9999;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .site-nav.active {
      left: 0; /* Slide in */
  }

  /* ==== NAVIGATION LIST ==== */
  .nav-list {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 20px 0;
  }

  .nav-item {
      width: 100%;
      padding: 10px 20px;
      border-bottom: 1px solid #eee;
      font-size: 1.1rem;
  }

  .nav-item:last-child {
      border-bottom: none;
  }

  .nav-link {
      color: #333;
      text-decoration: none;
      display: block;
      width: 100%;
      padding: 8px 0;
  }

  .nav-link:hover {
      color: #007bff;
  }

  /* ==== CALL-TO-ACTION BUTTON ==== */
  .nav-link--cta {
      background-color: #007bff;
      color: #fff;
      padding: 12px 20px;
      border-radius: 5px;
      margin: 20px;
      text-align: center;
  }

  .nav-link--cta:hover {
      background-color: #0056b3;
  }

  /* ==== HAMBURGER MENU BUTTON ==== */
  .nav-toggle {
      display: block;
      cursor: pointer;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: #333;
      z-index: 10000; /* Above the menu */
      padding: 10px;
  }

  /* ==== HEADER ==== */
  .site-header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
  }

  /* ==== OPTIONAL HIDE ELEMENTS ==== */
  .logo-img-txt {
      display: none;
  }

  .header-actions {
      padding: 8px 13px;
      font-size: 1.5rem;
  }



  /* ==== REMOVE BACKGROUND OVERLAY IF YOU HAD IT ==== */
  .overlay {
      display: none !important;
  }

}

/* Smooth slide-in animation with bounce effect */
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Nav menu slide-in effect */
.site-nav.active {
  left: 0; /* Slide in from the left */
  animation: slideIn 0.5s ease-out; /* Apply smooth bounce slide effect */
}

/* Overlay styling */
.overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

/* Disable body scroll when menu is active */
body.menu-open {
  overflow: hidden;
}






/*------*\
  #HERO
\*---------------*/

.hero {
  padding-block-start: calc(10px);
  padding-block-end: var(--section-padding);
  background-color: #ebf2fd;
  width: 100%;

}

.hero .container {
  position: relative;
  width: 100%; /* Make sure container takes full width */
  padding-inline: 0;
  display: flex;
  top: 10px;
  
}


/* Control the height of the carousel */
#heroCarousel {
  max-height: 70vh; 
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

#heroCarousel img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.carousel .slide{ 
  width: 100%;
  position: relative;
  overflow: hidden;
}


.carousel-item {
  width: 100%; 
  height: auto;   
}

/* Ensure the hero section images are fully visible */
.hero img {
  width: 100%; 
  height: auto; 
  object-fit: contain; 
}



/* Carousel controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background-size: 80% 80%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #heroCarousel {
    max-height: 300px;
  }

  .carousel-inner {
    max-height: 300px;
  }

  .hero-img {
    height: 300px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon { 
    width: 40px;
    height: 40px;
    background-size: 60% 60%;
  }
}


/*-----------------------------------*\
  #About 
\*-----------------------------------*/
.about {

  text-align: center;
  background-color: #f5d1c3;
  
}

.about-header {
  margin-bottom: 2rem;
  margin-top: 10px;
}

.section-subtitle {
  font-size: 1.7rem;
  color: var(--ultramarine-blue);
  font-weight: var(--fw-700);
}

.section-title {
  font-size: 3rem;
  color: var(--space-cadet-2);
}

.about-body {
  display: flex;
  gap: 5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0 2rem;
}

.about-left {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background-color: var(--cultured-1);
  padding: 1.5rem;
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-1);
  transition: transform 0.2s ease-in-out;
  text-align: left;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card-title {
  font-size: 1.7rem;
  color: var(--space-cadet-2);
  font-weight: var(--fw-700);
  margin-bottom: 0.75rem;
}

.about-card-text {
  color: var(--old-lavender);
  font-size: 1.7rem;
  line-height: 1.6;
}

.about-right {
  flex: 1;
  max-width: 40%;
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-2);
}

.carousel-item {
  display: none;
  width: 100%;
  height: auto;
}

.carousel-item.active {
  display: block;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.3s ease-out;
}

.about-image:hover {
  transform: scale(1.05);
}

#aboutCarousel .carousel-inner img {
  width: 100%; /* Ensure the image spans the full width of the container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image covers the container */
}

@media (max-width: 768px) {
  .about-body {
    flex-direction: column;
  }

  .about-left, .about-right {
    max-width: 100%;
    object-fit: cover;
  }

  .section-title {
    font-size: 1.3rem; 
  }

  .page-title {
    font-size: 1.1rem; 
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .about-card-title {
    font-size: 1.6rem;
  }

  .about-card-text {
    font-size: 1.4rem;
  }
 
}





/*-*\
  #Facilities
\*--*/

.page-title {
  font-size: 4rem; 
  font-weight: 700; 
  color: #2c3e50; 
  margin: 3rem 0; 
  text-transform: uppercase;
  letter-spacing: 2px; 
  text-align: center;
  position: relative;
}


.page-title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* Adjusted for better spacing */
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Slightly larger for emphasis */
  height: 4px;
  background-color: #3498db; /* Primary blue color */
  border-radius: 2px;
}
/* Facilities Section */
.facilities {
  padding: 5rem 2rem; /* Reduced side padding for full-width feel */
  background: linear-gradient(135deg, #f0f4ff 0%, #ffc99c 100%); /* Kept gradient for depth */
  min-height: 100vh; /* Full viewport height */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem; 
  width: 100%; 
  padding: 0; 
}

.facility-item {
  background-color: #ffffff; /* Clean white background */
  border-radius: 12px; /* Softer radius */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Softer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid transparent;
}

.facility-item:hover {
  transform: translateY(-8px); /* Kept lift effect */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #d4e0ff;
}

.facility-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* Keeps consistent width:height */
  width: 100%;
  height: auto;
}

.facility-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill container */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.facility-item:hover .facility-image {
  transform: scale(1.15); /* Kept zoom effect */
  opacity: 0.95;
}

.facility-title {
  font-size: 2.0rem;
  color: #1e2a44;
  font-weight: 600;
  padding: 1.25rem 1.5rem 0.5rem;
  margin: 0;
  line-height: 1.3;
}

.facility-description {
  color: #5a6275;
  font-size: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
  margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .facility-image-container {
    height: 300px; /* Slightly smaller images for tablets */
  }

  .facility-title {
    font-size: 2.0rem;
  }

  .facility-description {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .facilities {
    padding: 3rem 0;
  }

  .facilities-grid {
    grid-template-columns: 1fr; /* Single column for smaller screens */
    gap: 1rem; /* Slightly larger gap for mobile */
  }

  .facility-image-container {
    height: 250px; /* Adjusted for mobile */
  }

  .facility-title {
    font-size: 2.0rem;
  }
}

@media (max-width: 480px) {
  .facility-image-container {
    height: 200px; /* Smaller for very small screens */
  }

  .facility-item {
    border-radius: 8px;
  }
}


/*-----------------------------------*\
 #BENEFITS
\*-----------------------------------*/


/* General Section Styling */
section.benefits {
  padding: 10rem 5rem; 
  background-color: #f5f9ff; 
  overflow: hidden; 
}

.section-title {
  font-size: 4rem; /* Balanced size for all devices */
  font-weight: 700; /* Bold for emphasis */
  color: #2c3e50; /* Darker color for better readability */
  margin: 3rem 0; /* Balanced spacing */
  text-transform: uppercase;
  letter-spacing: 2px; /* Subtle spacing */
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* Adjusted for better spacing */
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Slightly larger for emphasis */
  height: 4px;
  background-color: #3498db; /* Primary blue color */
  border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem; 
  width: 100%; 
  padding: 0;
}

.benefit-card {
  background-color: #ffffff; /* Clean white background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 2rem; /* Increased padding for larger cards */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit-card:hover {
  transform: translateY(-8px); /* Subtle lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.benefit-card .card-icon {
  font-size: 3rem; /* Larger icon size */
  color: #3498db; /* Primary blue color */
  margin-bottom: 1rem;
}

.benefit-card .card-title {
  font-size: 2.5rem; /* Larger title */
  font-weight: 600;
  color: #2c3e50; /* Darker text for better readability */
  margin-bottom: 0.5rem;
}

.benefit-card .card-meta {
  font-size: 1.5rem;
  color: #7f8c8d; /* Subtle gray for secondary text */
  line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for medium screens */
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }

  .benefit-card {
    padding: 1.5rem; /* Reduced padding for smaller screens */
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }

  .benefit-card {
    padding: 1.5rem;
  }
}

/*-----------------------------------*\
 #CTA
\*-----------------------------------*/

.cta {
  background-color: var(--ultramarine-blue);
  color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; /* Cover the entire section */
  padding: 4rem 0;  
}

.cta-wrapper {
  display: flex;                   /* Use flexbox for layout */
  align-items: center;             /* Vertically center content */
  justify-content: space-between;  /* Space out banner and content */
  gap: 2rem;                       /* Space between items */
  padding: 2rem;                   /* Add some padding inside the container */
  border-radius: var(--radius-6);  /* Optional: Rounded corners */
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 6rem; /* Add a translucent background */
}

.cta-banner {
  flex: 1;                      /* Take up available space */
  max-width: 100%;               /* Limit image width */
  border-radius: var(--radius-6); /* Rounded corners for the image */
  overflow: hidden;             /* Hide any overflow */
}

.cta-banner img {
  width: 100%;                   /* Make image fill container */
  height: auto;                  /* Maintain aspect ratio */
  display: block;                /* Remove bottom spacing */
  object-fit: cover;             /* Cover the area, cropping if needed */
  transition: transform 0.3s ease; /* Smooth transition for hover */
}

.cta-banner:hover img {
  transform: scale(1.05);        /* Slight zoom on hover */
}

.cta-content {
  flex: 1;                      /* Take up available space */
  max-width: 60%;               /* Limit content width */
  text-align: left; 
  margin-left: 2rem;             /* Align text to the left */
}

.cta .section-subtitle {
  color: var(--white);            /* White subtitle */
  opacity: 0.8;                  /* Reduced opacity for a subtle look */
  margin-bottom: 0.5rem;          /* Space below subtitle */
  display: block;  
  font-size: 2.5rem; 
  color: #edffe9              /* Ensure it's on its own line */
}

.cta .section-title {
  color: var(--white);            /* White title */
  margin-bottom: 1rem;          /* Space below title */
  font-size: 2.0rem;                /* Adjust font size */
  line-height: 1.3;               /* Improve line height */
}

.cta .section-text {
  margin-bottom: 2rem;  
  margin-left: 3rem;        /* Space below text */
  font-size: 1.6rem;              /* Slightly larger text */
  opacity: 0.9;                  /* Slightly reduced opacity */
}

  /* Styling the contact link */
  .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 12px 24px;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Add hover effects */
  .contact-link:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-4px); /* Slight lift effect */
  }

  /* Styling the text inside the link */
  .span {
    margin-right: 10px; /* Spacing between text and icon */
  }

  /* Styling the ion-icon */
  ion-icon {
    font-size: 1.7rem;
    transition: transform 0.3s ease;
  }

  /* Add icon hover effect */
  .contact-link:hover ion-icon {
    transform: translateX(5px); /* Move icon slightly to the right on hover */
  }



/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;        /* Stack banner and content vertically */
    text-align: center;           /* Center text */
  }

  .cta-banner,
  .cta-content {
    max-width: 100%;             /* Take full width on smaller screens */
  }
}






/*-----------------------------------*\
 #NEWSLETTER
\*-----------------------------------*/

.newsletter {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 0;                /* Increase padding for better visual balance */
}
.newsletter-content{
color: #155c03
}
.container {
  display: flex;                  
  align-items: center;            
  justify-content: center;        
  gap: 2rem;                      
  padding-left: 2rem;                 
  border-radius: var(--radius-6); 
}

.newsletter-wrapper {
  background-color: rgba(255, 255, 255, 0.1); /* Optional: Translucent overlay */
  border-radius: var(--radius-6);
  padding: 3rem 2rem;             /* Add padding around content */
  max-width: 800px;               /* Limit the width for better readability */
  margin-left: 10rem;                  /* Center the whole section */
}

.newsletter .section-title {
  margin-block-end: 1.5rem;          /* Slightly reduced spacing */
  font-size: 2rem;                  /* Adjust font size */
  line-height: 1.4;                 /* Improve line height */
}

.newsletter .section-subtitle {
  color: #007bff;              /* Match subtitle color */
  opacity: 0.9;                    /* Make text more readable */
  margin-bottom: 0.5rem;            /* Reduce spacing */
  font-weight: var(--fw-600);        /* Use slightly bolder font */
}


  /* General form styling */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Input field container */
  .form-group {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }

  /* Input field styling */
  .input-field {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.3s;
  }

  /* Icon inside input field */
  .input-icon {
    position: absolute;
    right: 10px;
    font-size: 1.4rem;
    color: #777;
    pointer-events: none;
  }

  /* Input field focus state */
  .input-field:focus {
    border-color: #4CAF50;
  }

  /* Submit button styling */
  .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .btn-submit:hover {
    background-color: #45a049;
    transform: translateY(-4px);
  }

  /* Button text and icon */
  .btn-text {
    margin-right: 10px;
  }

  .btn-icon {
    font-size: 1.3rem;
  }



/* Responsive Adjustments */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;          /* Stack form elements vertically */
    align-items: stretch;           /* Make items take full width */
  }

  .input-wrapper {
    width: 100%;                     /* Input takes full width */
  }

  .newsletter .btn {
    width: 100%;                     /* Button takes full width */
  }
}


@media (max-width: 768px) {
  .about-body {
    flex-direction: column;
  }

  .about-left, .about-right {
    max-width: 100%;
    object-fit: cover;
  }

  .section-title {
    font-size: 2.5rem; /* Adjusted smaller for mobile */
  }

  .page-title {
    font-size: 2.5rem; /* Adjusted smaller for mobile */
  }

  .section-subtitle {
    font-size: 1.6rem;
  }

  .about-card-title {
    font-size: 1.9rem;
  }

  .about-card-text {
    font-size: 1.6rem;
  }
}





/*-----------------------------------*\
 #FOOTER    

 /* Footer Base Styles */
.footer {
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 70px 30px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
}

.footer .footer-brand .logo {
  font-size: 50px; /* BIGGER Logo */
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.footer .section-text {
  font-size: 30px; /* Increased from 17px */
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ccc;
}

.footer .social-list {
  display: flex;
  gap: 18px;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2e2e48;
  color: #ffffff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.3s;
}

.footer .social-link:hover {
  background-color: #4e4e8a;
}

/* Footer Links */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px; /* Bigger */
}

.footer-link {
  display: flex;
  align-items: center;
  color: #cccccc;
  font-size: 25px; /* Bigger */
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link ion-icon {
  margin-right: 10px;
  font-size: 20px;
}

/* Contact Info */
.footer-item {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 25px; /* Bigger */
}

.footer-item ion-icon {
  margin-right: 12px;
  font-size: 28px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 23px; /* Bigger */
  color: #aaa;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
  font-size: 18px;
}

.footer-bottom a:hover {
  color: #aaa;
}
