/* =====================================================================
   GLOBAL / BASE / TYPOGRAPHY + SCROLL FIX
   ===================================================================== */

/* Container and Layout */
/* --- Background Animation Logic --- */
.hero-section {
    position: relative;
    /* This ensures it takes up the full browser height */
    height: 100vh; 
    width: 100%;
    overflow: hidden;
	background: #fb5c67;
}

.hero-section-inner {
    position: relative;
    /* This ensures it takes up the full browser height */
    height: 70vh; 
    width: 100%;
    overflow: hidden;
	background: #fb5c67;
}


.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Fills the 100vh of the parent */
    z-index: 1;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Force image to full height */
    
    /* CRITICAL: This prevents stretching by cropping the image to fit */
    object-fit: cover; 
    
    /* Optional: Focus the zoom/crop on the center of the image */
    object-position: center; 
}

/* Not Purple but its red -> need to change everywhere if css name is changed */
.hero-purple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #fb5c67;
    z-index: 1;
}
/* Image 1: Visible first, then fades out */
.layer-1 {
    animation: infiniteZoomFade 8s infinite ease-in-out;
}

/* Image 2: Starts hidden, fades in halfway through the cycle */
.layer-2 {
    animation: infiniteZoomFade 8s infinite ease-in-out;
    animation-delay: 4s; /* Precisely half the cycle */
}

@keyframes infiniteZoomFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    5% {
        opacity: 1; /* Fade in quickly */
    }
    45% {
        opacity: 1;
    }
    55% {
        opacity: 0; /* Fade out halfway through cycle */
    }
    100% {
        opacity: 0;
        transform: scale(1.15); /* End zoom at 1.15 */
    }
}

/* --- Badge Mobile Fixes --- */
.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px 10px;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap; 
    display: inline-flex !important;
    align-items: center;
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
    }
    .badge-icon {
        width: 20px !important;
        height: 20px !important;
    }
    .display-2 {
        font-size: 2.2rem !important;
    }
}

.hero-badge-light {
    /* Soft light background with a slight gray tint */
    background: rgba(0, 0, 0, 0.05); 
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 5px 10px;
    /* Dark text for readability on white */
    color: #333; 
    font-size: 0.9rem;
    /* Subtle dark border instead of white */
    border: 1px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap; 
    display: inline-flex !important;
    align-items: center;
    /* Optional: subtle shadow to make it pop against the white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero-badge-light {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
    }
}

/* --- Rest of Design (Overlay, Button, etc.) --- */

.hero-content-area {
    position: relative;
    z-index: 1;
}

.btn-white-pill {
    background-color: #ffffff;
    color: #2b1c50;
    padding: 6px 25px 6px 8px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth transition is key */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white-pill:hover {
    background-color: #f8f9fa; /* Very light off-white */
    color: #2b1c50;
    transform: translateY(-2px); /* Lifts the button slightly */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Deepens the shadow */
}

.btn-arrow-icon {
    background-color:#fb5c67;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {
	.badge-text {
		font-size: 8px !important;
	}
}
/* Keep words from breaking */
.wobble-word {
    display: inline-block;
    white-space: nowrap;
}

.wobble-char {
    display: inline-block;
    opacity: 0;
    filter: blur(5px);
    /* The delay is set via JavaScript below */
    animation: none; 
}

/* Triggered class */
.wobble-container.is-visible .wobble-char {
    animation: letterWobbleIn 0.4s forwards ease-out;
    animation-delay: var(--delay);
}

@keyframes letterWobbleIn {
    0% {
        opacity: 0;
        transform: translate(0, 20px) scale(0.5) skew(15deg);
        filter: blur(10px);
    }
    40% {
        opacity: 0.7;
        transform: translate(0, -5px) scale(1.1) skew(-10deg);
        filter: blur(2px);
    }
    70% {
        opacity: 1;
        transform: translate(0, 2px) scale(0.95) skew(5deg);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) skew(0deg);
        filter: blur(0px);
    }
}

* {
  box-sizing: border-box;
}


/* Section 2 */
/* General Purple Background Utility */
.bg-purple-overlay {
    background: rgba(108, 84, 160, 0.7) !important;
    position: relative;
}

/* Frosted Glass Effect Utility */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Light Text Utility (for use on dark backgrounds) */
.text-light-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Reusable Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}


