/* ------------ 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: #78bf43;
}

/* 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: #e4e2e2;
    list-style: none;
    z-index: 1000;
}

/* 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: #78bf43;
}

.dropdown-menu li:hover .dropdown-item {
    color: #fff;
}

/* 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: #78bf43;
    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 {
    width: 100%;
    min-height: 600px;
    padding: 0px;
    
    background-image: 
        linear-gradient(rgba(0, 49, 65, 0.7), rgba(16, 44, 0, 0.7)),
        url('images/cover.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: #ffffff;
    line-height: 1.3;
}
.banner-content h3{
    font-size: 20px;
    max-width: 1100px;
    color: white;
    margin-top: 20px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 40px;

}
.banner-content h2 {
    color: #ffffff;
    font-size: 35px;
    margin-top: 10px;
}

/* ------------ BOOKING FORM ------------ */
.booking-form {
    display: flex;
    gap: 15px;
    margin-top: 45px;
    flex-wrap: wrap;
    justify-content: center;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    width: 250px;
}

/* ICON */
.icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #78bf43;
    font-size: 18px;
    pointer-events: none;
}

/* TEXT INPUT */
.input-field {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background-color: #fff;
}

.input-field:focus {
    border-color: #78bf43;
    box-shadow: 0 0 6px rgba(120,191,67,0.4);
}

/* INPUT GROUP WRAPPER */
.input-group {
    position: relative;
    width: 250px;   /* same width as custom-select */
}

/* ICON STYLE */
.input-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #78bf43;
    font-size: 16px;
    z-index: 1000;
}
/* ------------ CUSTOM SELECT ------------ */
.custom-select {
    position: relative;
    width: 100%;   /* IMPORTANT */
    font-size: 16px;
}

/* Selected Box */
.select-selected {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.select-selected:hover {
    border-color: #78bf43;
    color: #78bf43;
}

/* Dropdown List */
.select-options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 2px solid #78bf43;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
}

/* Dropdown Items */
.select-options div {
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* GREEN HOVER */
.select-options div:hover {
    background: #78bf43;
    color: #fff;
}

.select-options div {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* ------------ BUTTON ------------ */
.book-btn {
    width: 250px;
    height: 50px;
    background-color: #78bf43;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.book-btn:hover {
    background-color: #12447a;
}


/* ======================================= */
/* RESPONSIVE DESIGN */
/* ======================================= */

/* -------- TABLETS & MOBILE (Below 768px) -------- */
@media (max-width: 768px) {

    .booking-form {
        flex-direction: column;
        width: 100%;
        gap: 18px;
        padding: 0 10px;
    }

    .input-group,
    .custom-select,
    .book-btn {
        width: 100%;
    }
}

/* -------- SMALL MOBILE (Below 480px) -------- */
@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: #78bf43;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .slider-inner {
    width: 95%;
  }

  .slides img {
    width: 100%;        /* 🔥 Show only 1 image */
    padding: 0 5px;
  }

}



/* WATER TANK CLEANING SECTION START*/

.hydrox-water-section{
    width:100%;
    padding:90px 7%;
    background:#ffffff;
    overflow:hidden;
}

.hydrox-water-wrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 2fr;
    align-items:center;
    gap:70px;
}

/* IMAGE */

.hydrox-water-image{
    height:100%;
}

.hydrox-water-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* CONTENT */

.hydrox-water-mini-title{
    display:inline-block;
    background:#e6f7ff;
    color:#0096c7;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
    letter-spacing:1px;
}

.hydrox-water-content h2{
    font-size:48px;
    line-height:1.2;
    color:#0b1f33;
    margin-bottom:28px;
    font-weight:700;
}

.hydrox-water-quote{
    border-left:4px solid #00b4d8;
    padding-left:20px;
    margin-bottom:28px;
    color:#0096c7;
    font-size:20px;
    font-style:italic;
    line-height:1.7;
}

.hydrox-water-quote span{
    display:block;
    margin-top:8px;
    font-size:15px;
    color:#666;
    font-style:normal;
}

.hydrox-water-content p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
}

.hydrox-water-btn{
    display:inline-block;
    background:#00b4d8;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,180,216,0.25);
}

.hydrox-water-btn:hover{
    background:#0096c7;
    transform:translateY(-4px);
}

/* SCROLL ANIMATION */

.scroll-hydrox{
    opacity:0;
    transform:translateY(70px);
    transition:all 1s ease;
}

