
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
  }
  @font-face {
    font-family: 'YourFont';
    src: url('yourfont.woff2') format('woff2');
    font-display: swap;
  }
  
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
  }
  /* Navbar Layout */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar, .menu {
    overflow: visible;
  }
  /* Style for the nav_right container */
/* Premium Buttons Container */
/* Container for buttons */
/* Container for buttons */
.nav_right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap; /* Wraps nicely on very small screens */
}

/* Common button style */
.nav_right .btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Need Maid button */
.nav_right .btn.need-maid {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #222;
}

.nav_right .btn.need-maid:hover {
  background: linear-gradient(135deg, #ffcc33, #ffb347);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Get Job button */
.nav_right .btn.get-job {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.nav_right .btn.get-job:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .nav_right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }


  .nav_right .btn {
    display: flex;
    justify-content: center;
    align-items: center;      /* Ensures vertical centering */
    width: 100%;
    max-width: 90px;         /* Adjust for better fit */
    padding: 10px 18px;
    font-size: 0.85rem;       /* Slightly smaller text */
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1;           /* Keeps it aligned vertically */
    height: 42px;             /* Ensures consistent height for both buttons */
  }

  .nav_right .btn.need-maid {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #222;
  }

  .nav_right .btn.get-job {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
  }

  .nav_right .btn.need-maid:hover {
    background: linear-gradient(135deg, #ffcc33, #ffb347);
  }

  .nav_right .btn.get-job:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
  }
}



  
  /* Logo */
  .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  /* Main Menu */
  .menu {
    display: flex;
    gap: 25px;
    list-style: none;
  }
  
  .menu li a {
    position: relative;
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
  }
  
  .menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #EEC385;
    transition: width 0.3s ease;
  }
  
  .menu li a:hover::after {
    width: 100%;
  }
  
  /* Dropdown */
  .menu li {
    position: relative;
  }
  
  .chevron-icon {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  .menu li.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
  }
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    list-style: none !important; /* removes bullet points */
  
  }
  
  .menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
    list-style-type: none; 
  }
  
  .dropdown-menu li a {
    color: black;
    font-size: 14px;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }
  
  /* Right Section (Get Job and Menu Icon) */
  .nav_right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  /* Get Job Button */
  .btn {
    padding: 12px 24px;
    background-color: crimson;
    color: white;
    border: 2px solid crimson;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
  }
  
  /* Magnetic hover effect */
  .magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .magnetic-btn:hover {
    transform: scale(1.05);
  }
  
  /* Menu Toggle (Hamburger) */
  #menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
  }

  @media (max-width: 768px) {
    .hero-buttons {
      margin-bottom: 0 !important; /* Remove any bottom margin */
    }
  
    .hero-image-section {
      margin-top: 0 !important; /* Remove top margin */
      padding-top: 0 !important; /* Remove top padding if any */
    }
  
    .hero {
      padding-bottom: 0 !important; /* If there’s a global bottom padding */
    }
  }
  
  /*
 * CSS for the checkmark list
 */

/* Styles the <ul> element itself */
.checkmark-list {
  list-style: none; /* Removes the default black circle bullets */
  padding-left: 0;  /* Removes the default browser indentation */
  margin-top: 20px;   /* Adds some space above the list */
}

/* Styles each <li> list item */
.checkmark-list li {
  display: flex;          /* Enables flexbox for easy alignment */
  align-items: flex-start;/* Aligns the checkmark and text to the top */
  margin-bottom: 15px;    /* Adds vertical space between list items */
  line-height: 1.5;       /* Improves readability for multi-line items */
  font-size: 1.1rem;      /* Adjust size as needed */
}