html, body {
  width: 100%;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

.top-40 {
  top: 40%;
}

/* Responsive styles for mobile screens */
/* @media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.9rem; }
  h6 { font-size: 0.8rem; }
  p, div, span {
    font-size: 0.9rem;
    line-height: 1.4;
  }
} */

/* healthnable section separator */
.separator-row .col-md-3 {
  position: relative; /* Needed for absolute positioning of ::after */
}

/* Horizontal line only on mobile screens */
@media (max-width: 576px) {
  .separator-row .col-md-3:not(:last-child)::after {
    content: "";
    width: 100%;              /* full width of the column */
    height: 0.8px;              /* thin horizontal line */
    background-color: #D0D3D9;
    position: absolute;
    bottom: -12px;            /* place below the element */
    left: 0;
  }
}

.separator-row .col-md-3 {
  position: relative; /* Needed for absolute positioning of ::after */
}

/* Apply separator on screens larger than mobile */
@media (min-width: 577px) {
  .separator-row .col-md-3:not(:last-child)::after {
    content: "";
    width: 0.8px;
    height: 140%;
    background-color: #D0D3D9;
    position: absolute;
    right: -12px; /* adjust spacing as needed */
    top: 0;
  }
}

/* Mobile-only font size adjustments */
@media (max-width: 767px) {
  .carousel-caption h1 {
    font-size: 2em !important; /* smaller title on mobile */
  }
  .carousel-caption h2 {
    font-size: 1.2em !important; /* smaller subtitle */
  }
  .carousel-caption p {
    font-size: 1em !important; /* smaller description */
  }
}

/* =====================================================================
   HOME TOP BANNER (modified mobile heights)
   ===================================================================== */

.home-top-banner {
  height: 620px !important;
  position: relative;
  overflow: hidden;
}

.home-top-banner img.auto-zoom {
  width: 100%;
  height: 100%;
  object-fit: fill;          /* ← changed from fit → cover is usually better */
  object-position: center;
}

/* If you prefer to show full image without cropping (may show empty space) */
.home-top-banner img.auto-zoom.full-contain {
  object-fit: fill;
  background: #f8f9fa; /* ← optional: fill empty space nicely */
}

/* Desktop / large screens default */
@media (min-width: 992px) {
  .home-top-banner {
    height: 620px !important;
  }
}

/* Tablets and below */
@media (max-width: 991px) {
  .home-top-banner {
    height: 600px;
  }
}

/* Phones — main mobile size */
@media (max-width: 767px) {
  .home-top-banner {
    height: 400px !important;     /* ← your requested value */
    min-height: 320px;
    max-height: 420px;
    overflow: hidden;
  }
  /* Move title & subtitle noticeably higher */
  .carousel-caption {
    top: 15% !important; /* was 40% → now much higher */
    transform: translateY(0); /* reset any previous transform if present */
  }
  h1 {
    font-size: 2.1rem !important;
    margin-bottom: 0.6rem !important;
  }
  h5 {
    font-size: 1.15rem !important;
  }
  .btn-readmore {
    font-size: 0.95rem !important;
    padding: 0.6rem 1.4rem !important;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .home-top-banner {
    height: 400px !important;
    min-height: 280px;
    overflow: hidden;
  }
  .carousel-caption {
    top: 12% !important; /* even higher on tiny screens */
  }
}

/* Default positioning for large screens / desktop */
.carousel-caption {
  top: 40%;
  left: 7.5%;
  right: auto; /* prevents stretching on small screens */
  padding-right: 15px; /* small breathing room on right if needed */
  transform: translateY(-10%); /* optional: subtle vertical centering adjustment */
}

/* Tablets and smaller laptops */
@media (max-width: 991px) {
  .carousel-caption {
    top: 35%;
    left: 6%;
  }
}

/* Phones and small screens – move text noticeably higher */
@media (max-width: 767px) {
  .carousel-caption {
    top: 30% !important; /* much higher than 40% – adjust to 15–22% if needed */
    left: 5% !important;
    right: 5% !important; /* centered-ish padding */
    padding-left: 15px;
    padding-right: 15px;
    text-align: left; /* keep left-aligned or change to center if preferred */
  }
  /* Optional: make text slightly smaller so it fits nicely higher up */
  h1 {
    font-size: 2.1rem !important;
    line-height: 1.1;
  }
  h5 {
    font-size: 1.15rem !important;
  }
  .btn-readmore {
    font-size: 0.95rem !important;
    padding: 0.6rem 1.4rem !important;
  }
}

/* Very small phones (narrow screens) */
@media (max-width: 480px) {
  .carousel-caption {
    top: 30% !important; /* even higher on tiny screens */
    left: 4% !important;
    right: 4% !important;
  }
}

/* HOME BANNER END*/

/* Default styles (desktop/larger screens) */
.mobile-view {
  height: auto; /* or whatever default you prefer */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .mobile-view {
    height: 800px !important;
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
}

.navbar {
  background: white;
  position: relative;
  top: 0; /* ← Add this (or top: 0px;) – usually the main fix */
  z-index: 10;
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 55px;
}

.nav-link {
  color: #000;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: #fb5c67;
}

.text-blue {
  color: #fb5c67 !important; /* nicer modern sky blue */
}

.red-overlay {
    background: rgba(220, 53, 69, 0.30); /* #dc3545 at 30% opacity */
}

.green-overlay {
    background: rgba(40, 167, 69, 0.30); /* #28a745 at 30% opacity */
}

/* Right column with full green background */
.contact-col {
  position: absolute;
  background: #6bbd45;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0 0 0 40px;
  margin-bottom: -25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-col i {
  background: #fff;
  color: #6bbd45;
  border-radius: 50%;
  padding: 8px;
  font-size: 18px;
}

.contact-col small {
  display: block;
  font-size: 12px;
  color: #000;
}

.contact-col strong {
  color: #fff;
  font-size: 16px;
}

#pageContent {
  transition: margin-right 0.3s ease-in-out;
}

/* When offcanvas is shown */
.offcanvas.show ~ #pageContent {
  margin-right: 280px; /* same as offcanvas width */
}

/* Instead of .custom-dropdown */
.dropdown-menu {
  background-color: #fb5c67;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}

.dropdown-menu .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #15769e;
  color: #fff;
  border-radius: 4px;
}

/* Custom dropdown styling (desktop) */
.custom-dropdown {
  background-color: #6bbd45;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}

.custom-dropdown .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #5aa03a;
  color: #fff;
  border-radius: 4px;
}

/* Offcanvas: full green, centered links */
.offcanvas-green {
  background: #fb5c67;
  color: #fff;
  text-align: center;
}

.offcanvas-green .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.offcanvas-green .offcanvas-title {
  color: #fff;
  font-weight: 600;
}

.offcanvas-green .nav-link,
.offcanvas-green .toggle {
  color: #fff;
  font-weight: 700;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  width: 100%;
  text-align: start;
}



.offcanvas-green .nav-link:hover,
.offcanvas-green .toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.offcanvas-green .collapse {
  background: #fb5c67;
}

.offcanvas-green .collapse .sub-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* MENU FIX */
/* .menu-item .toggle {
	 padding-left: .5rem !important;
} */


.menu-item-has-children::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;               /* space before border starts */
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 991.98px) {

  /* Your existing styles here... */

  /* Fix for custom toggle buttons in mobile accordion */
  #mobileNav .toggle {
    width: 100% !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;   /* ← key: text left, icon right */
    padding-left: .5rem !important;
    padding-right: .5rem !important;	  
    background: transparent !important;
    border: 0 !important;
    color: inherit !important;                    /* or set your color */
    font-size: 1.1rem;                            /* adjust as needed */
  }

  /* Make sure the icon stays right-aligned and doesn't wrap */
  #mobileNav .toggle i.bi-chevron-down,
  #mobileNav .toggle i.bi-chevron-up {           /* if you rotate on open */
    margin-left: auto !important;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  /* Optional: rotate chevron when expanded (common UX) */
  #mobileNav .collapse.show + .toggle i.bi-chevron-down,
  #mobileNav .toggle[aria-expanded="true"] i.bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* If parent <li> has extra centering classes, override */
  #mobileNav .nav-item.justify-contents-center,
  #mobileNav .nav-item.justify-content-center {
    justify-content: flex-start !important;
  }
}


