/*---------------------------------------------------------------

        Template Name: Cleanysphere | Professional Cleaning Services for Home & Office
        Description: Cleanysphere offers expert cleaning services for homes, offices, and commercial spaces. Enjoy spotless spaces with our eco-friendly, reliable, and affordable cleaning solutions.
        Author: Lucid ThemesLab
        Author URL: https://www.templatemonster.com/store/lucid_themeslab/
        Version: 1.0.0
----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');


/* ==================
   Basic Styles 
================== */

[data-cs-theme="cs_light"] {
  --body-color: #FFFFFF;
  --light-gradient: linear-gradient(180deg, #f5fdff 0%, #dfefff 100%);
  --primary-color: #5BACC2;
  --primary-rgb:255, 132, 24;
  --secondary-color: #134679;
  --dark-rgb:  13, 51, 66;
  --secondary-overlay: 46, 32, 112;
  --alt-color: #ebfbff;
  --white-color: #ffffff;
  --form-color: #ffffff;
  --card-color: #ffffff;
  --danger-color: #fa5050;

  /* text-colors */
  --heading-text: #134679;
  --para-text: #6B6B6B;
  --white-text: #ffffff;
  --form-text: #6B6B6B;
  --danger-text: #fa5050;


  /* font family */
  --primaryfont: "Parkinsans", sans-serif;
}

[data-cs-theme="cs_dark"] {
  --body-color: #041527;
  --light-gradient:linear-gradient(180deg, #1f3348 0%, #334d69 100%);
  --primary-color: #5BACC2;
  --secondary-color: #3E6B99;
  --dark-rgb: 13, 51, 66;
  --secondary-overlay: 46, 32, 112;
  --alt-color: #1f3348;
  --white-color: #ffffff;
  --form-color: #19334e;
  --card-color: #334d69;
  --danger-color: #fa5050;

  /* text-colors */
  --heading-text: #ffffff;

  --para-text: #E4E4E4;
  --white-text: #ffffff;
  --form-text: #C8C8C8;
  --danger-text: #fa5050;

  /* font family */
  --primaryfont: "Parkinsans", sans-serif;
}

* {
  box-sizing: border-box;
  font-family: var(--primaryfont) !important;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

.fs-0 {
  font-size: 0px;
}

/* Background-Color*/

.body-color {
  background-color: var(--body-color) !important;
}

.primary-color {
  background-color: var(--primary-color) !important;
}

.secondary-color {
  background-color: var(--secondary-color) !important;
}

.secondary-overlay {
  background-color: var(--secondary-overlay) !important;
}

.alt-color {
  background-color: var(--alt-color) !important;
}

.white-color {
  background-color: var(--white-color) !important;
}

.form-color {
  background-color: var(--form-color) !important;
}

.card-color {
  background-color: var(--card-color) !important;
}

.danger-color {
  background-color: var(--danger-color) !important;
}

/* Text-Color*/

.primary-font {
  font-family: var(--primaryfont) !important;
}

.primary-text {
  color: var(--primary-color);
}

.heading-text {
  color: var(--heading-text);
}

.para-text {
  color: var(--para-text);
}

.white-text {
  color: var(--white-text);
}

.form-text {
  color: var(--form-text);
}

.secondary-text {
  color: var(--secondary-text);
}

.danger-text {
  color: var(--danger-text);
}

/* Button Style */
.mx-70 {
  max-width: 750px;
}

/* ==================
  Preloader Style
================== */

/* ===== Preloader Styling ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--light-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

/* Logo Section */
.brand-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(13, 110, 253, 0.25);
  letter-spacing: 2px;
  position: relative;
}

.brand-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: bubblePop 0.6s forwards ease-out;
}

.brand-text span:nth-child(1) { animation-delay: 0.1s; }
.brand-text span:nth-child(2) { animation-delay: 0.2s; }
.brand-text span:nth-child(3) { animation-delay: 0.3s; }
.brand-text span:nth-child(4) { animation-delay: 0.4s; }
.brand-text span:nth-child(5) { animation-delay: 0.5s; }
.brand-text span:nth-child(6) { animation-delay: 0.6s; }
.brand-text span:nth-child(7) { animation-delay: 0.7s; }
.brand-text span:nth-child(8) { animation-delay: 0.8s; }
.brand-text span:nth-child(9) { animation-delay: 0.9s; }

@keyframes bubblePop {
  0% { transform: translateY(30px) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Global Floating Bubbles */
.floating-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -10%;
  background: rgba(173, 216, 230, 0.6);
  border-radius: 50%;
  animation: bubbleRise 8s linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  25% { opacity: 1; }
  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

/* Random bubble sizes and delays */
.bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 35px; height: 35px; left: 25%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 15px; height: 15px; left: 40%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 40px; height: 40px; left: 55%; animation-delay: 1s; }
.bubble:nth-child(5) { width: 25px; height: 25px; left: 70%; animation-delay: 3s; }
.bubble:nth-child(6) { width: 18px; height: 18px; left: 80%; animation-delay: 1.5s; }
.bubble:nth-child(7) { width: 50px; height: 50px; left: 90%; animation-delay: 0.8s; }
.bubble:nth-child(8) { width: 30px; height: 30px; left: 15%; animation-delay: 2.5s; }
.bubble:nth-child(9) { width: 40px; height: 40px; left: 65%; animation-delay: 4.5s; }
.bubble:nth-child(10) { width: 22px; height: 22px; left: 45%; animation-delay: 5s; }

/* Fade out after 3s */
.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
/* ==================
  Theme Switcher
================== */
.switchbtn {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 99;
  padding: 0;
  border: none;
  background: var(--primary-color);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  color: var(--white-color);
}

@media (max-width: 576px) {
  .switchbtn {
      top: 120px;
  }
}

@media (max-width: 450px) {

/* Logo Section */
.brand-text {
  font-size: 24px;
}
}

.mode-icon-bg {
  font-size: 22px;
}

/* Theme-specific */
[data-cs-theme="cs_light"] .mode-icon-bg i {
  color: var(--white-color);
}

[data-cs-theme="cs_dark"] .mode-icon-bg {
   color: var(--white-color);
}

.logo {
  display: none;
 }

  [data-cs-theme="cs_light"] .logo-light {
      display: inline-block;
  }

    [data-cs-theme="cs_dark"] .logo-dark {
      display: inline-block;
  }

/* ===============================
   Nav Link Base Styling
================================*/
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  color: var(--heading-text);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hover & Active Color */
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

/* ===============================
   Underline Animation
================================*/
.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 1px;
}

/* Hover or Active underline */
.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* ===============================
   Mobile Responsiveness
================================*/
@media (max-width: 576px) {
  .navbar-nav .nav-item .nav-link::after {
    height: 1px;
  }
  .navbar-nav .nav-item .nav-link:hover::after,
  .navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
  }
}