/* Creates the checkmark using a ::before pseudo-element */
.checkmark-list li::before {
  content: '✔';          /* The checkmark character */
  color: #28a745;         /* A standard green success color */
  font-weight: 900;      /* Makes the checkmark bold */
  margin-right: 12px;    /* Creates space between the checkmark and the text */
  font-size: 1.2rem;     /* Makes the checkmark slightly larger than the text */
}
  
 .tagline {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937; /* Tailwind Gray-800 or choose #000 for darker tone */
  background: linear-gradient(to right, #fef3c7, #fcd34d); /* soft highlight bg */
  padding: 12px 20px;
  margin-top: 24px;
  margin-bottom: 16px;
  border-left: 6px solid #f59e0b; /* Amber-500 */
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.tagline:hover {
  background: linear-gradient(to right, #fde68a, #fcd34d);
  transform: scale(1.02);
}


@media (max-width: 600px) {
  .tagline {
    font-size: 1.05rem;
    padding: 0 20px;
  }
}


  
  /* ========== HERO SECTION ========== */
  .hero {
    position: relative;
    padding: 60px 20px; /* Adjust padding for smaller screens */
    background-color: #fefefe;
    overflow: hidden;
  }
  
  
  .hero_container {
    max-width: 500px;
  }
  
  .hero_box h1 {
    font-size: 2.1rem;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
  }
  
  .hero_box h1 span {
    color: #e67e22;
    display: inline-block;
    margin-right: 5px;
  }
  
  .hero_box p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
  }
  
  .hero_btns {
    margin-top: 30px;
  }
  
  .btn2 {
    background: crimson;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn2:hover {
    background: black;
    color: white;
  }
  
  .btn_wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  /* Right-side gray rectangle */
  .hero_graphic {
    width: 200px;
    height: 300px;
    background-color: #f0f0f0;
    position: relative;
    border-radius: 20px;
  }
  
  .hero_graphic::after {
    content: "→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: black;
  }
  
  /* Two small plus boxes */
  .hero_boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
  }
  
  .hero_box_item {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 10px;
    position: relative;
  }
  
  .hero_box_item::before,
  .hero_box_item::after {
    content: "";
    position: absolute;
    background-color: white;
  }
  
  .hero_box_item::before {
    width: 30px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero_box_item::after {
    height: 30px;
    width: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* ========== RESPONSIVE STYLES ========== */
  @media (max-width: 768px) {
    .navbar {
      flex-wrap: nowrap;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
    }
  
    .logo {
      flex-shrink: 0;
    }
   
  
    .menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      z-index: 999;
    }
  
    .menu.active {
      display: flex;
      transition: all 0.3s ease;
    }
   
    body.menu-open {
      overflow: hidden;
    }
    
  
    .nav_right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 23px;
    }
  
    .btn {
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 15px;
    }

    #menu-toggle {
      display: block;
      font-size: 24px;
      color: black;
      cursor: pointer;
    }
   
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #111;
}
    .hero {
      padding: 40px 20px;
    }
  
    .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero_graphic {
      margin-top: 40px;
      width: 180px;
      height: 250px;
    }
  
    .hero_boxes {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  /* Hide hamburger on large screens */
  @media (min-width: 769px) {
    #menu-toggle {
      display: none;
    }
  }
  /* Feature Boxes Section */
.hero_features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 0;
    background-color: #f9f9f9;
    flex-wrap: wrap;
  }
  
  .feature_box {
    width: 200px;
    height: 240px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
  }
  .member-image img {
    width: 100%;         /* Makes the image fill its container */
    height: auto;        /* Maintains aspect ratio */
    object-fit: cover;   /* Ensures the image covers the area without distortion */
    object-position: top center; /* Focuses on the top of the image where the face usually is */
    border-radius: 8px;  /* Optional: adds a slight rounding to corners for a cleaner look */
  }
  

  .feature_box:hover {
    transform: translateY(-5px);
  }
  
  .feature_img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .plus_circle {
    border: none;
    border-radius: 50%;
    background-color: crimson;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .plus_circle.large {
    width: 40px;
    height: 40px;
  }
  
  .plus_circle.small {
    width: 25px;
    height: 25px;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .feature_box p {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-top: 10px;
  }
  .hero-content {
    max-width: 1200px;
    margin: 0 auto; /* Center the content */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; /* Vertically align text and image sections */
    gap: 40px;
    flex-direction: row;
  }
  .hero-text {
    flex: 1 1 500px; /* Adjust flex basis as needed */
  }
  .top-line {
    font-size: 37px; /* Adjust font size */
    color: #777; /* Gray color */
    margin-bottom: 20px;
  }

  
  
  @media (max-width: 768px) {
    .hero_container {
      flex-direction: column;
      align-items: center;
    }
  
    .hero_right {
      margin-top: 30px;
    }
  
    .big-box {
      width: 90%;
      height: auto;
    }
  
    .small-boxes {
      justify-content: center;
    }
  }
  @media (max-width: 768px) {
  .menu li a {
    padding-left: 15px; /* Shift text to the right */
  }

  .dropdown-menu li a {
    padding-left: 30px; /* Indent dropdown links even more */
  }
}


    .hero_box {
        flex: 1 1 400px; /* flexible with a minimum width */
        max-width: 600px;
      }
      
      .hero_right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }



      @media (max-width: 768px) {
        /* Menu container */
        .menu {
          display: none;
          flex-direction: column;
          background: rgba(255, 255, 255, 0.95);
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          box-shadow: 0 8px 16px rgba(0,0,0,0.2);
          z-index: 999;
          transform: translateY(-20px);
          opacity: 0;
          transition: transform 0.3s ease, opacity 0.3s ease;
        }
      
        .menu.active {
          display: flex;
          transform: translateY(0);
          opacity: 1;
        }
      
        /* Dropdown menus inside mobile */
        .dropdown-menu {
          display: none;
          flex-direction: column;
          position: static;
          background: transparent;
          box-shadow: none;
          padding-left: 20px;
        }
      
        .menu li.dropdown.active .dropdown-menu {
          display: flex;
        }
      
        /* Dropdown caret flip */
        .menu li.dropdown .chevron-icon {
          transition: transform 0.3s ease;
        }
      
        .menu li.dropdown.active .chevron-icon {
          transform: rotate(180deg);
        }
      
        /* Nav button */
        .nav_right .btn {
          width: auto;
          flex: 1;
        }
      
        /* Hamburger visible */
        #menu-toggle {
          display: block;
          font-size: 24px;
          color: black;
          cursor: pointer;
        }
      }
      
  /* Reduce big-box size */
  .big-box {
    position: relative;
    width: 300px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  

  .hero_box h1 span {
    display: block;
  }
  
  .hero_btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .btn2 {
    padding: 12px 24px;
    background-color: crimson;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .hero_right {
    position: relative;
    width: 700px;
  }
  
  .big-box {
    position: relative;
    width: 652px;
    height: 439px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 636px;
    height: 350px;
   
   
  }
  .main-image {
    width: 636px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  

  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%; /* Adjust 15% downwards to see face */
    border-radius: inherit;
    display: block;
  }
  
  
  
  
  
  .big-box, .main-image {
    width: 636px;
    height: 350px;
  }
  
  .arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #e67e22;
    border: none;
    padding: 10px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
  }
  
  .small-boxes {
    display: flex;
    gap: 20px;
  }
  .small-box {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .small-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .plus-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #e67e22;
    border: none;
    border-radius: 50%;
    color: white;
    padding: 6px;
    cursor: pointer;
    font-size: 12px;
  }
  .main-heading {

    font-size: clamp(28px, 4vw, 50px);
        line-height: 0.8;
    font-weight: bold;
    color: #222; /* Dark text */
    margin-bottom: 20px;
  }
  .main-heading span {
    display: block; /* Each word on a new line */
    margin-right: 5px;
  }
  
  .description {
    font-size: 1rem; /* Adjust font size */
    color: #555; /* Gray color */
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px; /* Adjust max-width if needed */
  }


.hero-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}