.offcanvas-green .collapse a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
}

.offcanvas-green .collapse a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.offcanvas-green .toggle i {
  margin-left: 0.4rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

/*==== Mobile Layout ==============*/
/* On mobile - make dropdown full width */
@media (max-width: 991px) {
  .custom-dropdown {
    width: 100%;
    border-radius: 0;
  }
  .custom-dropdown .dropdown-item {
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .contact-col {
    display: none;
  }
 .mobile-contact {
    display: block;
    margin: 10px 15px;
  }
  .mobile-contact a {
    display: block;
    width: 100%;
    background: #6bbd45;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
  }
  .mobile-contact a:hover {
    background: #5aa63c; /* darker green on hover */
    color: #fff;
  }
  .navbar-brand {
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .mobile-contact {
    display: none;
  }
}

/* Desktop dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/*================== Hero Carousel section==================================================== */
#heroCarousel .carousel-item img {
  object-fit: cover;
  height: 100vh; /* Full screen height */
}
.carousel-caption {
  z-index: 2;
}
#heroCarousel .carousel-caption {
  position: absolute;
  top: 40%;
  left: 12%;
  text-align: left;
  max-width: 600px;
}
#heroCarousel .carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
#heroCarousel .carousel-caption p {
  font-size: 1.1rem;
  color: #eee;
  margin-top: 10px;
}
.btn-custom-green {
  background: #81c341;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  transition: background 0.3s ease;
}
.btn-custom-green:hover {
  background: #5aa03a;
  color: #fff;
}
.btn-custom-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-custom-outline:hover {
  background: #fff;
  color: #000;
}
/* Arrow icon styling */
.btn-custom-outline i {
  margin-left: 8px;
  position: relative;
  top: 0; /* keeps aligned with text baseline */
  transform: rotate(0deg); /* tilt upward ~50° */
  font-size: 1rem;
  display: inline-block; /* ensures proper rotation */
}
/* Mobile adjustments */
@media (max-width: 768px) {
  #heroCarousel .carousel-item img {
    height: 70vh; /* Reduce height for small screens */
  }
  #heroCarousel .carousel-caption {
    bottom: 15%;
    left: 5%;
    max-width: 90%;
  }
  #heroCarousel .carousel-caption h1 {
    font-size: 1.6rem;
  }
  #heroCarousel .carousel-caption p {
    font-size: 1rem;
  }
  .btn-custom-green,
  .btn-custom-outline {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
/* Hide carousel arrows on mobile */
@media (max-width: 768px) {
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    display: none !important;
  }
}

/*==========================counter Section===========================================*/
.counter-section {
  margin-top: -60px; /* pull up under banner */
  position: relative;
  z-index: 5;
}
.counter-box {
  background: linear-gradient(90deg, #81c341, #5aa03a);
  color: #fff;
  border-radius: 20px 0 20px 0;
  padding: 40px 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* ensures watermark doesn’t spill out */
  position: relative;
}
.counter-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.counter-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
/* Watermark */
.counter-watermark {
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  opacity: 1; /* faint watermark effect */
  pointer-events: none; /* ignore clicks */
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 2rem;
  }
  .counter-box p {
    font-size: 0.9rem;
  }
  .counter-watermark {
    height: 70%; /* smaller watermark on mobile */
    right: 0px;
    bottom: 0 !important;
  }
}

/*==========================about Section===========================================*/
.about-img {
  width: 100%;
  margin-left: 0; /* align flush left */
}
.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover; /* keeps aspect ratio */
}
/* Right content spacing */
.about-content {
  padding-left: 60px; /* space from image */
  padding-right: 40px;
}
.about-vmv p{
    text-align:justify;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .about-img {
    margin-bottom: 30px;
  }
  .about-content {
    padding: 0 20px;
    text-align: center;
  }
}
/* Subtitle */
.section-title h3 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #485869;
  font-weight: 700;
}
.section-title h3 > span {
  color: #81c341;
  font-weight: 800;
}
.about-subtitle {
  font-size: 14px;
  color: #81c341; /* green shade */
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}
/* Main Title */
.about-title {
  font-size: 36px;
  line-height: 1.3;
  color: #485869;
}
.about-title span {
  color: #81c341; /* highlight word */
  font-weight: 700;
}
/* Paragraphs */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
/* Button */
.about-btn {
  background: #81c341;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.about-btn:hover {
  background: #5aa03a;
  color: #fff;
  transform: translateY(-3px);
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }
  .about-text {
    font-size: 15px;
  }
}

/*================Featured Section ====================================*/
/* Section Background */
.features-section {
  background-color: #f5fbf0; /* light grey */
}
/* Box wrapper */
.feature-box {
  /* padding: 30px 20px;*/
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);*/
}
.feature-box:hover {
  transform: translateY(-8px);
  /*box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);*/
}
/* Image */
.feature-img {
  max-width: 120px;
  height: auto;
}
/* Title */
.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .feature-img {
    max-width: 60px;
  }
  .feature-title {
    font-size: 16px;
  }
}

