
  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Dancing Script", cursive;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #ffffff;
  }

  /* Top Header */
  .top-header {
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 2px rgba(22, 22, 22, 0.199);
    height: 70vh;
    display: flex;
    flex-direction: column;
  }

  /* Text over the image */
  .top-header>div:first-child {
    flex: 0 0 auto;
  }

  /* Make .text-on-cover fill the rest of the hero but not exceed it */
  .top-header>.text-on-cover {
    flex: 1;
    /* grow to fill remaining vertical space */
    display: flex;
    align-items: center;
    /* vertical centering of its children */
    padding: 0 100px;
    box-sizing: border-box;
    margin: 0;
  }

  /* Your blank spacer and text block side-by-side */
  .text-on-cover .blank-space {
    flex: 2;
    max-width: 70%;
  }

  .text-on-cover .header-content {
    flex: 1;
    color: #000000;
    /* assuming white text over the image */
    text-align: center;
  }

  .header-content .site-description {
    font-size: 2rem;
    line-height: 5rem;
    font-family: 'Dancing Script', cursive;
  }

  .enquireBtn {
    display: inline-block;
    padding: 10px 20px;
    /* vertical and horizontal padding */
    background-color: #7ecfff;
    /* pastel sky-blue */
    color: #333;
    /* dark text for contrast */
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    /* fully pill-shaped */
    transition: background-color 0.2s ease, transform 0.1s ease;
  }

  .enquireBtn:hover {
    background-color: #6bbbe0;
    /* slightly darker on hover */
    transform: translateY(-1px);
  }

  .enquireBtn:active {
    transform: translateY(1px);
  }

  /* container split and spacing */
  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    background: transparent;
  }

  /* groups line up their children with a gap */
  .left-icons,
  .right-section {
    display: flex;
    align-items: center;
    gap: 1px;
  }

  /* social‐icon links get a fixed square box */
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    color: #333;
  }

  .icon {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
  }

  .icon:hover {
    color: #007bff;
    /* change color on hover */
    text-decoration: none;
    /* remove underline */
  }

  /* all other inline icon + text spans flex to fit content */
  .phone,
  .email,
  .location,
  .user {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #333;
  }

  /* icon inside text spans */
  .phone i,
  .email i,
  .location i,
  .user i {
    margin-right: 6px;
    width: auto;
    /* let icon size itself */
  }

  .categories-section {
    padding: 60px 0;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 30px;
  }

  /* Categories Grid */
  .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .col {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 24px);
  }

  .category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    background: #f6fbff;
  }

  .category-image-link {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .category-image-link:hover {
    color: #007bff;
  }

  /* About Us Section */
  .about-image {
    display: block;
    /* removes inline-image gaps */
    width: 100%;
    /* fill its container’s width */
    max-width: 1306px;
    /* never exceed your rendered width */
    height: auto;
    /* scale height proportionally */
    aspect-ratio: 1920 / 734;
    /* intrinsic ratio (or 960/367) */
    object-fit: cover;
    /* crop/cover if container is tighter */
  }

  .about-us-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }

  /* 2. Make the image responsive and centered */
  .about-us-section .about-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 0 auto 32px;
  }

  /* 3. Style the paragraphs so they’re visible */
  .about-us-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
    font-size: 2rem;
  }

  /* ---- Testimonials Section ---- */
  .testimonials-section {
    padding: 60px 20px;
    margin-top: 60px;
    background: #fafafa;
  }

  .testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    /* make sure your buttons can absolutely position */
  }

  /* ---- Left Column Image ---- */
  .testimonials-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
  }

  /* ---- Swiper Container ---- */
  .multiple-slide-carousel {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 0;
    padding: 0px 20px;
    box-sizing: border-box;
    /* include that padding in the width */
  }

  /* Remove default list styling on wrapper */
  .swiper-wrapper {
    display: flex;
  }

  .swiper-slide .testimonial-item {
    /* Make your card transparent & two-across */
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
  }

  /* Text inside each card */
  .swiper-slide .testimonial-item p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0px;
    color: #333;
  }

  .swiper-slide .testimonial-item .testimonial-author {
    font-weight: 500;
    color: #555;
    display: block;
  }

  /* ---- Prev/Next Buttons ---- */
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    font-size: 0.2rem;
    color: #333;
    /* dark arrow */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    /* soft drop shadow */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Shrink the arrow icon inside */
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 14px;
    /* smaller arrow glyph */
    color: #333;
    /* dark arrow color */
  }

  .swiper-button-prev {
    left: 4px;
  }

  .swiper-button-next {
    right: 4px;
  }

  /* Map & Contact details section */
  .contact-map-section {
    padding: 60px 20px;
    background: transparent;
  }

  .contact-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: auto;
    margin: 0 auto;
    align-items: center;
  }

  /* Map */
  .map-container {
    position: relative;
    flex: 1 1 400px;
    max-width: 600px;
  }

  .map-iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    filter: brightness(0.95);
  }

  /* Details */
  .contact-details {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .detail-item {
    display: flex;
    gap: 1rem;
  }

  .detail-item i {
    font-size: 1.5rem;
    color: #7ecfff;
    margin-top: 0.25rem;
  }

  .detail-item h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
  }

  .detail-item p {
    margin: 0.25rem 0 0;
    color: #555;
    line-height: 1.4;
  }

  /* Footer Section */
  .site-footer {
    background: #99E1FF;
    font-family: Arial, sans-serif;
    color: #333;
    border-top: 1px solid #ddd;
  }

  /* Top section */
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-col {
    flex: 500px;
    min-width: auto;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .footer-contact {
    margin: 0.25rem 0;
    font-size: 0.95rem;
  }

  .social-icons {
    display: flex;
    gap: 0.75rem;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s;
  }

  .social-icons a:hover {
    background: #555;
  }

  /* Bottom section */
  .footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
  }

  /* Floating WhatsApp button */
  .whatsappWidget {
    position: fixed;
    bottom: 20px;
    /* distance from bottom */
    right: 20px;
    /* distance from right */
    width: 50px;
    /* adjust size as needed */
    height: 50px;
    border-radius: 50%;
    /* make it perfectly round */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    /* sit above all other content */
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  /* Ensure the image fits the container */
  .whatsappWidget .whatsappIcon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Nav Bar */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-links a {
    color: white;
    text-decoration: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 11px;
  }

  .social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  /* Sticky Navigation Bar */
  .main-nav {
    background: transparent;
    padding: 15px 150px;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 990;
    transition: all 0.3s ease;
  }

  .main-nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.2);
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
  }

  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  /* Left Navigation */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: flex-start;
  }

  /* Navigation Menu */
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 10px 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-link.active {
    color: #5cb3d9;
  }

  .nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
  }

  /* Centered Logo */
  .logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    width: 10rem;
    height: 8rem;
  }

  .logo-image {
    width: 100%;
    height: auto;
  }

  /* Right Navigation */
  .nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
  }

  .contact-moblie {
    display: none;
  }

  /* Sections */
  .section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
  }

  .section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
  }

  /* About Content */
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c5aa0;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(135, 206, 235, 0.3);
  }

  /* Responsive Design */
  /* laptop screens */
  @media (max-width: 1024px) {

    .contact-info {
      flex: none;
      flex-wrap: nowrap;
      display: flex;
      justify-content: space-between;
      gap: 8px 16px;
      align-items: center;
      padding: 0px 2rem;
    }

    .contact-info>* {
      flex: 0 0 auto;
    }

    .nav-content {
      padding: 1rem;
    }

    .main-nav {
      padding: 0px;
      width: 100%;
      top: 0;
    }

    .footer-col {
      flex: 1 1 100%;
      max-width: 100%;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
      /* if it's a flex container */
    }

    .top-header>.text-on-cover {
      padding: 10rem 0;
      flex-direction: column;
      align-items: center;
    }

    .logo-center {
      width: 8rem;
      height: 6rem;
      top: 1rem;
      left: 50%;
    }

    .contact-moblie {
      display: none;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* two columns */
      gap: 12px;
    }

    .col {
      flex: 1 1 calc(25% - 24px);
      max-width: calc(500% - 10rem);
    }

    .category-image {
      width: 10rem;
    }

    .about-us-section p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
  }

  /* mobile & Tablet screens */
  @media (max-width: 768px) {

    .nav-left,
    .nav-right {
      display: none;
    }

    .contact-info {
      display: none;
    }

    .main-nav {
      padding: 0;
      width: 100%;
      top: 0;
    }

    .contact-moblie {
      display: flex;
      position: fixed;
      right: 16px;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .logo-center {
      width: 8rem;
      height: 6rem;
      top: 1rem;
      left: 20%;
    }

    .social-links {
      gap: 8px;
    }

    .top-header {
      height: auto;
      /* allow content-height instead of full-vh */
    }

    .text-on-cover {
      flex-direction: column;
      padding: 1rem;
    }

    .text-on-cover .blank-space {
      display: none;
    }

    .text-on-cover .header-content {
      text-align: center;
      width: 100%;
    }

    .logo-center {
      width: 8rem;
      height: 6rem;
      top: 1rem;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* two columns */
      gap: 12px;
    }

    .col {
      flex: 1 1 calc(25% - 24px);
      max-width: calc(500% - 10rem);
    }

    .category-image {
      width: 10rem;
    }
  }