.btn {
  padding: 10px 20px; /* Adjust button padding */
  border-radius: 5px; /* Softer corners */
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem; /* Adjust font size */
}

.call-btn {
  background-color: white;
  border: 1px solid #222;
  color: #222;
}

.call-btn:hover {
  background: #f0f0f0;
}

.book-btn {
  background-color: #222; /* Dark blue/black */
  color: white;
  border: none;
}

.book-btn:hover {
  background-color: #333;
}

.stats {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.circles {
  display: flex;
  gap: 1px; /* Adjust spacing between circles */
  margin-top: 0;
}

.circle {
  width: 25px; /* Adjust circle size */
  height: 25px; /* Adjust circle size */
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc; /* Optional: subtle border */
  flex-shrink: 0;
  /* Add your gradient background here or in the HTML as inline styles if needed */
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stats-text {
  font-size: 0.9rem; /* Adjust font size */
  color: #333;
}

.stats-text strong {
  font-size: 1rem; /* Adjust font size */
  display: block;
  margin-bottom: 2px;
}

.hero-image-section {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  position: relative; /* Make this relative for absolute positioning of arrows */
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%; /* Let it take full width of container */
  max-width: 600px; /* Constrain maximum width */
  height: auto; /* Let height auto adjust */
  aspect-ratio: 16 / 9; /* Keep aspect ratio */
}


.image-placeholder {
  background-color: #f0f0f0; /* Light gray background */
  width: 100%;
  height: 100%;
}
.main-image .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.main-image .image-placeholder {
  background-color: #f0f0f0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.img-rounded {
  border-radius: 8px; /* Apply rounded corners to the placeholder */
}

.circle-button {
  position: absolute;
  bottom: 1px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 60%;
  width: 57px;
  height: 57px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
}


circle-button.right-arrow {
  right: 17px; /* Position the right arrow */
}

.circle-button.left-arrow {
  left: 17px; /* Position the left arrow */
}

.sub-images {
  display: flex;
  gap: 15px; /* Adjust the gap between the boxes as needed */
  width: 639px; /* Total width for both boxes and the gap (2 * 312 - 15 = 609 or 2 * 312 + 15 = 639, adjust based on how you want the total width) */
  /* You might not need to set a fixed width here if you want them to be flexible */
}


.sub-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Let them wrap to next line on small screens */
  width: 100%;
  max-width: 636px; /* Constrain max width */
}

.sub-img {
  flex: 1 1 calc(50% - 10px); /* Two images side by side with gap */
  aspect-ratio: 4 / 3; /* Keep consistent ratio */
  border-radius: 20px;
  overflow: hidden;
  object-position: top center;
}

.sub-img a {
  display: block; /* Make the entire sub-img clickable */
  width: 100%;
  height: 100%;
  position: relative; /* For positioning the plus icon */
}
.sub-img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: 50% 20%; /* Adjust vertical position */
  display: block;
  border-radius: inherit;
}