/*================Fleet Section ====================================*/
.car-fleet {
  background-color: #fff; /* Section background */
}
.fleet-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #81c341; /* Green highlight */
}
.fleet-title {
  font-size: 2.5rem;
  color: #485869;
  text-transform: uppercase;
}
.fleet-title span {
  color: #81c341; /* Green highlight */
  font-weight: 800;
}
.fleet-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85); /* softer white */
}
.fleet-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}
.fleet-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .fleet-title,
  .fleet-desc {
    text-align: center;
  }
}
/* single fleet */
.fleet-single {
  margin: 70px 0px;
}
.fleet-single .fleet-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: left;
}
.fleet-main-img {
  max-height: 400px;
  object-fit: cover;
}
.fleet-sidebar ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.related-fleets h3 {
  font-weight: 600;
}
.related-card h5 {
  font-size: 1rem;
  margin-top: 8px;
}
/* Sidebar Wrapper */
.fleet-sidebar {
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.fleet-sidebar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
/* Fleet Info List */
.fleet-info li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.fleet-info i {
  color: #81c341;
  margin-right: 10px;
  font-size: 1.3rem;
}
/* Features List */
.fleet-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fleet-features i {
  font-size: 2rem !important;
  color: #81c341 !important;
  margin-top: 3px;
}
.fleet-features h6 {
  font-weight: 600;
  font-size: 1.2rem;
}
.fleet-features p {
  font-size: 1rem;
  color: #666;
}
/* Button Style */
.fleet-btn {
  display: inline-block;
  background-color: #81c341;
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.fleet-btn:hover {
  background-color: #6cab30;
  transform: scale(1.05);
}
/* Responsive */
@media (max-width: 991px) {
  .fleet-sidebar {
    margin-top: 20px;
  }
}
.fleet-features .feature-item {
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 8px;
  border-radius: 6px;
}
.fleet-features .feature-item:hover {
  transform: translateX(5px);
  background: #f8f9fa;
}

/*================Destination Section ====================================*/
.travel-support-cards {
  margin-top: -180px;
}
/* Background image */
.travel-support-bg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
/* Subheading */
.travel-subheading {
  text-transform: uppercase;
  font-weight: 700;
  color: #81c341;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
/* Heading */
.travel-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.travel-heading .heading-white {
  color: #fff;
}
.travel-heading .heading-green {
  color: #81c341;
}
/* Description */
.travel-description {
  color: #fff;
  max-width: 500px;
  font-size: 1rem;
}
/* Responsive */
@media (max-width: 992px) {
   
  .travel-support-cards {
  margin-top: 20px;
}
  .travel-support-bg {
    height: 350px;
  }
  .travel-heading {
    font-size: 1.8rem;
    text-align: center;
  }
  .travel-description {
    max-width: 100%;
    text-align: center;
  }
  .travel-subheading {
    text-align: center;
    display: block;
  }
}
@media (max-width: 576px) {
  .travel-support-bg {
    height: 350px;
  }
  .travel-heading {
    font-size: 1.5rem;
  }
}
/* Travel Support Cards */
.travel-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}
.travel-card:hover {
  transform: translateY(-5px);
}
.travel-card-img {
  object-fit: cover;
}
/* Title inside image */
.travel-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0;
  background: rgba(0, 0, 0, 0.4); /* subtle background for readability */
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
/* Button */
.travel-btn {
  background: #81c341;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 0.75rem 2rem;
  transition: background 0.3s ease;
  display: inline-block;
}
.travel-btn:hover {
  background: #6aaa2f;
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .travel-card-img {
    height: 220px;
  }
  .travel-card-title {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 576px) {
  .travel-card-img {
    height: 180px;
  }
}

/*=================Blog==========================*/
/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}
.section-title .highlight {
  color: #81c341;
}
/* Blog Cards */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.blog-card-img {
  height: 220px;
  object-fit: cover;
}
/* Blog Body */
.blog-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
/* Button */
.blog-btn {
  background: #81c341;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 0.6rem 1.6rem;
  transition: background 0.3s ease;
}
.blog-btn:hover {
  background: #6aaa2f;
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  .blog-card-img {
    height: 180px;
  }
  .blog-title {
    font-size: 1rem;
  }
}

/*=========================home Hero section =========================*/
/* Hero Section */
.hero-section {
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.hero-title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
}
/* Button */
.hero-btn {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #fff;
  color: #000;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/*=====================================About Page========================================*/
/* Section 1: Banner */
.about-banner {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.about-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
}
.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.about-banner .content {
  position: relative;
  z-index: 2;
}
/* Section 2 */
.about-two-col img {
  border-radius: 12px;
}
/* Section 3 */
.about-vmv {
  margin: 90px 0;
  padding: 70px 0;
  background-color: #f5fbf0; /* light grey */
}
.about-vmv h3 {
  color: #81c341;
  margin-bottom: 1rem;
}
/* Section 4 */
.highlight-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.highlight-box:hover {
  transform: translateY(-5px);
}
.highlight-box img {
  height: 50px;
  margin-bottom: 15px;
}

/*======================================contact Page=========================================*/
/* Banner */
.contact-banner {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.contact-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.contact-banner .content {
  position: relative;
  z-index: 2;
}
.contact-info {
  margin: 120px 0px;
}
.contact-box {
  background: #f8f9fa; /* light background */
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  background: #ffffff;
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fb5c67; /* your theme green */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.icon-circle i {
  font-size: 28px;
  color: #fff;
}
/* Contact Info */
.contact-info h5 {
  color: #81c341;
}
/* Boxed Section */
.contact-boxed {
  position: relative;
  color: #fff;
  padding: 120px 0px;
}
.contact-boxed h4 {
  color: #81c341;
}
.contact-boxed img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-boxed .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-boxed .content {
  position: relative;
  z-index: 2;
}
.contact-boxed .contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 10px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important; /* 3D floating effect */
  position: relative;
  z-index: 3;
}
.contact-boxed .ratio {
  border-radius: 10px;
  overflow: hidden;
}
.contact-boxed form .form-control {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #ddd;
}

/*============================Floating Whatsapp=====================*/
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.whatsapp-float {
  animation: pulse 2s infinite;
}

/*============================Destination Archive /Single=====================*/
.destination-card h3 {
  color: #81c341;
  font-size: 1.5rem;
}
.destination-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-5px);
}
.destination-image {
  height: 500px;
}
.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover .destination-image img {
  transform: scale(1.1); /* zoom on hover */
}
.btn-destination {
  background-color: #81c341;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-destination:hover {
  background-color: #6aa92f;
  color: #fff;
  transform: translateY(-2px);
}
.single-destination .destination-single-image {
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.single-destination .destination-single-image:hover {
  transform: scale(1.05);
}
.single-destination .destination-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #81c341;
}
.single-destination .destination-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ===============================Fleet Archive ==============================================*/
.fleet-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fleet-image-wrapper {
  overflow: hidden;
}
.fleet-image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-image {
  transform: scale(1.1); /* Zoom effect on hover */
}
.fleet-content {
  padding: 20px;
}
.fleet-arctitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.fleet-description,
.fleet-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.fleet-btn {
  display: inline-block;
  background: #81c341;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.fleet-btn:hover {
  background: #6aa12d;
  color: #fff;
}

/* Animation on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-in-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1);
}

/*=================Services ===============================*/
/* === Services section overlay (robust) === */
.services-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #81c341; /* Green highlight */
}
.services-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #485869;
}
.services-title span {
  color: #81c341; /* highlight word */
  font-weight: 800;
}
.car-services {
  padding: 60px 0;
}
/* clickable wrapper */
.services-item {
  position: relative; /* IMPORTANT: establishes positioning context */
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
/* image */
.services-img {
  width: 100%;
  height: 300px; /* increase image size as requested */
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1; /* put image below overlay */
}
/* zoom on hover/focus */
.services-item:hover .services-img,
.services-item:focus .services-img {
  transform: scale(1.07);
}
/* overlay (hidden by default) */
.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none; /* prevent overlay blocking click until visible */
  transition: opacity 0.32s ease;
  z-index: 2; /* ensure overlay sits above image */
}
/* reveal overlay on hover/focus or when .show class is present */
.services-item:hover .services-overlay,
.services-item:focus .services-overlay,
.services-item.show .services-overlay {
  opacity: 1;
  pointer-events: auto;
}
/* excerpt text */
.services-excerpt {
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
  color: #fff;
}
/* title below the image */
.services-name {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 0.9rem;
  text-align: center;
}
/* mobile adjustments */
@media (max-width: 767px) {
  .services-img {
    height: 220px;
  }
  .services-excerpt {
    font-size: 0.9rem;
  }
}

