/* ------------ GOOGLE FONT (SINGLE SOURCE) ------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ------------ RESET ------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* ------------ NAVBAR ------------ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    background-color: #fff;
}

/* Main Nav Menu */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove bullets from nav items */
.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Links */
.nav-link {
    font-size: 18px;
    color: #12447a;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover */
.nav-link:hover {
    color: #6fff00;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown indicator arrow – modern chevron */
.has-dropdown::after {
    content: " ▾";
    font-size: 22px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate chevron on hover */
.dropdown:hover .has-dropdown::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    list-style: none;
    z-index: 2000;
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown links */
.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hover effects */
.dropdown-menu li:hover {
    background-color: #6fff00;
}

.dropdown-menu li:hover .dropdown-item {
    color: #000000;
}

/* Final safety: remove browser bullets */
.nav-menu li::marker,
.dropdown-menu li::marker {
    content: none;
}


/* CONTACT BUTTON */
.my-btn {
    padding: 12px 25px;   /* Increased size */
    background-color: #6fff00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;      /* Bigger text */
}

.my-btn:hover {
    background-color: #12447a;
}

/* ------------ MOBILE MENU ------------ */

.menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #1E93AB;
}

/* Mobile View */
@media(max-width: 768px) {

    .menu-icon {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        display: none;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        padding: 10px 0;
        text-align: center;
    }

    /* Dropdown inside mobile */
    .dropdown-menu {
        position: relative;
        width: 100%;
        display: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}


/* ------------ COVER BANNER ------------ */
.cover-banner {
    position: relative;
    width: 100%;
    min-height: 550px;
    padding: 40px 20px;

    background-image: 
        linear-gradient(rgba(0, 11, 27, 0.75), rgba(0, 11, 27, 0.75)),
        url('images/cover-image.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ------------ BANNER CONTENT ------------ */
.banner-content h1 {
    font-size: 48px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.banner-content h3 {
    max-width: 1100px;
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 30px;
}

.banner-content p {
    color: #fff;
    font-size: 22px;
    margin-top: 10px;
}

/* ------------ BOOKING FORM ------------ */
.booking-form {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;

    position: relative;
    z-index: 1000; /* above text */

    /* 🔥 FIX: prevent stacking issue */
    transform: none !important;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    width: 250px;

    /* 🔥 prevent stacking issue */
    transform: none !important;
}

/* ICON */
.icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #6fff00;
    font-size: 18px;
    pointer-events: none;
}

/* TEXT INPUT */
.input-field {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.input-field:focus {
    border-color: #6fff00;
    box-shadow: 0 0 8px rgba(111,255,0,0.4);
}

/* ------------ CUSTOM SELECT ------------ */
.custom-select {
    position: relative;
    width: 100%;
    z-index: 2000; /* above form */
}

/* Selected Box */
.select-selected {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.select-selected:hover {
    border-color: #6fff00;
    color: #6fff00;
}

/* Dropdown List */
.select-options {
    position: absolute;
    width: 100%;
    background: #fff;

    border: 2px solid #6fff00;
    border-top: none;
    border-radius: 0 0 10px 10px;

    display: none;

    z-index: 9999; /* 🔥 always top */

    max-height: 250px;
    overflow-y: auto;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* Show dropdown */
.custom-select.active .select-options {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.select-options div {
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.25s;
}

.select-options div:hover {
    background: #6fff00;
    color: #fff;
}



/* ------------ CTA TEXT ------------ */
.cover-banner h2,
.cover-banner h1:last-child {
    position: relative;
    z-index: 1; /* always behind dropdown */
}

.cover-banner h2 {
    margin-top: 30px;
    font-size: 28px;
    color: #fff;
}

.cover-banner h1:last-child {
    font-size: 36px;
    color: #1bb1d3;
    margin-top: 15px;
}

/* ------------ BUTTON ------------ */
.book-btn {
    width: 250px;
    height: 50px;
    background: linear-gradient(135deg, #6fff00, #4fd600);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.book-btn:hover {
    background: #12447a;
    color: #fff;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 768px) {

    .banner-content h1 { font-size: 30px; }
    .banner-content h3 { font-size: 15px; }
    .banner-content p { font-size: 18px; }

    .booking-form {
        flex-direction: column;
        width: 100%;
        gap: 18px;
        padding: 0 10px;
    }

    .input-group,
    .custom-select,
    .book-btn {
        width: 100%;
    }

    .cover-banner h2 { font-size: 22px; }
    .cover-banner h1:last-child { font-size: 28px; }
}

@media (max-width: 480px) {
    .booking-form { gap: 15px; }
}

/* ===== SLIDER =====*/
.slider {
  width: 100%;
  background-color: #1E93AB;
  padding-top: 40px;
  padding-bottom: 20px;
}

.slider-inner {
  width: 90%;              /* 🔥 Fixed left-right space */
  margin: 0 auto;          /* Center */
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: calc(100% / 3);
  padding: 0 10px;   /* 20px total gap */
  box-sizing: border-box;
  border-radius: 20px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dots span {
  height: 8px;
  width: 8px;
  margin: 5px;
  background: #000b1b;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: #6fff00;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .slider-inner {
    width: 95%;
  }

  .slides img {
    width: 100%;        /* 🔥 Show only 1 image */
    padding: 0 5px;
  }

}

/* ------------- Kitchen Cleaning Sectio ------------- */

/* SECTION */
.r4c-kitchen-sec {
  padding: 80px 20px;
  background: #f9fbfd;
  overflow: hidden;
}

/* CONTAINER */
.r4c-kitchen-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* TEXT (70%) */
.r4c-kitchen-text {
  flex: 7;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.r4c-kitchen-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000333;
}

.r4c-kitchen-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #000000;
}

/* IMAGE (30%) */
.r4c-kitchen-image {
  flex: 3;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
  overflow: hidden;
  border-radius: 16px;
}

.r4c-kitchen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px;
}

/* IMAGE HOVER */
.r4c-kitchen-image:hover img {
  transform: scale(1.08);
}

/* SCROLL ANIMATION ACTIVE */
.r4c-kitchen-sec.active .r4c-kitchen-text {
  opacity: 1;
  transform: translateX(0);
}

.r4c-kitchen-sec.active .r4c-kitchen-image {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .r4c-kitchen-container {
    flex-direction: column;
  }

  .r4c-kitchen-text {
    flex: 100%;
    transform: translateY(40px);
  }

  .r4c-kitchen-image {
    flex: 100%;
    transform: translateY(40px);
  }

  .r4c-kitchen-text h2 {
    font-size: 24px;
  }
}


/* ------------- r4c-search-sec ------------- */

/* SECTION */
.r4c-search-sec {
  padding: 80px 80px;
  background: #ffffff;
  overflow: hidden;
}

/* HEADING */
.r4c-search-head {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.r4c-search-head h2 {
  font-size: 34px;
  color: #000333;
  margin-bottom: 20px;
}

/* INTRO */
.r4c-search-intro {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease 0.2s;
}

.r4c-search-intro p {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
}

/* BOX WRAP */
.r4c-search-box-wrap {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

/* BOX */
.r4c-search-box {
  flex: 1;
  background: #000333;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.r4c-box-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

/* LIST */
.r4c-search-box ul {
  padding-left: 18px;
}

.r4c-search-box li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

/* FOOTER */
.r4c-search-footer {
  margin-top: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease 0.3s;
}

.r4c-search-footer p {
  font-size: 16px;
  color: #000000;
}

/* ACTIVE SCROLL */
.r4c-search-sec.active .r4c-search-head,
.r4c-search-sec.active .r4c-search-intro,
.r4c-search-sec.active .r4c-search-footer {
  opacity: 1;
  transform: translateY(0);
}

.r4c-search-sec.active .r4c-search-box:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.r4c-search-sec.active .r4c-search-box:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-search-box-wrap {
    flex-direction: column;
  }

  .r4c-search-head h2 {
    font-size: 26px;
  }
}


/* ------------- r4c-imp-sec ------------- */

/* SECTION */
.r4c-imp-sec {
  padding: 80px 20px;
  background: #f7f9fc;
  overflow: hidden;
}

/* HEADING */
.r4c-imp-head {
  color: #000333;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.r4c-imp-head h2 {
  font-size: 34px;
  color: #000000;
}

/* WRAP */
.r4c-imp-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* CARD */
.r4c-imp-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

/* IMAGE */
.r4c-imp-img {
  overflow: hidden;
}

.r4c-imp-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
}

/* IMAGE HOVER */
.r4c-imp-card:hover .r4c-imp-img img {
  transform: scale(1.08);
}

/* CONTENT */
.r4c-imp-content {
  padding: 25px;
}

.r4c-imp-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000333;
}

.r4c-imp-content p {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* SCROLL ACTIVE */
.r4c-imp-sec.active .r4c-imp-head {
  opacity: 1;
  transform: translateY(0);
}

.r4c-imp-sec.active .r4c-imp-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.r4c-imp-sec.active .r4c-imp-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-imp-wrap {
    flex-direction: column;
  }

  .r4c-imp-head h2 {
    font-size: 26px;
  }

  .r4c-imp-img img {
    height: 200px;
  }
} 


/* ------------- r4c-food-sec ------------- */

/* SECTION */
.r4c-food-sec {
  padding: 80px 20px;
  background: #f8fbff;
  overflow: hidden;
}

/* CONTAINER */
.r4c-food-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* TEXT */
.r4c-food-text {
  flex: 7;
}

/* HEADING */
.r4c-food-head {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000333;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

/* PARAGRAPHS */
.r4c-food-para,
.r4c-food-para2,
.r4c-food-para3 {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

/* LIST */
.r4c-food-list {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.r4c-food-list ul {
  padding-left: 18px;
}

.r4c-food-list li {
  margin-bottom: 8px;
  color: #000000;
}

/* IMAGE */
.r4c-food-image {
  flex: 3;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  transform: translateX(60px);
  transition: 0.8s ease;
}

.r4c-food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.5s ease;
}

/* IMAGE HOVER */
.r4c-food-image:hover img {
  transform: scale(1.08);
}

/* ACTIVE SCROLL ANIMATION */
.r4c-food-sec.active .r4c-food-head {
  opacity: 1;
  transform: translateY(0);
}

.r4c-food-sec.active .r4c-food-para {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.r4c-food-sec.active .r4c-food-list {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.r4c-food-sec.active .r4c-food-para2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.r4c-food-sec.active .r4c-food-para3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.r4c-food-sec.active .r4c-food-image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-food-container {
    flex-direction: column;
  }

  .r4c-food-head {
    font-size: 24px;
  }

  .r4c-food-image {
    transform: translateY(40px);
  }
}

/* ------------- r4c-reg-sec ------------- */

/* SECTION */
.r4c-reg2-sec {
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* CONTAINER */
.r4c-reg2-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* IMAGE LEFT (30%) */
.r4c-reg2-image {
  flex: 3;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-60px);
  transition: 0.8s ease;
}

.r4c-reg2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.5s ease;
}

/* HOVER */
.r4c-reg2-image:hover img {
  transform: scale(1.08);
}

/* TEXT RIGHT (70%) */
.r4c-reg2-text {
  flex: 7;
}

/* HEADING */
.r4c-reg2-head {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000333;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

/* PARAGRAPHS */
.r4c-reg2-para1,
.r4c-reg2-para2 {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

/* LIST */
.r4c-reg2-list {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

.r4c-reg2-list ul {
  padding-left: 18px;
}

.r4c-reg2-list li {
  margin-bottom: 8px;
  color: #000000;
}

/* ACTIVE SCROLL */
.r4c-reg2-sec.active .r4c-reg2-image {
  opacity: 1;
  transform: translateX(0);
}

.r4c-reg2-sec.active .r4c-reg2-head {
  opacity: 1;
  transform: translateY(0);
}

.r4c-reg2-sec.active .r4c-reg2-para1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.r4c-reg2-sec.active .r4c-reg2-list {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.r4c-reg2-sec.active .r4c-reg2-para2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-reg2-container {
    flex-direction: column;
  }

  .r4c-reg2-image {
    transform: translateY(40px);
  }

  .r4c-reg2-head {
    font-size: 24px;
  }
}

/* ------------- r4c-kitchen-sec ------------- */

/* SECTION */
.r4c-kitchen-sec {
  padding: 80px 20px;
  background: #f8fafc;
  overflow: hidden;
}

/* CONTAINER */
.r4c-kitchen-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT TEXT (70%) */
.r4c-kitchen-text {
  flex: 0 0 70%;
}

.r4c-kitchen-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000333;
}

.r4c-kitchen-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
}

.r4c-highlight {
  font-weight: 500;
  color: #0ea5e9;
}

/* RIGHT IMAGE (30%) */
.r4c-kitchen-img {
  flex: 0 0 30%;
  overflow: hidden;
  border-radius: 20px;
}

.r4c-kitchen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  transform: scale(1);
}

/* IMAGE HOVER */
.r4c-kitchen-img:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* SCROLL ANIMATION BASE */
.r4c-scroll-left,
.r4c-scroll-right {
  opacity: 0;
  transition: all 1s ease;
}

/* LEFT ANIMATION */
.r4c-scroll-left {
  transform: translateX(-80px);
}

/* RIGHT ANIMATION */
.r4c-scroll-right {
  transform: translateX(80px);
}

/* ACTIVE CLASS */
.r4c-show {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .r4c-kitchen-container {
    flex-direction: column;
  }

  .r4c-kitchen-text,
  .r4c-kitchen-img {
    flex: 100%;
  }

  .r4c-kitchen-text h2 {
    font-size: 24px;
  }

  .r4c-kitchen-img {
    margin-top: 20px;
  }
}


/* ------------- r4c-kdc-sec ------------- */

/* SECTION */
.r4c-kdc-sec {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #ced6ff);
}

/* CONTAINER */
.r4c-kdc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* CARD */
.r4c-kdc-card {
  flex: 1;
  background: #027e9c;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
}

/* HOVER EFFECT */
.r4c-kdc-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* HEADINGS */
.r4c-kdc-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #000000;
}

/* PARAGRAPH */
.r4c-kdc-card p {
  font-size: 15px;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* LIST */
.r4c-kdc-card ul {
  padding-left: 18px;
}

.r4c-kdc-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  position: relative;
}

/* CUSTOM BULLET */
.r4c-kdc-card ul li::marker {
  color: #0ea5e9;
}

/* SCROLL ANIMATION */
.r4c-kdc-left {
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

.r4c-kdc-right {
  transform: translateX(80px);
  transition: all 0.8s ease;
}

.r4c-kdc-show {
  opacity: 1;
  transform: translateX(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-kdc-container {
    flex-direction: column;
  }

  .r4c-kdc-card {
    padding: 20px;
  }

  .r4c-kdc-card h2 {
    font-size: 22px;
  }
}

/* ------------- Our Happy Clients ------------- */

/* SECTION */
.r4c-why-sec {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

/* CONTAINER */
.r4c-why-container {
  max-width: 1100px;
  margin: auto;
}

/* TOP TEXT */
.r4c-why-top {
  text-align: center;
  margin-bottom: 40px;
}

.r4c-why-top h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0f172a;
}

.r4c-why-top p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* PROCESS TITLE */
.r4c-why-process-title {
  text-align: center;
  margin-bottom: 30px;
}

.r4c-why-process-title h3 {
  font-size: 26px;
  color: #0ea5e9;
}

/* BOX WRAP */
.r4c-why-box-wrap {
  display: flex;
  gap: 25px;
}

/* BOX */
.r4c-why-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
}

/* HOVER */
.r4c-why-box:hover {
  transform: translateY(-10px) scale(1.03);
}

/* NUMBER */
.r4c-why-num {
  font-size: 40px;
  font-weight: bold;
  color: #0ea5e9;
  margin-bottom: 10px;
}

/* BOX TEXT */
.r4c-why-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.r4c-why-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ANIMATION INITIAL */
.r4c-why-anim1 {
  transform: translateY(60px);
  transition: 0.6s ease;
}

.r4c-why-anim2 {
  transform: translateY(60px);
  transition: 0.8s ease;
}

.r4c-why-anim3 {
  transform: translateY(60px);
  transition: 1s ease;
}

/* ACTIVE */
.r4c-why-show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-why-box-wrap {
    flex-direction: column;
  }

  .r4c-why-top h2 {
    font-size: 26px;
  }

  .r4c-why-process-title h3 {
    font-size: 22px;
  }
}

/* ------------- r4c-why-sec ------------- */

/* SECTION */
.r4c-why-sec {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

/* CONTAINER */
.r4c-why-container {
  max-width: 1100px;
  margin: auto;
}

/* TOP TEXT */
.r4c-why-top {
  text-align: center;
  margin-bottom: 40px;
}

.r4c-why-top h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #000333;
}

.r4c-why-top p {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* PROCESS TITLE */
.r4c-why-process-title {
  text-align: center;
  margin-bottom: 30px;
}

.r4c-why-process-title h3 {
  font-size: 26px;
  color: #0ea5e9;
}

/* BOX WRAP */
.r4c-why-box-wrap {
  display: flex;
  gap: 25px;
}

/* BOX */
.r4c-why-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  opacity: 0;
}

/* HOVER */
.r4c-why-box:hover {
  transform: translateY(-10px) scale(1.03);
}

/* NUMBER */
.r4c-why-num {
  font-size: 40px;
  font-weight: bold;
  color: #0ea5e9;
  margin-bottom: 10px;
}

/* BOX TEXT */
.r4c-why-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.r4c-why-box p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}

/* ANIMATION INITIAL */
.r4c-why-anim1 {
  transform: translateY(60px);
  transition: 0.6s ease;
}

.r4c-why-anim2 {
  transform: translateY(60px);
  transition: 0.8s ease;
}

.r4c-why-anim3 {
  transform: translateY(60px);
  transition: 1s ease;
}

/* ACTIVE */
.r4c-why-show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .r4c-why-box-wrap {
    flex-direction: column;
  }

  .r4c-why-top h2 {
    font-size: 26px;
  }

  .r4c-why-process-title h3 {
    font-size: 22px;
  }
}



/* ------------- Our Happy Clients ------------- */
.logo-section {
  text-align: center;
  margin: 30px 0;
}

/* H3 */
.logo-heading {
  font-size: 35px;
  margin-bottom: 0px;
}

/* White Box */
.logo-box {
  background: #ffffff;
  padding: 30px 60px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* IMPORTANT FIX */
.logo-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Slider Track */
.logo-slider {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  padding-left: 60px;   /* 👈 Creates initial left space */
  animation: slide 30s linear infinite;
}

/* Logos */
.logo-slider img {
  height: 180px;   /* 200px too big → caused layout push */
  width: auto;
  flex-shrink: 0;
}

/* Smooth Continuous Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on Hover */
.logo-box:hover .logo-slider {
  animation-play-state: paused;
}

/* ===== MOBILE ONE-BY-ONE SLIDER ===== */
@media (max-width: 768px) {

  .logo-box {
    padding: 0px;
  }

  .logo-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .logo-slider {
    display: flex;
    width: 100%;
    gap: 0;
    animation: mobileSlide 15s infinite;
  }

  .logo-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 280px;      /* Bigger logo */
    object-fit: contain;
  }

  @keyframes mobileSlide {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(0%); }

    25%  { transform: translateX(-100%); }
    45%  { transform: translateX(-100%); }

    50%  { transform: translateX(-200%); }
    70%  { transform: translateX(-200%); }

    75%  { transform: translateX(-300%); }
    95%  { transform: translateX(-300%); }

    100% { transform: translateX(-400%); }
  }

}




/* ===============================
   CHATBOT BUTTON
================================ */
#chatbot-btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  z-index: 10000;
}

#chatbot-btn img {
  width: 70px;
  height: 70px;
  transition: 0.3s ease;
}

#chatbot-btn:hover img {
  transform: scale(1.08);
}


/* ===============================
   CHATBOT BOX
================================ */
#chatbot {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  max-height: 560px;
  background: #ffffff;
  border-radius: 18px;
  display: none;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 9999;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(15px);}
  to {opacity:1; transform:translateY(0);}
}


/* ===============================
   HEADER
================================ */
.chat-header {
  background: #018508;
  color: #fff;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}


/* ===============================
   CHAT BODY
================================ */
#chat-body {
  height: 340px;
  padding: 15px;
  overflow-y: auto;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* ===============================
   MESSAGE WRAPPER
================================ */
.msg {
  display: flex;
  align-items: flex-end;
  width: 100%;
}


/* ===============================
   BOT MESSAGE
================================ */
.msg.bot {
  justify-content: flex-start;
  align-items: flex-end;
}

/* ✅ BOT ICON STYLE ADDED */
.bot-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.msg.bot .bubble {
  background: #48d4f0;
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-left-radius: 5px;
  max-width: 75%;
  font-size: 14px;
}


/* ===============================
   USER MESSAGE (RIGHT SIDE)
================================ */
.msg.user {
  justify-content: flex-end;
}

.msg.user .bubble {
  background: #ffffff;
  color: #000;
  padding: 10px 14px;
  border-radius: 16px;
  border-top-right-radius: 5px;
  max-width: 75%;
  font-size: 14px;
  border: 1px solid #ddd;
}


/* ===============================
   WELCOME BIG STYLE
================================ */
.welcome-box {
  text-align: center;
  width: 100%;
}

.welcome-box .welcome-icon {
  font-size: 42px;
  margin-bottom: 8px;
}

.welcome-box .welcome-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}


/* ===============================
   SERVICE GRID
================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

/* ✅ TEXT BLACK CONFIRMED */
.service-btn {
  padding: 10px 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease;
  font-weight: 600;
}

.service-btn:hover {
  background: #018508;
  color: #fff;
  border-color: #018508;
}

.service-btn.active {
  background: #018508;
  color: #fff;
  border-color: #018508;
}


/* ===============================
   DATE INPUT
================================ */
input[type="date"] {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 14px;
}

input[type="date"]:focus {
  border-color: #018508;
  outline: none;
}


/* ===============================
   TIME SLOTS
================================ */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.time-btn {
  padding: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #000;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}

.time-btn:hover {
  background: #018508;
  color: #fff;
  border-color: #018508;
}

.time-btn.active {
  background: #018508;
  color: #fff;
  border-color: #018508;
}


/* ===============================
   INPUT AREA
================================ */
.chat-input-wrap {
  padding: 10px;
  background: #fff;
  border-top: 1px solid #eee;
}

.chat-input-inner {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 25px;
  padding: 6px 8px;
}

#user-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 14px;
  outline: none;
}

#send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #018508;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

#send-btn:hover {
  background: #018508;
}