.cleaning-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}





.sub-img .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.sub-img .image-placeholder {
  background-color: #f0f0f0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit; /* Ensure placeholder also has rounded corners */
}
.plus-icon {
  position: absolute;
  top: 20px; /* Adjust position of the plus icon */
  right: 20px; /* Adjust position of the plus icon */
  background-color: white; /* Or your desired color */
  color: black;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plus-icon.left-plus {
  left: 10px;
  right: auto;
  bottom: 10px; /* Ensure it stays at the bottom */
  top: auto;    /* Ensure top is not overriding */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-image {
    aspect-ratio: 16 / 9; /* Keep aspect ratio for smaller screens */
  }

  .sub-images {
    flex-direction: column; /* Stack on top of each other */
    gap: 10px; /* Smaller gap on mobile */
  }

  .sub-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-image-section {
    align-items: center;
    position: static;
  }

  .main-image {
    width: 90%;
    height: auto;
  }

  .circle-button {
    bottom: -15px;
  }

  .circle-button.left-arrow {
    left: 0;
  }

  .circle-button.right-arrow {
    right: auto;
    left: 60px;
  }

  .sub-images {
    flex-direction: column;
    width: 90%;
    
  }

  .sub-img {
    width: 100%;
    height: auto;
    aspect-ratio: 312 / 233;
  }
}

@media (max-width: 768px) {
  /* ========== HERO SECTION MOBILE STYLES ========== */

  .hero {
    padding: 20px 10px; /* Adjust padding as needed */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    text-align: left;
    gap: 90px; 
    margin: 0; /* Ensure no external margins on the main content container */
    padding: 0;  /* Center text within child elements */
  }

  .hero-text {
    /* The hero-text div itself doesn't need much change if its parent .hero-content handles alignment */
    /* Ensure no specific width is causing it to not center if issues arise */
    margin: 0;
    padding: 0; /* Space below the description and before buttons */
  }

  .hero-text .top-line {
    font-size: 24px; /* Slightly smaller for mobile, adjust as needed */
    /* color is already #777 */
    margin-bottom: 10px;
  }

  .hero-text .main-heading {
    font-size: 36px; /* Adjust for mobile, ensure it's impactful */
    line-height: 1; /* Adjust for closer lines */
    /* color is already #222 */
    text-align: left;
    margin-bottom: 15px;
  }

  .hero-text .main-heading span {
    display: block; /* Already in your desktop CSS, good for mobile */
  }

  .hero-text .description {
    font-size: 15px; /* Adjust for mobile */
    /* color is already #555 */
    line-height: 1.6;
    max-width: 90%; /* Ensure it doesn't span too wide */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    /* margin-bottom is handled by .hero-text margin-bottom */
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Keep buttons centered */
    gap: 15px; /* Space between the buttons */
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* Center the button group horizontally */
    /* CRITICAL: Explicitly set margin-bottom to 0 to ensure it doesn't add to the gap */
    margin-bottom: 0; /* Remove any space below the button group */
  }
   /* --- Elements to Hide (as per previous instructions) --- */
   .hero .stats,
   .hero .hero-image-section .main-image,
   .hero .hero-image-section .circle-button {
     display: none;
   }


  .hero-buttons .btn {
    flex-grow: 1; /* Allow buttons to share space equally */
    flex-basis: 0; /* Distribute space from a zero baseline */
    padding: 12px 10px; /* Adjust padding for mobile buttons */
    font-size: 15px; /* Adjust font size for mobile buttons */
    border-radius: 30px; /* Consistent with your desktop style */
  }

  .hero-buttons .call-btn {
    background-color: white;
    border: 1.5px solid #222; /* Slightly thicker border might look better on mobile */
    color: #222;
  }

  .hero-buttons .book-btn {
    background-color: #142B39; /* Dark blue/black, adjust to match screenshot */
    color: white;
    border: 1.5px solid #142B39; /* Matching border for consistency */
  }

  /* Hide elements not present in the mobile screenshot */
  .hero .stats {
    display: none;
  }

  .hero .hero-image-section .main-image { /* Hides the large image container */
    display: none;
  }
   .hero .hero-image-section .circle-button { /* Hides the arrow button on the main image */
    display: none;
   }


  /* Styling for the two boxes shown in the mobile screenshot (using .sub-images) */
  .hero-image-section {
    /* CRITICAL: Control the exact gap here with margin-top.
       Adjust this value to get the precise vertical spacing you want. */
    margin-top: 20px; /* <--- ADJUST THIS VALUE (e.g., 10px, 15px, 25px) */
    margin-bottom: 0; /* Ensure no bottom margin */
    padding: 0; /* Ensure no internal padding */
    align-items: center; /* Centers the sub-images container horizontally */
    justify-content: center; /* Centers the sub-images container horizontally */
    width: 100%;
    position: static; /* Override any absolute positioning */
    display: flex; /* Ensure it's a flex container to align .sub-images */
  }


  .hero .sub-images {
    /* Remove any top margin or padding, as .hero-image-section's margin-top now controls the space */
    margin: 0;
    padding: 0;
    gap: 15px; /* This is the gap *between* the two sub-img boxes */
    flex-direction: row; /* Ensure side-by-side */
    justify-content: center;
    width: 100%;
    max-width: 450px;
  }

  .hero .sub-img {
    background-color: #f0f0f0; /* Light grey background for the boxes */
    border-radius: 12px; /* Rounded corners for the boxes */
    flex: 1; /* Make both boxes take equal width */
    aspect-ratio: 1 / 0.75; /* Adjust for desired proportions, e.g. width/height. Or set height/min-height. */
    min-height: 140px; /* Minimum height for the boxes */
    max-width: 200px; /* Max width for each box */
    display: flex; /* To center the content (the 'a' tag) */
    align-items: center;
    justify-content: center;
    padding: 10px; /* Padding inside each box */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional: subtle shadow */
  }

  .hero .sub-img a {
    display: flex;
    flex-direction: column; /* Stack icon and any text if added later */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit; /* Inherit text color */
  }

  /* .hero .sub-img a img {
    display: none; /* Hide the actual image, as per screenshot */
  /* } */ */

  .hero .sub-img .plus-icon {
    position: static; /* Override absolute positioning */
    background-color: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    /* Remove specific top/left/bottom/right positioning from .left-plus if it interferes */
    margin: 0; /* Reset any margins */
  }

  /* Clean up any potential conflicting rules from your existing media query if they target these elements differently */
  /* For example, ensure there are no other rules setting .sub-img width/height to very small values like 60px */

}

.number {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  color: #0a6d74; /* Accent color */
}



/* Base styling */
/* Container styling */
.numbers-section {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.numbers-headline {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Cards styling */
.horizontal-pill-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.number-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}

.number {
  font-size: 2rem;
  font-weight: 700;
  color: #007BFF;
  margin-bottom: 0.3rem;
}

.label {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Subtle hover effect for touch devices */
.number-item:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* For larger screens */
@media (min-width: 480px) {
  .horizontal-pill-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.stats-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9; /* Light background for contrast */
}

.stats-headline {
  font-size: 2.4rem;
  color: #0b2e3f; /* Rumila Blue */
  margin-bottom: 40px;
  font-weight: 700;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-item {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: #0b2e3f; /* Rumila Blue */
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-headline {
    font-size: 2rem;
  }
}

/* Floating dots */
.floating-dots .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: rgba(13, 43, 58, 0.2); /* Rumila Enterprises dark blue in 20% opacity */
  border-radius: 50%;
  animation: float 6s infinite ease-in-out alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) translateX(15px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
}

/* Slight variation for extra dots to avoid uniform motion */
.floating-dots .dot:nth-child(2n) {
  animation-duration: 8s;
}
.floating-dots .dot:nth-child(3n) {
  animation-duration: 10s;
}
.floating-dots .dot:nth-child(4n) {
  animation-duration: 12s;
}




/* Reduce shadow on hover for mobile (below 768px) */
@media (max-width: 767px) {
  .number-item:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
  }
}




/* Responsive adjustments for mobile (within your style.css) */
/* Responsive adjustments for mobile (within your style.css) */
@media (max-width: 768px) {
  .numbers-headline {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .horizontal-pill-container {
    background: #fff;
    box-shadow: 90px 90px 10px 90px rgba(0, 0, 0, 0.15);
    border-radius: 50px; /* Adjust for a smaller horizontal pill */
    padding: 10px; /* Reduce padding for smaller screens */
    display: flex;
    flex-direction: row; /* Keep items in a row */
    align-items: center; /* Center items vertically within the row */
    justify-content: space-around; /* Distribute items horizontally */
    width: 95%; /* Take up most of the screen width */
    max-width: none;
    height: auto; /* Adjust height based on content */
    overflow-x: auto; /* Enable horizontal scrolling if content overflows */
    white-space: nowrap; /* Prevent items from wrapping */
  }

  .number-item {
    text-align: center;
    flex-shrink: 0; /* Prevent items from shrinking too much */
    margin: 0 10px; /* Add some horizontal spacing between items */
  }

  .number {
    font-size: 1.2rem; /* Smaller font size for mobile */
    line-height: 1;
  }

  .label {
    font-size: 0.8rem; /* Smaller font size for mobile */
    margin-top: 2px;
  }
}



/* ========== TABLET RESPONSIVENESS (768px - 1024px) ========== */

  
@media (min-width: 1023px) and (max-width: 1221px) {
  .hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
  }

  .hero-text {
    flex: 1 1 35% !important;
    max-width: 35% !important;
    text-align: left !important;
  }

  .hero-image-section {
    flex: 1 1 48% !important;
    max-width: 48% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-end !important;
  }

  .main-image {
    width: 100% !important;
    height: 350px !important;
    border-radius: 20px !important;
  }

  .sub-images {
    display: flex !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .sub-img {
    width: 48% !important;
    height: 180px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 768px) {
  /* Remove any extra margin/padding between .hero-buttons and .sub-images */
  .hero-buttons {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-image-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Remove any default spacing from parent containers */
  .hero-content,
  .hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Fix flex container alignment */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0 !important; /* Remove gap between children */
  }
}






@media (min-width: 769px) and (max-width: 1022px) {
  .hero-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 30px !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 600px !important;
  }

  .hero-image-section {
    width: 100% !important;
    max-width: 600px !important;
    align-items: center !important;
  }

  .main-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 15px !important;
  }

  .sub-images {
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 600px !important;
  }

  .sub-img {
    width: 48% !important;
    aspect-ratio: 4 / 3 !important;
    max-width: 300px !important;
    border-radius: 12px !important;
  }

  .circle-button {
    bottom: 10px !important;
    left: 10px !important;
  }

  /* Center the buttons below text */
  .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }
}


  .why-choose-us {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
  }
  
  .why-text {
    flex: 1 1 45%;
  }
  
  .label {
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .main-title {
    font-size: 36px;
    color: #0d1b2a;
    margin-bottom: 25px;
  }
  
  .benefit {
    margin-bottom: 25px;
  }
  
  .benefit h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 5px;
  }
  
  .benefit p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  .why-graphics {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }
  
  .background-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    background: #eee;
    border-top-left-radius: 160px;
    border-bottom-right-radius: 180px;
    overflow: hidden;
    margin: auto;
  }
  .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 180px;
    opacity: 1;
  }
  
  
  @media (max-width: 768px) {
    .background-box {
      height: 400px;
      border-top-left-radius: 80px;
    }
  }
  
  
  
  .rating-card {
    position: absolute;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    z-index: 2;
  }
  
  .rating-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .rating-card strong {
    font-size: 15px;
    color: #1d2e3b;
    display: block;
  }
  
  .rating-card p {
    margin: 0;
    font-size: 13px;
    color: #555;
  }
  .rating-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    transition: all 0.3s ease;
  }
  
  
  .top-left {
    top: 30px;
    left: 30px;
  }
  
  .top-right {
    top: 70px;
    right: 30px;
  }
  
  .bottom-left {
    bottom: 40px;
    left: 40px;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .why-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .why-text, .why-graphics {
      width: 100%;
    }
  
    .background-box {
      min-height: 400px;
    }
  }
  @media (max-width: 768px) {
    .why-graphics {
      position: relative;
    }
  
    .rating-card.top-left {
      top: 130px !important; /* Increased top value for Parul Saxena */
    }
  
    .rating-card.top-right {
      top: 180px !important; /* Increased top value for Aarohi Mishra */
    }
  }
  
  
  
  /* -------------------- HOW IT WORK SECTION -------------------- */
  .how-it-works {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }

  .how-it-works h2 {
    font-size: 36px;
    color: #1e2b3b;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .how-it-works p.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
  }

  .step {
    max-width: 260px;
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1;
  }

  .step-icon {
    background-color: #f9f9f9;
    border-radius: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .step-icon img {
    max-width: 50px;
    max-height: 50px;
  }

  .step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e2b3b;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }

  @media screen and (max-width: 1024px) {
    .steps-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }

  @media screen and (max-width: 768px) {
    .how-it-works h2 {
      font-size: 28px;
    }

    .steps-container {
      grid-template-columns: 1fr;
    }

    .step {
      max-width: 90%;
      margin: 0 auto;
    }
  }