/*===================================== Transport Archive========================= */
.transport-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.transport-card:hover {
  transform: scale(1.03);
}
.transport-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.transport-card:hover .transport-img {
  transform: scale(1.07);
}
/* Overlay with transparent background */
.transport-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* transparent dark overlay */
  padding: 15px;
  text-align: center;
}
.transport-title {
  font-size: 1.4rem; /* bigger title */
  font-weight: 700;
  margin: 0;
  color: #fff; /* white text */
  transition: color 0.3s ease;
}
.transport-card:hover .transport-title {
  color: #81c341;
}
/* Scroll Animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}
/* Single Transport Page */
.transport-single-title {
  font-size: 2rem;
  font-weight: 700;
  color: #81c341;
  text-transform: uppercase;
}
.transport-single-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}
.transport-single-image img {
  transition: transform 0.4s ease;
  border-radius: 10px;
}
.transport-single-image img:hover {
  transform: scale(1.05);
}
/* Fade-in on scroll */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}
/* Mobile Adjustments */
@media (max-width: 767px) {
  .transport-single-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .transport-single-description {
    text-align: center;
  }
}

/* ===============Single Blog ==========================*/
.single-blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.single-blog-meta span {
  font-size: 0.9rem;
}
.single-blog-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}
/* Fade animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Navigation */
.single-blog-nav a {
  text-decoration: none;
  color: #81c341;
  font-weight: 600;
}
.single-blog-nav a:hover {
  color: #6aa12d;
}
.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}
.related-card {
  text-align: center;
  transition: transform 0.3s ease;
}
.related-card:hover {
  transform: translateY(-5px) scale(1.03);
}
.related-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.related-card:hover .related-img {
  transform: scale(1.05);
}
.related-title {
  font-size: 1rem;
  margin-top: 0.9rem;
  color: #000;
  font-weight: 500;
  text-decoration: none !important;
}
.related-card a {
  text-decoration: none !important; /* remove underline */
  color: #fb5c67; /* keep same text color */
}
.related-card a:hover .related-title {
  color: #fb5c67; /* optional: hover color */
}