/* ===============================
   Offcanvas Close Button
================================*/
.btn-close {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}


/* Responsive spacing */
@media (min-width: 992px) {
  .offcanvas.offcanvas-end {
    position: static;
    transform: none;
    visibility: visible !important;
    background-color: transparent;
    border: none;
    display: flex !important;
    flex-grow: 1;
    padding: 0;
  }

  .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .offcanvas-header {
    display: none;
  }

  .navbar-toggler {
    display: none;
  }
}

/* Sticky Navbar */
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: var(--card-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/*================================================
 Home Banner Styles
=================================================*/

.banner-main .splide__slide {
  background-size: cover;
  background-position: center;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-main .slide-1 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-1.webp");
  background-size: cover;
  background-position: center;
}

.banner-main .slide-2 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-2.webp");
  background-size: cover;
  background-position: center;
}

.banner-main .slide-3 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-3.webp");
  background-size: cover;
  background-position: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px){
.banner-text {width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
}

@media (max-width: 991px) {
  .banner-main .splide__slide {
    min-height: 400px;
  }

  .banner-text.display-1 {
    font-size: 2rem;
  }

  .banner-text.fs-1 {
    font-size: 1rem;
  }
}

.splide__arrow{
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  opacity: 1;
}

@media (max-width: 576px) {
  .banner-main .splide__arrow {
    top: 70%;
  }
}

.splide__arrow:hover{
  background-color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .offcanvas-header {
    background-color: var(--card-color);
    color: var(--white-color);
  }

  .offcanvas-body {
    background-color: var(--alt-color);
  }

  .offcanvas-header .btn-close {
    all: unset;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
    color: var(--white-color);
  }

  .offcanvas-header .btn-close:hover {
    background-color: #ffffff33;
  }

  #offcanvasbutton {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    padding: 0;
    color: var(--white-color);
  }
}