/* -------------------- TESTIMONIAL SECTION -------------------- */


.testimonials {
  padding: 60px 20px 80px;
  background-color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  color: #1e2b3b;
  font-weight: 600;
  margin-bottom: 40px; /* adjusted spacing to match design */
}

.testimonial-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white; /* black background */
  color: black; /* white icon */
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.arrow-left {
  left: -1px;
}

.arrow-right {
  right: -1px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 40px 25px 25px;
  width: 350px;
  margin: 0 15px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  flex-shrink: 0;
}

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

.testimonial .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonial p {
  font-size: 15px;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

.testimonial .author {
  margin-top: 15px;
  font-weight: 600;
  color: #222;
}

.testimonial .rating {
  margin-top: 8px;
  color: #f8b400;
  font-weight: bold;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .testimonial {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    overflow-x: auto;
  }
  .arrow-left,
  .arrow-right {
    display: none;
  }
}

footer {
  background-color:rgba(20, 43, 57, 0.05);
  padding: 60px 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
  gap: 30px; /* spacing between columns */
  max-width: 1400px;
  margin: 0 auto 40px;
}


.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.footer-bottom-left ul,
.footer-bottom-center ul,
.footer-bottom-right ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.footer-bottom ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-bottom-right ul li a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 14px;
  color: #000;
  transition: 0.3s ease;
}