/*============================Destination/Attraction Flip ========================*/
.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.active .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}
.flip-card-front img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 12px;
}
.flip-card-front h5 {
  margin-top: 12px !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #81c341; /* theme color */
  text-align: center;
}
.flip-card-back {
  background: #000;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flip-card-back .flip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.flip-card-back .overlay-content {
  position: relative;
  z-index: 2;
}
.flip-card-back .btn {
  transition: transform 0.3s ease;
}
.flip-card-back .btn:hover {
  transform: scale(1.05);
}
/* Back side overlay */
.flip-card-back .overlay-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}
/* Excerpt */
.flip-card-back p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #f8f9fa; /* light text */
}
/* CTA buttons */
.flip-card-back .btn {
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
/* WhatsApp button */
.flip-card-back .btn-success {
  background-color: #81c341; /* theme green */
  border: none;
  color: #fff;
}
.flip-card-back .btn-success:hover {
  background-color: #6aa82e;
  transform: scale(1.05);
}
/* Book Now button */
.flip-card-back .btn-light {
  background-color: #fff;
  border: 1px solid #81c341;
  color: #81c341;
}
.flip-card-back .btn-light:hover {
  background-color: #81c341;
  color: #fff;
  transform: scale(1.05);
}

/*==============================footer=========================================*/
.footer .list-unstyled li {
  margin-bottom: 8px; /* space between items vertically */
}
.footer .list-unstyled li:last-child {
  margin-bottom: 0; /* remove extra space at the end */
}
/* Footer Nav Links */
.footer .list-unstyled li a {
  color: #fff; /* default link color (adjust as per your footer background) */
  text-decoration: none !important;
  transition: color 0.3s ease;
}
/* Hover State */
.footer .list-unstyled li:hover {
  color: #81c341; /* green on hover */
}
/* Footer contact links */
.footer-link {
  color: #212529; /* visible text */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ───────────────────────────────────────
   Base state – elements start hidden / transformed
   ─────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); /* smooth easing */
  will-change: opacity, transform; /* better performance */
}
/* ───── Variants ───── */
.fade-in-from-left {
  transform: translateX(-80px);
}
.fade-in-from-right {
  transform: translateX(80px);
}
.fade-in-from-up {
  transform: translateY(60px);
}
.zoom-in {
  transform: scale(0.85);
  opacity: 0.4;
}
/* Auto zoom-in animation Home Banner */
@keyframes autoZoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.auto-zoom {
  animation: autoZoomIn 7s ease-in-out forwards;
}
/* ───── Active / visible state ───── */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none !important; /* reset everything */
}
/* Optional: delay per element (use --delay custom property) */
.banner:nth-child(1) { --delay: 0.1s; }
.banner:nth-child(2) { --delay: 0.25s; }
.banner:nth-child(3) { --delay: 0.4s; }
.animate-on-scroll {
  transition-delay: var(--delay, 0s);
}

/* Carousel Home Banner slider*/
#topBannerCarousel {
  cursor: grab;
}
#topBannerCarousel:active {
  cursor: grabbing;
  user-select: none;
}

/* Benifits cards css */
.benefit-card {
    background-color: #fff; /* fallback color */
    border-radius: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}
.benefit-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.benefit-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.22); /* adjust opacity 0.7–0.9 */
    /* Alternative dark tint: rgba(15, 25, 60, 0.68) */
    z-index: 2;
}
.benefit-card-content {
    z-index: 3;
    padding: 1.5rem;
    min-height: 180px; /* optional – helps consistency */
}
/* Optional: stronger hover on background */
.benefit-card:hover .benefit-card-bg {
    transform: scale(1.06);
    transition: transform 0.45s ease;
}

/* ROCK ITEM */
.rock-item {
  display: inline-block; /* or block/flex/grid as needed */
  transform-origin: center center;
  transform: rotate(0deg); /* explicit starting point */
}
/* The rocking keyframes – plays forward once */
@keyframes rock-shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-2deg); } /* left up, right down */
  40% { transform: rotate(3deg); } /* left down, right up */
  60% { transform: rotate(-1deg); }
  80% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}
/* Base animation class */
.rock-item.animate {
  animation: rock-shake 0.9s ease-in-out forwards;
}
/* Tiny delay offsets – they all start very close together */
.rock-item:nth-child(1) { animation-delay: 0s; }
.rock-item:nth-child(2) { animation-delay: 0.07s; }
.rock-item:nth-child(3) { animation-delay: 0.14s; }
.rock-item:nth-child(4) { animation-delay: 0.21s; }
.rock-item:nth-child(5) { animation-delay: 0.28s; }
.rock-item:nth-child(6) { animation-delay: 0.35s; }
/* continue pattern if you have more items – step ≈ 0.07s */

/* Read More Button */
.btn-anim-liquid {
  position: relative;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.liquid {
  background: linear-gradient(white 0 0) no-repeat /* ← changed to white */
    calc(200% - var(--p, 0%)) 100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}
.btn-anim-liquid:hover {
  --p: 100%;
  --t: 0.3s;
  color: black; /* ← text becomes black when fill is complete */
}

/* Cards Anim */
.glass {
  transition: background 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1); /* default look */
}
.glass {
  position: relative;
  width: 100%;
  height: 180px; /* or min-height: 180px; if content varies */
  background: linear-gradient(#ffffff33, transparent); /* slightly more opaque for testing */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: perspective(800px) rotateY(calc(var(--r) * 1deg));
  overflow: visible; /* ← changed to visible for testing – helps debug */
}
/* Force icon visibility – remove filter if your icons are already colored */
.glass img {
  width: auto;
  height: 75px; /* keep your size */
  object-fit: contain;
  filter: none !important;
  z-index: 2;
  position: relative;
  top: -25px;
  /* Key fix: counter-rotate the icon to match the card's tilt */
  transform: perspective(800px) rotateY(calc(var(--r) * 1deg));
}
/* Label – force it visible, better positioning */
.glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 12px; /* closer to bottom edge */
  left: 10px;
  right: 10px;
  height: auto;
  min-height: 40px;
  padding: 8px 12px;
  color: black !important; /* pure black text */
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  opacity: 1 !important; /* force show */
  transform: none !important;
}
/* Hover – subtle enhancement */
.glass:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.06);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Large Accordian animation */
/* Change expanded/active header background & text */
.accordion-button:not(.collapsed) {
  background-color: #fb5c67 !important; /* light blue-ish – change to whatever you want */
  color: white !important; /* or dark text: #212529 */
}

/* Base button styles (renamed from .btn to .glow-btn) */
.glow-btn {
  position: relative;
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  min-width: 200px;
  z-index: 1;
}

/* Main neon effect wrapper (renamed from .neon-pulse to .neon-glow) */
.neon-glow {
  background: white;
  border: 2px solid white; /* cyan neon */
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  overflow: visible;
}