/* ===============================
   CONFIRM BUTTON
================================ */
.confirm-booking {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  background: #018508;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

.confirm-booking:hover {
  background: #018508;
}


/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 480px) {

  #chatbot {
    width: 95%;
    right: 2.5%;
    bottom: 80px;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .msg.bot .bubble,
  .msg.user .bubble {
    max-width: 85%;
  }
}

/*-- left side fixed icon --*/
/* ===== FLOATING CONTACT FULL ISOLATION ===== */

/* ================= FLOATING CONTACT ================= */

#floating-contact {
    position: fixed !important;
    left: 25px !important;
    bottom: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 99999 !important;
}

/* ================= MAIN BUTTON ================= */

#floating-contact .fc-main {
    width: 75px !important;
    height: 75px !important;
    background: #4c3cff !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;

    transition: transform 0.3s ease !important;   /* Rotation animation */
}

/* ROTATE CLASS */
#floating-contact .fc-main.rotate {
    transform: rotate(45deg);
}

/* IMAGE INSIDE BUTTON */
#floating-contact .fc-main img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
}

/* ================= SUB ICON CONTAINER ================= */

#floating-contact .fc-sub {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* SHOW */
#floating-contact .fc-sub.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= SMALL ICONS ================= */

#floating-contact .fc-icon {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fff !important;
    font-size: 22px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}