#offcanvasbutton:hover {
  background-color: #ffffff33;
}

#offcanvasbutton i {
  font-size: 1.25rem;
  color: var(--white-color);
}

.site-logo {
width: 150;
height: 104;
height: auto;
display: block;
}

/* =============================
  About Section  Styles
============================== */

.about .about-feature {
  background: var(--alt-color);

  border-left: 4px solid transparent;
  border-radius: 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 100%;
  height: 100%; 
}

.about .about-feature {
  max-width: 500px;
  margin: 0 auto;
}

@media(max-width:576px) {
  .about .about-feature {
      max-width: 300px!important; 
  }
}

.about .about-feature:hover {
    transition: 0.3s ease;
  transform: translateY(-4px);
  border-left: 4px solid var(--primary-color);
  background: var(--secondary-color);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.1);
  color: var(--white-color)!important;
}

.about .about-feature:hover h6,
.about .about-feature:hover p {
  color: var(--white-color)!important;
}

.about .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--card-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  margin-right: 1rem;
}

.about-feature:hover .icon-box {
  background: var(--primary-color);
  color:var(--white-color);
  transform: rotate(10deg);
}

.about .about-feature h6,
.about .about-feature p {
  margin: 0;
  line-height: 1.4;
}

.about .about-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about .about-image:hover {
  transform: scale(1.03);
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .about .about-feature {
    min-height: auto;
    padding: 1rem 0.75rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .about .icon-box {
    width: 45px;
    height: 45px;
    margin-right: 0.75rem;
  }

  .about .about-feature h6,
  .about .about-feature p {
    font-size: 0.95rem;
  }
}

/* =========================
   Subscribe Section Styles
============================= */

#newsletter  .input-group button {
  top: 4px;
  right: 4px;
  z-index: 9 !important;
}

.search-icon{
  background-color: var(--primary-color);
  color: var(--white-color);
}

.search-icon:hover{
  background-color: var(--secondary-color);
  color: var(--white-color);
  transition: 0.3s ease-in;
}

#search-form .input-group input {
    padding: 15px 80px 15px 14px !important;
}

.newsletter-main {
  background: url('../../assets/backround_img/hero_bg.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
}

.newsletter-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65); /* dark overlay for contrast */
  z-index: 1;
}

.newsletter-main .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .newsletter-main {
      padding: 50px 0;
  }
}

#newsletter .input-group {
  height: 52px; 
}

#newsletter .input-group .form-control {
  border: none;
  border-radius: 50px;
  padding-right: 140px;
  padding-left: 20px;
  height: 100%;
  font-size: 15px;
}

#newsletter .input-group .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

#newsletter .input-group .btn {
  top: 4px;
  right: 4px;
  bottom: 4px;
  height: auto;
  padding: 8px 20px;
  border-radius: 50px;
  position: absolute;
  z-index: 2;
  font-size: 15px;
}

#newsletter .input-group .error:not(.form-control) {
  position: absolute;
  top: 100%;
  left: 3%;
}

/* =========================
   Contact Section Styles
=========================== */

.contact-iconbg {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  outline: 2px dashed var(--secondary-color);
  color: var(--white-color)!important;
  outline-offset: 6px;
}

.form-control:focus {
  border-color: var(--color-5) !important;
  box-shadow: 0 0 5px var(--border-color-light);
  color: var(--form-text);
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--form-text) !important;
}

.form-control::placeholder {
  color: var(--form-text);
}

.error {
  color: var(--danger-text) !important;
  padding: 8px;
  font-family: var(--secondaryfont) !important;
}

/* ==================
  Back to top Styles
================== */

#backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  border: 2px dotted var(--white-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backtotop .fa-angle-up {
  font-size: 30px;
  color: var(--white-color);
}

#backtotop:hover {
  cursor: pointer;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-us {
  background: var(--alt-color)
}

.why-choose-us .sub-title {
  letter-spacing: 1px;
  color: var(--primary-color);
}

