/* ===========================
           GLOBAL STYLES & VARIABLES
           =========================== */
      :root {
        --primary-color: #0077b6; /* Ocean Blue */
        --secondary-color: #caf0f8; /* Light Cyan */
        --accent-color: #023e8a; /* Deep Blue */
        --phone-highlight: #e63946; /* Pink/Red for Phone */
        --text-dark: #333333;
        --text-light: #ffffff;
      }

      body {
        font-family: "Poppins", sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
      }

      html {
        scroll-behavior: smooth;
      }

      a {
        text-decoration: none;
      }

      /* ===========================
           NAVBAR
           =========================== */
      .navbar {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        padding: 15px 0;
      }

      .navbar-brand {
        font-weight: 700;
        color: var(--primary-color) !important;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
      }

      .nav-link {
        color: var(--text-dark);
        font-weight: 500;
        margin: 0 10px;
        transition: color 0.3s;
      }

      .nav-link:hover,
      .nav-link.active {
        color: var(--primary-color);
      }

      @media (max-width: 576px) {
        .offcanvas {
          width: 75% !important;
        }
      }

      /* ===========================
           HERO SECTION
           =========================== */
      .hero-section {
        position: relative;
        min-height: 450px;
        height: 60vh;
        /* LOREM IPSUM IMAGE - Random Water/Nature theme */
        background-image: url("/images/hero-image.webp");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(
          0,
          119,
          182,
          0.7
        ); /* Stronger overlay for text readability */
      }

      .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
      }

      .hero-title {
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 10px;
      }

      .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 30px;
        font-weight: 300;
      }

      .hero-btn {
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 50px;
        margin: 0 10px;
        transition: transform 0.2s;
      }

      .hero-btn:hover {
        transform: translateY(-3px);
      }

      @media (max-width: 576px) {
        .hero-btn-group {
          display: flex;
          flex-direction: column;
          gap: 15px;
        }
        .hero-btn {
          margin: 0;
          width: 100%;
        }
      }

      /* ===========================
           SECTIONS GENERAL
           =========================== */
      .section-padding {
        padding: 60px 0;
      }

      .section-title {
        text-align: center;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 40px;
        position: relative;
      }

      .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: var(--primary-color);
        margin: 10px auto 0;
      }

      .about-img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      /* ===========================
           SERVICES SECTION
           =========================== */
      .service-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s;
        height: 100%;
      }

      .service-card:hover {
        transform: translateY(-5px);
      }

      .service-img-wrapper {
        height: 200px;
        overflow: hidden;
      }

      .service-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .service-price {
        font-size: 1.2rem;
        color: var(--primary-color);
        font-weight: 700;
        margin: 10px 0;
      }

      .btn-gradient {
        background: linear-gradient(
          90deg,
          var(--primary-color),
          var(--accent-color)
        );
        color: white;
        border: none;
        width: 100%;
        padding: 12px;
        font-weight: 600;
        border-radius: 0 0 15px 15px;
      }

      .btn-gradient:hover {
        background: linear-gradient(
          90deg,
          var(--accent-color),
          var(--primary-color)
        );
        color: white;
      }

      /* ===========================
           AMENITIES & GALLERY
           =========================== */
      .amenity-box {
        background: #f8f9fa;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        transition: 0.3s;
        height: 100%;
        border: 1px solid #eee;
      }
      .amenity-box:hover {
        background: var(--secondary-color);
        border-color: var(--primary-color);
      }
      .amenity-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
      }

      .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        height: 250px;
        margin-bottom: 24px;
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .gallery-item:hover img {
        transform: scale(1.1);
      }

      /* ===========================
           CONTACT / NAP
           =========================== */
      .contact-card {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        height: 100%;
      }

      .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 20px;
      }

      .contact-icon-wrapper i {
        color: white;
        font-size: 1.5rem;
      }

      .contact-info h5 {
        font-size: 1rem;
        margin: 0;
        color: #666;
        font-weight: 400;
      }

      .contact-info p {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 600;
        color: var(--text-dark);
      }

      .contact-phone {
        color: var(--phone-highlight) !important;
        font-weight: 700 !important;
      }

      /* ===========================
           FLOATING BUTTONS
           =========================== */
      .float-btn {
        position: fixed;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
        transition: all 0.3s;
      }

      .float-wa {
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
      }
      .float-call {
        bottom: 20px;
        left: 20px;
        background-color: var(--phone-highlight);
        display: none;
      }

      @media (max-width: 767.98px) {
        .float-call {
          display: flex;
        }
      }

      footer {
        background-color: #f1f1f1;
        padding: 20px 0;
        text-align: center;
        color: #666;
        font-size: 0.9rem;
      }
/* =============== Testimonial Section ============= */
/* ===========================
   TESTIMONIAL CAROUSEL
   =========================== */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff; /* White card */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px; /* Space for shadow */
    text-align: center;
}

/* Style the Quote Icon */
.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--secondary-color); /* Light blue */
    margin-bottom: 20px;
}

/* Customizing Carousel Indicators (dots) */
.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Customizing Carousel Arrows (Next/Prev) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 50%; /* Make arrow smaller inside the circle */
    width: 3rem;
    height: 3rem;
}

/* Hide arrows on very small screens to save space */
@media (max-width: 576px) {
    .carousel-control-prev, .carousel-control-next { display: none; }
}  
/* ===================== */

/* .carousel-control-next {
    left: 70px;
} */
.testi-btn{
    top: -280px !important;
}

/*================== MAP CSS ==================*/
a.elfsight-app-10b2b22f-a5cd-440f-8236-15e2f73e3c0e{
        animation: none !important;
    border: none !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    margin: 8px auto !important;
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-content: center !important;
    align-items: center !important;
    justify-content: center !important;
    row-gap: 0px !important;
    float: none !important;
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    zoom: 1 !important;
    visibility: visible !important;
    box-sizing: border-box !important;
    font-family: Roboto, Arial, Sans-serif !important;
    text-align: left !important;
    text-decoration: none !important;
    max-width: 400px !important;
    text-indent: 0 !important;
    background-color: rgba(238, 238, 238, 0.9) !important;
    color: rgba(17, 17, 17, 0.5) !important;
    padding: 4px 12px 4px 6px !important;
    height: 24px !important;
    column-gap: 5px !important;
    line-height: 14px !important;
    font-size: 0 !important;
    font-weight: 600 !important;
    border-radius: 40px !important;
    z-index: 999999999 !important;
    margin-top: 20px !important;
}
}