.footer-bottom-right ul li a:hover {
  background-color: #eee;
  
}

.footer-copyright {
  text-align: center;
  padding: 15px 10px;
  /* background-color: #0b2e3f; */
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-copyright p {
  margin: 0;
}
.footer-social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.footer-social-icons a {
  text-decoration: none;
  border: none;
  color: #fff;
  font-size: 18px;
  width: 42px;
  height: 42px;
  background: #0b2e3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
  background: #093b56;
  transform: scale(1.1);
}

.footer-note {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0b2e3f;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-clean {
  background-color: #f8f9fa;
  padding: 50px 20px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #ddd;
}
@media (max-width: 600px) {
  .footer-social-icons {
    gap: 12px;
    margin-top: 25px;
    padding: 0 20px;
  }

  .footer-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 20px;
  }

  .footer-column {
    min-width: 0; /* Allow shrinking */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-left ul,
  .footer-bottom-center ul,
  .footer-bottom-right ul {
    flex-direction: column;
    gap: 8px;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-note {
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two columns */
    gap: 10px;
    justify-items: center; /* center the columns */
    text-align: center; /* center text */
  }

  .footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-bottom ul li {
    margin: 5px 0;
  }

  .footer-bottom ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  .footer-bottom-center,
  .footer-bottom-left,
  .footer-bottom-right {
    width: auto; /* allow columns to be flexible */
  }

  .footer-note {
    grid-column: 1 / -1; /* span both columns */
    text-align: center;
    margin-top: 20px;
  }

  .footer-social-icons {
    grid-column: 1 / -1; /* span both columns */
    justify-content: center;
    margin-top: 10px;
  }
}

/* -------------------- About Us -------------------- */

.about-hero {
  position: relative;
  padding: 180px 20px 150px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}

.decorative-box {
  width: 200px;
  height: 200px;
  background-color: #ececec;
  border-radius: 30px;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.decorative-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.top-left { top: 40px; left: 60px; }
.top-right { top: 40px; right: 60px; }
.bottom-left { bottom: 40px; left: 100px; }
.bottom-right { bottom: 40px; right: 100px; }

.hero-text-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 20px auto 0 auto; /* was 120px, now 80px */
}

.since-tag {
  font-size: 1rem;
  color: #888;
  margin-top: 100px;
  font-weight: 600;
}


.hero-text-container h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0d2b3a;
  margin-bottom: 40px;
  line-height: 1.2;
}

.hero-text-container p {
  font-size: 1.125rem;
  color: #5c5c5c;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-description {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.about-description p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #5c6670;
}

.know-us {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.know-us h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d2b3a;
  margin-bottom: 40px;
}

.member-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.member-image {
  width: 300px;
  height: 200px;
  background-color: #ececec;
  border-radius: 20px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.member-card {
  max-width: 500px;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.member-card h3 {
  font-size: 1.25rem;
  color: #0d2b3a;
  margin-bottom: 15px;
}

.member-card span {
  font-weight: 400;
  color: #5c5c5c;
  margin-left: 10px;
}

.member-card p {
  font-size: 0.95rem;
  color: #5c5c5c;
  line-height: 1.6;
}

.about-floating-image-section {
  background: #f9fbfc;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-floating-image-section .floating-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d2b3a;
  margin-bottom: 20px;
}

.about-floating-image-section .floating-subtext {
  font-size: 1.125rem;
  color: #5c5c5c;
  max-width: 700px;
  margin: 0 auto 50px;
}

.about-floating-image-section .floating-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-floating-image-section .float-img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-floating-image-section .float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-image-section .float-img:hover {
  transform: translateY(-10px) scale(1.05);
}

@media (max-width: 768px) {
  .decorative-box { display: none; }
  .hero-text-container h1 { font-size: 2rem; line-height: 1.3; }
  .hero-text-container p { font-size: 1rem; }
  .member-section { flex-direction: column; }
  .member-image { width: 90%; height: auto; }
  .member-card { width: 90%; }
  .about-floating-image-section .floating-grid {
    flex-direction: column;
    gap: 20px;
  }
  .about-floating-image-section .float-img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}
/* MOBILE-FRIENDLY ADJUSTMENTS - remove hide for mobile, adjust size */
@media (max-width: 768px) {
  .decorative-box {
    width: 80px; /* Smaller width on phones */
    height: 80px; /* Smaller height on phones */
    border-radius: 15px;
  }

  .top-left { top: 20px; left: 20px; }
  .top-right { top: 20px; right: 20px; }
  .bottom-left { bottom: 20px; left: 20px; }
  .bottom-right { bottom: 20px; right: 20px; }
}

/* EXTRA SMALL SCREEN TWEAK (e.g., 375px and below) */
@media (max-width: 400px) {
  .decorative-box {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 425px) {
  .about-hero {
    padding: 120px 10px 100px; /* reduce top/bottom spacing */
  }
  .hero-text-container h1 {
    font-size: 2rem; /* even smaller for 425px */
  }
  .hero-text-container p {
    font-size: 0.95rem; /* smaller text for mobile */
  }
  .member-section {
    gap: 15px; /* reduce spacing between member cards */
  }
  .member-card {
    padding: 20px; /* reduce padding */
  }
  .review-card {
    flex: 0 0 100%; /* one card per slide */
    margin: 10px 0;
  }
}

@media (max-width: 375px) {
  .about-hero {
    padding: 100px 10px 80px; /* adjust for smallest screens */
  }
  .hero-text-container h1 {
    font-size: 1.8rem;
  }
  .hero-text-container p {
    font-size: 0.9rem;
  }
  .member-image {
    width: 100%;
    height: auto; /* let it resize naturally */
  }
  .member-card {
    width: 100%;
    box-shadow: none; /* optional: simpler on smallest screens */
  }
}


/* -------------------- Contact Us -------------------- */

.contact-cta {
  padding: 60px 20px 80px;
  background-color: #fff;
  text-align: center;
}

.cta-background {
  background-color: #f0f0f0;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.cta-background h2 {
  font-size: 2rem;
  color: #0d2b3a;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex: 1 1 280px;
  max-width: 350px;
}

.contact-card .icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0d2b3a;
  margin-bottom: 10px;
}

.contact-card p, .contact-card address {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

@media (max-width: 768px) {
  .cta-background h2 {
    font-size: 1.5rem;
  }
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

.contact-form-section {
  padding: 60px 20px 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.form-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 800px;
  width: 100%;
  padding: 40px 40px 50px;
  text-align: center;
}

.form-card h2 {
  font-size: 1.8rem;
  color: #0d2b3a;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  color: #2e3a4e;
  text-align: left;
}

input,
textarea {
  padding: 15px 20px;
  border-radius: 40px;
  border: 1px solid #a2aeb5;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: #333;
}

textarea {
  border-radius: 30px;
  resize: none;
}

button {
  background-color: #0d2b3a;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #0b2230;
}

@media (max-width: 768px) {
  .form-card {
    padding: 30px 20px;
  }
  input,
  textarea {
    font-size: 14px;
  }
  button {
    width: 100%;
  }
}

/* -------------------- Contact Us Faq-------------------- */

.faq-wrapper {
  max-width: 800px;
  margin: 60px auto;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  color: #0d2b3a;
  font-weight: 600;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 30px;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #111;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #f7f7f7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: #333;
  background-color: #fafafa;
  font-size: 15px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
    max-height: 200px;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.review-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
.review-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #0d2b3a;
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
.review-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.review-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  width: 100%;
  max-width: 350px;
  margin: 0 15px;
  flex: 0 0 calc(33.3333% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.review-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.review-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}
.review-card .name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.review-card .stars {
  color: #ffc107;
  font-size: 20px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.slider-dot.active {
  background-color: #0d2b3a;
}



.custom-main-image {
  position: relative;
  width: 636px;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #eee;
}

/* Image inside box */
.custom-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Curved notch bottom-left */
.diagonal-notch {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: white;

  /* The magic part: round only the top-right of the notch */
  border-top-right-radius: 50px;

  /* Extra smooth edge */
  border-bottom-left-radius: 30px;  /* ADD THIS for left-bottom curve */
  z-index: 1;
}

/* Circle Button */
.circle-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #142B39;
  color: white;
  font-size: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.certification-section {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
}

.certification-section h2 {
  font-size: 1.8rem;
  color: #0b2e3f;
  margin-bottom: 20px;
}

.certification-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.certification-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

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

.certification-card img {
  max-width: 80px;
  margin-bottom: 10px;
}

.certification-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.certification-card p {
  font-size: 0.9rem;
  color: #555;
}

.review-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.review-section h2 {
  font-size: 2rem;
  color: #0b2e3f;
  margin-bottom: 20px;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.review-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  overflow-x: auto; /* allow scrolling */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}


.review-card {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 cards per view with 20px gaps */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.review-card .name {
  font-weight: 600;
  color: #0b2e3f;
}

.review-card .stars {
  color: #fbb034;
}
.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slider-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #717171;
}

@media (max-width: 768px) {
  .review-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .review-card {
    flex: 0 0 50%; /* two cards per view */
    scroll-snap-align: center;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 100%; /* one card per view */
    padding: 15px;
  }
  .review-card p {
    font-size: 0.85rem;
  }
  .review-section h2 {
    font-size: 1.5rem;
  }
}

/* WhatsApp Floating Button - Final Styling */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366; /* Official WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}