.why-choose-us .heading-text span {
  position: relative;
  display: inline-block;
}

.why-choose-us .heading-text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 6px;
  background: rgba(13, 110, 253, 0.2);
  border-radius: 3px;
  animation: highlight 2s ease-in-out infinite alternate;
}

/* Highlight Animation */
@keyframes highlight {
  0% { transform: scaleX(1); opacity: 0.7; }
  100% { transform: scaleX(1.05); opacity: 1; }
}

/* Cleaning Icon Animation */
.cleaning-icon {
  display: inline-block;
  animation: clean-swipe 2s ease-in-out infinite;
}

@keyframes clean-swipe {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(-15deg) translateX(-5px); }
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card .feature-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s;
}

.feature-card:hover .feature-icon {
  color: var(--primary-color);
  transform: scale(1.15) rotate(5deg);
}

/* Floating Bubbles */
.bubbles {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 1;
}

.bubbles span {
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  animation: bubble 10s linear infinite;
  animation-duration: calc(120s / var(--i));
}

@keyframes bubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .feature-card {
    padding: 30px 20px;
  }

  .feature-card .feature-icon {
    font-size: 32px;
  }
}
/* =========================
   OUR SERVICES - UNIQUE STYLE
========================= */
.service-glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 50px 25px 40px;
  text-align: center;
  transition: 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}

/* Floating Icon Circle */
.icon-floating {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.service-glass-card:hover .icon-floating {
  transform: rotate(8deg) scale(1.05);
  background: var(--secondary-color);
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.4);
}

/* Animated Background Glow */
.service-glass-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1), transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: 1;
}

.service-glass-card:hover::before {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .service-glass-card {
    padding: 40px 20px;
  }
  .icon-floating {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .service-glass-card {
    padding: 30px 15px;
  }
  .service-glass-card h5 {
    font-size: 1.05rem;
  }
}

/* =======================================
   HOW IT WORKS MODERN STYLE
======================================= */
.process-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,180,255,0.1), transparent 70%);
  z-index: 0;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 180, 255, 0.2);
}

/* Circle Icons */
.circle-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background:  var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
  transition: 0.4s ease;
}

.circle-icon .step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--card-color);
  color: var(--primary-color);
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,180,255,0.2);
  font-size: 0.9rem;
}

.process-card:hover .circle-icon {
  background:  var(--primary-color);
  transform: scale(1.1) rotate(5deg);
}