/* COLORS */
.fc-call { background: #4c3cff !important; }
.fc-whatsapp { background: #25d366 !important; }
.fc-mail { background: #c9b000 !important; }



/*-- Footer section --*/

/* MAIN FOOTER */
.footer {
    background: linear-gradient(135deg, #0a2b00, #018508, #2c6441);
    color: #fff;
    padding-top: 70px;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* 4 COLUMN LAYOUT */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 0;
    text-align: left;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: left;
}

.footer-col h4 {
    margin: 15px 0;
    text-align: left;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 10px;
    text-align: left;
}

.footer-col p + p {
    margin-top: 30px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 0px;
}

/* FORM */
.footer-form {
    width: 100%;
}

.footer-form input,
.footer-form .select-selected,
.footer-form button {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    font-size: 13px;
}

/* INPUT & SELECT */
.footer-form input,
.footer-form .select-selected {
    background: #fff;
    color: #666;
}

/* SELECT SERVICE */
.footer-form .input-group {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.footer-form .custom-select {
    width: 100%;
    position: relative;
}

.footer-form .select-selected {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

/* OPTIONS BOX */
.footer-form .select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    z-index: 99;
}

/* OPTION ITEMS */
.footer-form .select-options div {
    padding: 10px 15px;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    cursor: pointer;
}

.footer-form .select-options div:hover {
    background: #00e0ff;
    color: #000;
}

/* BUTTON */
.footer-form button {
    background: #00e0ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #fff;
}





/* QUICK LINKS */
.quick-links {
    list-style: none;
    padding: 0;
    text-align: left;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
}

.quick-links a:hover {
    color: #00e0ff;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 20px;
    text-align: left;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00e0ff;
    transform: translateY(-5px);
}


/* BOTTOM BAR */
.footer-bottom {
    width: 100%;
    margin-top: 50px;
    padding: 15px 0;
    text-align: center;
    background: rgb(0, 9, 31);
    font-size: 14px;
    color: #ccc;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {

    .footer {
        padding-top: 50px;
    }

    .footer-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h3,
    .footer-col h4,
    .footer-col p,
    .quick-links,
    .social-icons {
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 15px;
    }

    .quick-links li {
        margin-bottom: 12px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        margin: 0 5px;
    }

    .footer-form input,
    .footer-form .select-selected,
    .footer-form button {
        height: 42px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 12px 10px;
    }
}