.scroll-hydrox.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:991px){

    .hydrox-water-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hydrox-water-content h2{
        font-size:38px;
    }

}

@media(max-width:600px){

    .hydrox-water-section{
        padding:70px 20px;
    }

    .hydrox-water-content h2{
        font-size:30px;
    }

    .hydrox-water-content p{
        font-size:15px;
    }

    .hydrox-water-quote{
        font-size:17px;
    }

    .hydrox-water-btn{
        width:100%;
        text-align:center;
    }

}


/* ------------- r4c-watertank-section ------------- */

.r4c-watertank-section {
    padding: 90px 20px;
    background: #f8fcff;
    overflow: hidden;
}

.r4c-watertank-container {
    max-width: 1200px;
    margin: auto;
}

.r4c-head-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.r4c-main-heading {
    font-size: 38px;
    color: #0b2c4d;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.r4c-top-para {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.r4c-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 60px;
}

.r4c-text-box,
.r4c-image-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    min-height: 540px;
}

.r4c-text-box h3 {
    color: #0077b6;
    font-size: 28px;
    margin-bottom: 20px;
}

.r4c-text-box p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.r4c-keyword-list {
    padding-left: 20px;
}

.r4c-keyword-list li {
    margin-bottom: 14px;
    color: #333;
    line-height: 1.7;
}