/* Floating Effect */
@keyframes bubbleGlow {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  100% { transform: translateX(-50%) translateY(30px); opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
  .process-card {
    margin-bottom: 1.5rem;
  }
}

/* =======================================
  PROJECT SECTION STYLE
======================================= */
.project-card {
  transition: 0.4s ease;
  cursor: pointer;
  border-radius: 20px;
}

.project-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::before {
  opacity: 1;
  animation: shineMove 2s linear infinite;
}

@keyframes shineMove {
  0% { transform: translate(-100%, -100%); }
  100% { transform: translate(100%, 100%); }
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay svg {
  color: #ffffff;
  background: var(--primary);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.project-card:hover .project-overlay i {
  transform: rotate(15deg) scale(1.1);
  background: var(--bs-dark);
}

.project-overlay h5 {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.project-overlay p {
  font-size: 0.9rem;
  max-width: 230px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .project-overlay h5 { font-size: 1rem; }
  .project-overlay p { font-size: 0.85rem; }
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* Overlay */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 38, 61, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Project title and description */
.project-overlay h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  z-index: 2;
}

.project-overlay p {
  color: #ddd;
  font-size: 0.85rem;
  margin-bottom: 10px;
  z-index: 2;
}

/* Glightbox View Button */
.view-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: 0.3s ease;
  z-index: 10;
}

.project-card:hover .view-btn {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .project-overlay {
    justify-content: flex-end;
    padding: 15px;
  }
  .view-btn {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .project-overlay h5 {
    font-size: 1rem;
  }
  .project-overlay p {
    font-size: 0.75rem;
  }
}

/* ================= Portfolio Section ================= */
  .portfolio-section {
    background-color: #0b233f;
  }

    .portfolio-section.splide__slide .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
  }

    .portfolio-section.splide__slide .card:hover {
    transform: translateY(-5px);
  }

  .portfolio-section .splide__slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .portfolio-section .splide__arrow {
    background: var(--card-color);
    color: var(--heading-text);
    border-radius: 50%;
  }

  .portfolio-section .splide__arrow:hover {
    background: var(--primary-color);
    color: #fff!important;
  }

  .portfolio-section .splide__arrow svg {
  fill: var(--heading-text);
}

/* ===== Team Section ===== */

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 20, 39, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s ease-in-out;
  padding: 20px;
  text-align: center;
}

.team-card:hover .team-overlay {
  bottom: 0;
}

.team-overlay h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

.team-overlay p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.team-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  transition: 0.3s ease;
}

.team-socials .social-icon:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-overlay {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .team-overlay h5 {
    font-size: 1rem;
  }
  .team-overlay p {
    font-size: 0.75rem;
  }
  .team-socials .social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ===== Testimonial Section ===== */

.testimonial-card {
  background: var(--card-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.splide__slide {
  padding: 15px;
}

/* Star Rating */
.text-warning i {
  margin: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 15px;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

/* Make all testimonial cards equal height */
.testimonial-section .splide__slide {
  display: flex;
  align-items: stretch; 
}

.testimonial-card {
  flex-direction: column;
  justify-content: space-between; 
  height: 100%; 
}

  /* ================= Blog Section ================= */
  .blog-card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .blog-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
  }

  .blog-meta {
    font-size: 14px;
    color: var(--para-text)
  }

  .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
  }

   /* ===== Pricing Section ===== */

.pricing-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pricing-header {
  background:  var(--primary-color);
}

.featured-plan {
  transform: scale(1.05);
  z-index: 1;
}

.featured-plan .pricing-header {
  background: var(--secondary-color);
}

.pricing-body ul li {
  margin-bottom: 10px;
}

.pricing-body ul li i {
  font-size: 0.9rem;
}

.btn {
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media(max-width: 992px){
  .featured-plan {
    transform: scale(1);
  }
  .price-text {
    font-size: 2rem;
  }
}

@media(max-width: 576px){
  .pricing-card {
    margin-bottom: 20px;
  }
  .price-text {
    font-size: 1.7rem;
  }
}

/* ===== Footer Base ===== */
.footer-section {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

/* Footer About & Socials */
.footer-about {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  width: 38px; height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 10px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-4px);
}

/* Footer Titles & Links */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Newsletter */
.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 50px;
  border: none;
  outline: none;
}

/* Responsive */
@media(max-width:768px){
  .footer-section .social-icons {justify-content:flex-start;}
  .newsletter-form {flex-direction: column; gap: 10px;}
}

.booking-info {
  position: relative;
}

.features-floating {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 991px){
  .features-floating {
    position: static;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
}
    /* Appointment Section */

    /* Form Card */
    .appointment-form {
        background: var(--card-color);
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    /* Input Fields with Icon */
    .appointment-form .position-relative {
        position: relative;
    }

    .appointment-form .form-icon {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1rem;
    }

    .appointment-form .form-control,
    .appointment-form .form-select,
    .appointment-form textarea {
        border-radius: 10px;
        border: 1px solid #ced4da;
        height: 45px;
        font-size: 0.95rem;
        transition: 0.3s ease-in;
        background-color: var(--form-color);
        color: var(--form-text);
    }

    .appointment-form textarea {
        min-height: 100px;
        padding-top: 0.8rem;
    }

    /* Focus Effect */
    .appointment-form .form-control:focus,
    .appointment-form .form-select:focus,
    .appointment-form textarea:focus {
        border-color: var(--primary-color);
        box-shadow: none;
        outline: none;
        background-color: var(--form-color);
        color: var(--form-text);
    }

    /* Custom Select Arrow */
    .appointment-form select.form-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 2.5rem;
    }

    .select-arrow {
        position: absolute;
        right: 15px;
        top: 25px;
        transform: translateY(-50%);
        pointer-events: none;
        color: var(--form-text);
    }

    /* Placeholders */
    .appointment-form ::placeholder {
        color: var(--form-text);
        opacity: 1;
    }

    /* Submit Button */
    .primary-btn {
        border-radius: 50px;
        padding: 12px 28px;
        font-weight: 600;
        background: var(--secondary-color);
        border: none;
        color: #fff!important;
        font-size: 15px;
    } 

    .primary-btn:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: var(--primary-color);
    }


    /* Responsive */
    @media(max-width: 768px) {
        .appointment-form {
            padding: 1.5rem;
        }
    }

    .form-select {
        background-image: unset;
    }

    /* Form Icons */
    .appointment-form .form-icon {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: var(--form-text);
        font-size: 1rem;
    }

    /* Select Custom Arrow */
    .select-arrow {
        position: absolute;
        right: 15px;
        top: 25px;
        transform: translateY(-50%);
        pointer-events: none;
        color: var(--form-text);
    }

    /* Opening Hours */
    .opening-hours {
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .opening-hours h5 {
        font-size: 1.2rem;
    }

    .opening-hours ul li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .opening-hours ul li:last-child {
        border-bottom: none;
    }

    /* Responsive */
    @media(max-width: 992px) {
        .opening-hours {
            margin-top: 20px;
        }
    }

    /* =================================================
       COMMON CARD / IMAGE UTILS
    ================================================= */
    .card-soft {
        background: var(--card-color);
        border-radius: 10px;
        padding: 18px;
        box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
        border: none;
    }

    img.responsive {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rounded-shadow {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
    }

    /* =========================
    TESTIMONIALS (SWIPER)
    ========================= */
    .testimonials {
        padding: 56px 0;
    }

    .testimonials .swiper {
        padding-bottom: 14px;
    }

    .testimonial-card {
        background: var(--card-color);
        border-radius: 14px;
        padding: 18px;
        transition: transform .35s cubic-bezier(.22, .9, .36, 1), box-shadow .35s;
        height: 100%;
    }

    .testimonial-card .avatar {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        flex: 0 0 68px;
        border: 3px solid rgba(0, 179, 255, 0.12);
    }

    .testimonial-card .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .testimonial-name {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .testimonial-role {
        color: var(--muted);
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .testimonial-quote {
        font-size: 0.96rem;
        color: var(--text);
        opacity: 0.95;
    }

    /* active slide emphasis */
    #testimonials.swiper .swiper-slide-active .testimonial-card {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 22px 46px rgba(3, 37, 76, 0.14);
    }

    /* star */
    .stars {
        color: #f5b301;
        margin-bottom: 6px;
    }

    /* responsive tweaks */
    @media (max-width: 992px) {
        .testimonial-card {
            padding: 16px;
            gap: 12px;
        }

        .testimonial-name {
            font-size: 0.98rem;
        }
    }

    @media (max-width:576px) {
        .testimonial-card {
            flex-direction: row;
            gap: 12px;
            align-items: center;
        }

        .testimonial-quote {
            display: block;
            font-size: 0.95rem;
        }
    }

    /* =========================
    FACILITIES GALLERY (responsive masonry)
    ========================= */

.facilities {
    padding: 56px 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 22px;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 22px; 
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform .4s ease ease-in;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease ease-in;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 100%);
    color: #fff;
    font-weight: 600;
    opacity: 0;
    transition: opacity .35s ease-in;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Hover view icon */
.view-icon {
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease-in;
    font-size: 20px;
}

.gallery-item:hover .view-icon {
    opacity: 1;
    transform: translateY(0);
}

/* columns breakpoints */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

    /* =========================
    FAQ ACCORDION
    ========================= */

  .faq-accordion .accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
    transition:  0.3s ease-in;
  }

  .faq-accordion .accordion-button {
    font-weight: 700;
    background: var(--card-color);
    color: var(--heading-text);
    padding: 18px 20px;
    transition: 0.35s ease-in;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
  }

  /* When Open (Active) */
  .faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
  }

  /* Arrow icon rotation */
  .faq-accordion .accordion-button::after {
    transition: transform 0.35s ease-in;
  }
  .faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  /* Body Content */
  .faq-accordion .accordion-body {
    background: var(--card-color);
    color: var(--heading-text);
    padding: 18px 22px;
    line-height: 1.6;
  }

  /* Hover effects */
  .faq-accordion .accordion-button:hover {
    background: var(--primary-color);
    color: var(--white-text);
  }
  .faq-accordion .accordion-button:not(.collapsed):hover {
    background: var(--primary-color);
    color: #fff;
  }

  /* Remove default accordion arrow */
  .faq-accordion .accordion-button::after {
      display: none !important;
  }
  /* Icon base */
  .faq-icon {
      margin-left: auto;
      font-size: 18px;
      transition: transform 0.3s ease-in;
  }

  /* When OPEN (active) - change icon OR rotate */
  .accordion-button:not(.collapsed) .faq-icon {
      transform: rotate(180deg); 
  }

  /* spacing adjust mobile */
  @media (max-width:576px) {
      .section-title h2 {
          font-size: 1.4rem;
      }

      .section-sub {
          font-size: 0.95rem;
      }

      .testimonial-quote {
          font-size: 0.95rem;
      }
  }

/*================================================
   Theme Switch Button Styles
=================================================*/



/* Responsive spacing */
@media (max-width: 576px) {
  #btnSwitch {
    top: 130px;
  }
}

.backto-btn{
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.backto-btn:hover {
 background: var(--secondary-color);
  color: #fff;
}

/*===============================================
   Back to top Styles
=================================================*/
#backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 7px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#backtotop:hover {
  cursor: pointer;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.alertmsg {
  z-index: 9999;
}

.glightbox-clean .gdesc-inner{
  background-color: var(--body-color);
}

.glightbox-clean .gslide-title{
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 600;
}

/* Mobile Only (max-width 991px) */
@media (max-width: 991.98px) {
  /* Offcanvas Header */
  .offcanvas-header {
    background-color: var(--card-color) !important; 
  }

  /* Offcanvas Body */
  .offcanvas-body {
    background-color: var(--alt-color)!important; 
  }
}

/* Icon inside input fields */
.input-icon {
    position: absolute;
    right: 16px;
    top: 25px;
    transform: translateY(-50%);
    font-size: 15px;
    pointer-events: none;
    color: var(--heading-text); 
    opacity: 0.7;
}

/* Input styling sync with theme */
.date-input,
.time-input {
    background: var(--card-color);
    color: var(--heading-text);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.date-input:focus,
.time-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

/* Placeholder color based on theme */
.date-input::placeholder,
.time-input::placeholder {
    color: var(--para-text);
    opacity: 0.7;
}
/* Calendar container */
.flatpickr-calendar {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    border-radius: 10px;
}

/* Month & Year header */
.flatpickr-months .flatpickr-month {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
}

/* Weekday headings */
.flatpickr-weekdays span {
    color: var(--para-text) !important;
}

/* Normal day numbers */
.flatpickr-day {
    color: var(--heading-text) !important;
    border-radius: 6px !important;
}

/* Hover effect */
.flatpickr-day:hover {
    background: rgba(var(--primary-color),0.15) !important;
}

/* Selected date */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Time dropdown styling */
.flatpickr-time input {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
    border: 1px solid var(--primary-color) !important;
}

.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary-color);
}


.flatpickr-months .flatpickr-next-month {
    fill: var(--heading-text)
}

.flatpickr-months .flatpickr-prev-month {
    fill: var(--heading-text)
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--heading-text) !important;
    opacity: 0.75;
    transition: 0.3s;
}
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

.flatpickr-time .flatpickr-am-pm:focus {
    background:var(--primary-color) !important;
     color: var(--white-text) !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: var(--heading-text);
}

.flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
      background:var(--primary-color) !important;
     color: var(--white-text) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--card-color) !important;
  color: var(--heading-text) !important;
  border: 1px solid var(--primary-color) !important;
}

.logo-box img{ 
  height: 90px;
  object-fit: contain; 
}

#testimonial .splide__arrow svg,
.blog-section .splide__arrow svg,
.banner-main .splide__arrow svg {
    fill: var(--white-color);
}

@media (max-width: 576px) {
   .blog-section  .splide__arrow {
        top: 50%;
    }
}

@media (max-width: 991px) {
  #home .splide__arrow {
    display: none !important;
  }
  .logo-box img{ 
    height: 60px;
    object-fit: contain; 
  }
}

.btn {
  transition: none !important;
}

/* Button active/focus state (global) */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-text);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