/* Pulse rings (renamed pseudo-elements classes not needed — kept logic) */
.neon-glow::before,
.neon-glow::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid white;
  border-radius: inherit;
  animation: ring-expand 2s ease-out infinite;
  opacity: 0;
}
.neon-glow::after {
  animation-delay: 1s;
}
/* Renamed animation for clarity */
@keyframes ring-expand {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Cards Shuffle Cards */
*, ::before, ::after {
  margin: 0;
  box-sizing: border-box;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}
/* Hide radio buttons */
input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.rc-carousel {
  --img-w: 260px; /* desktop base size */
  --duration: 400ms;
  --img-easing: cubic-bezier(0.34, 1.56, 0.64, 1);
  width: min(100% - 1.5rem, 1100px);
  margin-inline: auto;
  display: grid;
  counter-reset: my-counter;
  padding: 1.5rem 0;
}
.rc-item {
  --cards-grid-cols: auto;
  --cards-grid-rows: var(--img-w) auto;
  --cards-grid-gap: 1.5rem;
  --cards-footer-justify: center;
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  grid-template-columns: var(--cards-grid-cols);
  grid-template-rows: var(--cards-grid-rows);
  gap: var(--cards-grid-gap);
  pointer-events: none; /* ← prevents interaction with inactive cards */
}
.rc-photo {
  width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;
  rotate: var(--angle, 0deg);
  border-radius: 12px;
  border: 3px solid #fff;
  overflow: hidden;
  transform-origin: center;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0 0 0 / 0.13);
  transition: box-shadow var(--duration) ease;
}
.rc-photo:hover {
  box-shadow: 0 8px 28px rgba(0 0 0 / 0.17);
}
/* ────────────────────────────────────────
   IMPORTANT: Prevent text overlap
───────────────────────────────────────── */
.rc-info {
  visibility: hidden;
  opacity: 0;
  transition: none; /* no transition when disappearing */
  pointer-events: none;
}
input:checked + .rc-item .rc-info {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--duration) ease-out,
              translate var(--duration) ease-out;
  transition-delay: var(--data-delay, 0.15s);
}
.rc-info {
  display: grid;
  gap: 0.9rem;
  max-width: 100%;
}
.rc-info > .rc-counter {
  opacity: var(--data-opacity, 0);
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.rc-info > h2 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin: 0;
}
.rc-info > p {
  font-size: 0.94rem;
  line-height: 1.42;
  margin: 0;
}
.rc-info > footer {
  display: flex;
  justify-content: var(--cards-footer-justify);
  gap: 1rem;
  margin-top: 0.5rem;
}
.rc-info > footer label {
  margin-block-start: auto;
  cursor: pointer;
  pointer-events: var(--card-events, none);
  opacity: var(--data-opacity, 0);
  transition: all var(--duration) ease-in-out;
  color: var(--label-clr-txt, #222);
  background-color: var(--label-clr-bg, #f0f0f0);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0 0 0 / 0.1);
}
/* ────────────────────────────────────────
   DESKTOP / TABLET (≥ 600px)
───────────────────────────────────────── */
@media (min-width: 600px) {
  .rc-carousel {
    --img-w: 320px;
    padding: 2.5rem 0;
  }
  .rc-item {
    --cards-grid-cols: var(--img-w) auto;
    --cards-grid-rows: auto;
    --cards-grid-gap: 4.5rem;
    --cards-footer-justify: start;
  }
  .rc-photo {
    width: 380px;
    height: 380px;
    border-radius: 16px;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0 0 0 / 0.12);
  }
  .rc-photo:hover {
    box-shadow: 0 12px 40px rgba(0 0 0 / 0.18);
  }
  .rc-info {
    gap: 1.25rem;
  }
  .rc-info > .rc-counter {
    font-size: 1rem;
  }
  .rc-info > h2 {
    font-size: 1.6rem;
  }
  .rc-info > p {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .rc-info > footer label {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}
/* ────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
input:nth-of-type(1):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-1 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(2):checked) > .rc-photo,
input:nth-of-type(2):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-2 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(3):checked) > .rc-photo,
input:nth-of-type(3):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-3 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(4):checked) > .rc-photo,
input:nth-of-type(4):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-4 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(5):checked) > .rc-photo,
input:nth-of-type(5):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-5 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(6):checked) > .rc-photo,
input:nth-of-type(6):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-6 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
.rc-item:has(~ input:nth-of-type(7):checked) > .rc-photo,
input:nth-of-type(7):checked + .rc-item ~ .rc-item > .rc-photo {
  animation: straighten-img-7 calc(var(--duration) * 2) forwards;
  animation-timing-function: var(--img-easing);
}
@keyframes straighten-img-1 { 50% { --angle: 0deg; } }
@keyframes straighten-img-2 { 50% { --angle: 0deg; } }
@keyframes straighten-img-3 { 50% { --angle: 0deg; } }
@keyframes straighten-img-4 { 50% { --angle: 0deg; } }
@keyframes straighten-img-5 { 50% { --angle: 0deg; } }
@keyframes straighten-img-6 { 50% { --angle: 0deg; } }
@keyframes straighten-img-7 { 50% { --angle: 0deg; } }
input:checked + .rc-item > .rc-photo {
  animation: reveal-img calc(var(--duration) * 2) forwards;
}
@keyframes reveal-img {
  50% {
    translate: -150% 0;
    --angle: 0deg;
  }
}
/* ────────────────────────────────────────
   Z-INDEX / STACKING
───────────────────────────────────────── */
.rc-item {
  z-index: -1;
}
input:checked + .rc-item {
  z-index: 10 !important;
  pointer-events: auto; /* ← active card becomes interactive */
}
.rc-item:has(+ input:checked) { z-index: 9; }
.rc-item:has(+ input + .rc-item + input:checked) { z-index: 8; }
.rc-item:has(+ input + .rc-item + input + .rc-item + input:checked) { z-index: 7; }
.rc-item:has(+ input + .rc-item + input + .rc-item + input + .rc-item + input:checked) { z-index: 6; }
.rc-item:has(+ input + .rc-item + input + .rc-item + input + .rc-item + input + .rc-item + input:checked) { z-index: 5; }
/* ────────────────────────────────────────
   ACTIVE CARD STATE
───────────────────────────────────────── */
input:checked + .rc-item {
  --data-opacity: 1;
  --data-y: 0;
  --data-delay: calc(var(--duration) * 0.55);
  --card-events: auto;
  transition: z-index 0s 300ms;
}
input:checked:focus-visible + .rc-item > .rc-info > footer label,
.rc-info > footer label:hover {
  --label-clr-txt: white;
  --label-clr-bg: steelblue;
  box-shadow: 0 4px 12px rgba(70, 130, 180, 0.35);
}

/* Default (mobile first) */
.stat-number {
  font-size: 24px; /* smaller for mobile */
  font-weight: bold;
  color: #f06a6a;
  line-height: 1;
}
.stat-label {
  font-size: 14px; /* smaller for mobile */
  color: #f06a6a;
  margin-top: 5px;
  white-space: nowrap;
}
/* Medium screens (≥768px) */
@media (min-width: 768px) {
  .stat-number {
    font-size: 32px;
  }
  .stat-label {
    font-size: 16px;
  }
}
/* Large screens (≥1200px) */
@media (min-width: 1200px) {
  .stat-number {
    font-size: 40px; /* matches your original inline style */
  }
  .stat-label {
    font-size: 18px; /* matches your original inline style */
  }
}

/* Horizontal Scroll Issue Hack fix*/
body {
  overflow-x: hidden;
}

/* Footer Custom Carousel */
.custom-solutions-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px; /* space for arrows */
}
.custom-solutions-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
  scrollbar-width: none; /* hide scrollbar Firefox */
  gap: 1.7rem; /* g-4 equivalent */
  scroll-behavior: smooth;
}
.custom-solutions-carousel::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome/Safari */
}
.carousel-card {
  flex: 0 0 auto;
  width: 100%; /* mobile: 1 card */
  scroll-snap-align: start;
  max-width: 300px; /* optional: prevent cards from becoming too wide */
}
@media (min-width: 768px) {
  .carousel-card {
    width: 50%; /* 2 cards visible on md */
  }
}
@media (min-width: 992px) {
  .carousel-card {
    width: 25%; /* 4 cards visible on lg+ */
  }
}
/* Arrows - positioned over the track */
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: none;
  padding: 0;
}
.custom-prev { left: 0; }
.custom-next { right: 0; }
/* Dots */
.custom-indicators {
  text-align: center;
  margin-top: 1.5rem;
}
.custom-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.custom-dot.active,
.custom-dot:hover {
  background: #007bff; /* or your theme color */
}