.r4c-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.r4c-bottom-content {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.r4c-bottom-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Scroll Animation Base */
.r4c-scroll-up,
.r4c-scroll-left,
.r4c-scroll-right,
.r4c-scroll-up-delay {
    opacity: 0;
    transition: all 1s ease;
}

.r4c-scroll-up {
    transform: translateY(70px);
}

.r4c-scroll-left {
    transform: translateX(-70px);
}

.r4c-scroll-right {
    transform: translateX(70px);
}

.r4c-scroll-up-delay {
    transform: translateY(70px);
    transition-delay: 0.3s;
}

.r4c-show {
    opacity: 1;
    transform: translate(0,0);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .r4c-content-grid {
        grid-template-columns: 1fr;
    }

    .r4c-main-heading {
        font-size: 30px;
    }

    .r4c-text-box,
    .r4c-image-box {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .r4c-main-heading {
        font-size: 24px;
    }

    .r4c-top-para,
    .r4c-bottom-content p {
        font-size: 16px;
    }

    .r4c-text-box h3 {
        font-size: 22px;
    }
}


/* ------------- r4c-whychoose-sec ------------- */

.r4c-whychoose-sec {
    padding: 90px 20px;
    background: #ffffff;
    overflow: hidden;
}

.r4c-whychoose-wrap {
    max-width: 1200px;
    margin: auto;
}

.r4c-why-head {
    text-align: center;
    margin-bottom: 60px;
}

.r4c-why-head h2 {
    font-size: 38px;
    color: #0b2c4d;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.r4c-why-head p {
    max-width: 950px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.r4c-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
}

.r4c-img-box,
.r4c-text-box2 {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.r4c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.r4c-img-box:hover img {
    transform: scale(1.08);
}

.r4c-text-box2 {
    padding: 35px;
}

.r4c-text-box2 h3 {
    font-size: 28px;
    color: #0077b6;
    margin-bottom: 25px;
}

.r4c-text-box2 ul {
    padding-left: 20px;
}

.r4c-text-box2 ul li {
    margin-bottom: 14px;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

.r4c-bottom-why {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.r4c-bottom-why p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Scroll Animations */
.r4c-fade-top,
.r4c-fade-left,
.r4c-fade-right,
.r4c-fade-bottom {
    opacity: 0;
    transition: all 1s ease;
}

.r4c-fade-top {
    transform: translateY(-60px);
}

.r4c-fade-left {
    transform: translateX(-70px);
}

.r4c-fade-right {
    transform: translateX(70px);
}

.r4c-fade-bottom {
    transform: translateY(70px);
}

.r4c-show-ani {
    opacity: 1;
    transform: translate(0,0);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .r4c-why-grid {
        grid-template-columns: 1fr;
    }

    .r4c-img-box,
    .r4c-text-box2 {
        min-height: auto;
    }

    .r4c-img-box {
        height: 400px;
    }

    .r4c-why-head h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .r4c-why-head h2 {
        font-size: 24px;
    }

    .r4c-why-head p,
    .r4c-bottom-why p {
        font-size: 16px;
    }

    .r4c-text-box2 h3 {
        font-size: 22px;
    }

    .r4c-img-box {
        height: 280px;
    }
}


/* ------------- r4c-process-sec ------------- */

.r4c-process-sec {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fbff, #eef7ff);
    overflow: hidden;
}

.r4c-process-wrap {
    max-width: 1200px;
    margin: auto;
}

.r4c-process-head {
    text-align: center;
    margin-bottom: 70px;
}

.r4c-process-head h2 {
    font-size: 40px;
    color: #0b2c4d;
    margin-bottom: 20px;
    font-weight: 700;
}

.r4c-process-head p {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.r4c-process-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
    align-items: center;
}

.r4c-process-imgbox {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.r4c-process-imgbox img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.r4c-process-imgbox:hover img {
    transform: scale(1.08);
}

.r4c-process-cards {
    display: grid;
    gap: 25px;
}

.r4c-step-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.r4c-step-card:hover {
    transform: translateY(-8px);
}

.r4c-step-card span {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    background: #0077b6;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.r4c-step-card h3 {
    font-size: 22px;
    color: #0b2c4d;
    margin-bottom: 12px;
}

.r4c-step-card p {
    color: #555;
    line-height: 1.7;
}

.r4c-process-bottom {
    margin-top: 60px;
    text-align: center;
}

.r4c-process-bottom p {
    font-size: 18px;
    color: #444;
    max-width: 950px;
    margin: auto;
    line-height: 1.8;
}

/* Animations */
.r4c-ani-top,
.r4c-ani-left,
.r4c-ani-right,
.r4c-ani-bottom {
    opacity: 0;
    transition: all 1s ease;
}

.r4c-ani-top { transform: translateY(-70px); }
.r4c-ani-left { transform: translateX(-70px); }
.r4c-ani-right { transform: translateX(70px); }
.r4c-ani-bottom { transform: translateY(70px); }

.r4c-show-process {
    opacity: 1;
    transform: translate(0,0);
}

.delay1 { transition-delay: 0.1s; }
.delay2 { transition-delay: 0.3s; }
.delay3 { transition-delay: 0.5s; }
.delay4 { transition-delay: 0.7s; }

/* Mobile Responsive */
@media (max-width: 991px) {
    .r4c-process-layout {
        grid-template-columns: 1fr;
    }

    .r4c-process-head h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .r4c-process-head h2 {
        font-size: 24px;
    }

    .r4c-process-head p,
    .r4c-process-bottom p {
        font-size: 16px;
    }

    .r4c-step-card h3 {
        font-size: 19px;
    }
}

/* ------------- r4cfaq-main-sec ------------- */

.r4cfaq-main-sec {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f8f8, #eef7ff);
    overflow: hidden;
}

.r4cfaq-wrap {
    max-width: 1000px;
    margin: auto;
}

.r4cfaq-head {
    text-align: center;
    margin-bottom: 60px;
}

.r4cfaq-head h2 {
    font-size: 42px;
    color: #0b2c4d;
    margin-bottom: 15px;
    font-weight: 700;
}

.r4cfaq-head p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
}

.r4cfaq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.r4cfaq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.r4cfaq-item:hover {
    transform: translateY(-5px);
}

.r4cfaq-question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: none;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #0b2c4d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r4cfaq-question span {
    font-size: 28px;
    color: #0077b6;
    transition: transform 0.4s ease;
}

.r4cfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 30px;
}

.r4cfaq-answer p {
    padding-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.r4cfaq-item.active .r4cfaq-answer {
    max-height: 300px;
}

.r4cfaq-item.active .r4cfaq-question span {
    transform: rotate(45deg);
}

/* Scroll Animation */
.r4cfaq-fade-top,
.r4cfaq-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.r4cfaq-show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .r4cfaq-head h2 {
        font-size: 28px;
    }

    .r4cfaq-head p {
        font-size: 16px;
    }

    .r4cfaq-question {
        font-size: 17px;
        padding: 20px;
    }

    .r4cfaq-answer {
        padding: 0 20px;
    }
}

/* ------------- 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;   /* only top padding */
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;   /* move side padding here */
    m
}

/* 4 COLUMN LAYOUT */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col h4 {
    margin: 15px 0;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 10px;
}

.footer-col p + p {
    margin-top: 30px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 0px;
}

/* FORM */
.footer-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.footer-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    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;
}

.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;
}

.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;
}