/* INNER PAGES */
.card .icon-container {
    height: 70px;               /* fixed height for all icons */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem !important;  /* or 0.75rem / 12px */
}

.card .icon-container img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;        /* prevents stretching */
}

        .main-title {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #555;
        }

        .service-item {
            padding: 12px 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .arrow {
            color: #14b8a6;
            font-weight: bold;
            margin-right: 8px;
            font-size: 1.3rem;
        }

        .number {
            color: #666;
            font-size: 0.95rem;
        }

        .phone-circle {
            width: 80px;
            height: 80px;
            background-color: #14b8a6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.9rem;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 12px rgba(13,110,253,0.3);
        }

        .phone-text {
            font-size: 1.6rem;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .img-fit {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* Mega Solutions Banner - Specific & Safe Classes */
/* 1. The Exact Gradient from your Screenshot */
.main-card-gradient {
    background: linear-gradient(to right, #fb5c67, #f38991, #d4d8d9);
    min-height: 480px;
    border: none;
}

/* 2. Custom Tabs: No background, underline when active */
.custom-tab {
    color: #6c757d !important;
    background: transparent !important;
    border: none !important;
    font-weight: 500;
    padding: 10px 0 !important;
    transition: 0.3s;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
}

.custom-tab.active {
    color: #fb5c67 !important;
    font-weight: 700 !important;
    border-bottom: 3px solid #fb5c67 !important;
}

/* 3. Book a Demo Button: Matching your "Curengo" style */
.demo-btn {
    padding: 8px 24px 8px 8px !important;
    font-weight: 700;
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.icon-circle {
    background: #fb5c67;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* 4. Image Styling: Smaller with Shadow Box */
.hero-img { 
    width: 85%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 2rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Strong Shadow Box */
    background: white; /* Ensures shadow pops if image has transparency */
}

/* 5. Bullet List Icons */
.custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
}

.custom-list i {
    color: #46d8d5;
    margin-right: 10px;
    font-size: 1.2rem;
}

.opacity-90 { opacity: 0.9; }

/* Updated Image Style: Smaller size and Shadow Box */
.hero-img { 
    width: 80%; /* Reduced size */
    height: 300px; /* Adjusted height for smaller profile */
    object-fit: cover;
    border-radius: 1.5rem !important; /* Curved borders */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* Shadow box */
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
}



.glass-card {
    transition: all 0.3s ease-in-out;
}
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18) !important;
}
/* Ensure controls are visible on small screens */
@media (max-width: 1200px) {
    .carousel-control-prev { left: -20px; }
    .carousel-control-next { right: -20px; }
}


.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.blog-card .transition-transform {
    transition: transform 0.5s ease;
}

.blog-card:hover .transition-transform {
    transform: scale(1.1);
}

.object-fit-cover {
    object-fit: cover;
}


.zoom-block {
  transition: transform 0.3s ease; /* Controls the speed and feel */
}

.zoom-block:hover {
  transform: scale(1.05); /* 1.1 for 10%, 1.05 for 5% */
}