@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&amp;family=Concert+One&amp;family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&amp;family=Winky+Rough:ital,wght@0,300..900;1,300..900&amp;display=swap');


body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-top: 50px;
}

.logo-slider img {
  object-fit: contain !important;
  width: 100%;
  aspect-ratio: 1 / 1;
}



.heading-highlight {
  color: #ffa857;
  /* Elegant yellow highlight */
  font-weight: 900;
  /* Bold premium look */
  font-size: 1.8rem;
  /* Slightly larger */
  letter-spacing: 2px;
  /* Elegant spacing */
  text-transform: uppercase;
  /* Classy uppercase */
  border-bottom: 2px solid #ffa857;
  /* Underline style */
  padding-bottom: 3px;
  display: inline-block;
}


.built {
  font-size: 70px;
}

/* Modern Title */
.hero-title-modern {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #D4AF37;
  background: linear-gradient(90deg, #ffa857, #ffea00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Paragraph */
.hero-text-modern {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  margin-top: 15px;
  font-weight: 400;
}

/* BUTTONS WRAPPER */


/* PREMIUM NEW BUTTON */
.premium-btn {
  display: inline-block;
  padding: 16px 55px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  transition: 0.35s ease;
  overflow: hidden;
}

/* Yellow Button */
.premium-btn-yellow {
  background: linear-gradient(135deg, #ffd000, #f8b800);
  color: #2e2e2e !important;
  font-weight: 400 !important;
  box-shadow: 0 8px 20px rgba(255, 200, 0, 0.25);
  padding: 10px 40px !important;
  border-radius: 10% !important;

}



/* Shine Animation */
.premium-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.premium-btn:hover::after {
  left: 130%;
}

/* HOVER RADIUS + FLOAT EFFECT */
.premium-btn:hover {
  border-radius: 30px;
  transform: translateY(-4px) scale(1.03);
}

/* ACTIVE PRESS EFFECT */
.premium-btn:active {
  transform: translateY(3px) scale(0.97);
}


/* Bubble container */
.floating-bubbles {
  position: absolute;
  inset: 0;
  overflow: cover;
  z-index: 0;
  /* behind text */
  pointer-events: none;
}

/* General bubble style */
.bubble {
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(226, 230, 173, 0.35),
      rgba(250, 248, 135, 0.15),
      rgba(217, 255, 0, 0.1));
  border-radius: 50%;
  box-shadow:
    inset -4px -6px 14px rgba(255, 255, 255, 0.9),
    inset 6px 6px 18px rgba(242, 255, 0, 0.25),
    0 0 25px rgba(242, 255, 0, 0.35);
  backdrop-filter: blur(2px);
  filter: blur(0.6px);
  animation: float-up-right 10s infinite ease-in-out;
  opacity: 0.75;
}


/* Individual bubble positions */
.b1 {
  bottom: -60px;
  left: -30px;
  animation-duration: 11s;
  animation-delay: 0s;
}

.b2 {
  bottom: -90px;
  left: 60px;
  width: 70px;
  height: 70px;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.b3 {
  bottom: -70px;
  left: 150px;
  width: 110px;
  height: 110px;
  animation-duration: 15s;
  animation-delay: 0.8s;
}

/* Animation – move up + to the right + slight rotation */
@keyframes float-up-right {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translate(80px, -180px) scale(1.15) rotate(60deg);
    opacity: 1;
  }

  100% {
    transform: translate(150px, -350px) scale(0.9) rotate(140deg);
    opacity: 0;
  }
}

/* Ensure hero-left-modern is positioned */
.hero-left-modern {
  position: relative;
  z-index: 10;
}



/* herosection css here start  */
/* HERO SECTION WITH MODERN BACKGROUND */
.main-hero-area {
  position: relative;
  padding-top: 110px !important;
 /*background-color: #ffcc66 */
  overflow: hidden;
}

/* Dark overlay for readability */
.main-hero-area::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(255, 204, 102, 1);*/
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* Soft glowing floating lights (3D feel) */
.main-hero-area::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.6), transparent 70%);
  filter: blur(60px);
  animation: floatGlow 6s infinite alternate ease-in-out;
  z-index: 0;
}

/* Floating animated shapes */
.floating-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: moveShape 12s infinite linear;
  z-index: 0;
}

/* HERO CONTENT FIX */
.main-hero-area .container {
  position: relative;
  z-index: 5;
}

/* ===========================
   HERO SECTION STYLES
   =========================== */

:root {
  --hero-title: #ffffff;
  --hero-text: #e4e4e4;

  --btn1-bg: #ffd35a;
  --btn1-shadow: #c79a10;

  --btn2-text: #ffffff;
  --btn2-border: #ffffff;
}

/* ====== HERO TITLE ====== */
.main-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--hero-title);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* ====== HERO PARAGRAPH ====== */
.main-hero-text {
  color: var(--hero-text);
  font-size: 18px;
  margin: 20px 0 30px;
  line-height: 1.7;
}


/* ===========================
   BUTTON 1 — GOLD 3D BUTTON
   =========================== */
.heroBtnPrimary {
  padding: 14px 32px;
  background: var(--btn1-bg);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  position: relative;
  transition: 0.3s ease-in-out;
  box-shadow: 0 6px 0 var(--btn1-shadow);
}

.heroBtnPrimary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 var(--btn1-shadow);
}

.heroBtnPrimary:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--btn1-shadow);
}


/* ===========================
   BUTTON 2 — OUTLINE SLIDE EFFECT
   =========================== */
.heroBtnOutline {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  color: var(--btn2-text);
  border: 2px solid var(--btn2-border);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 1;
}

.heroBtnOutline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: #ffffff;
  left: 0;
  bottom: 0;
  border-radius: 50px;
  z-index: -1;
  transition: 0.35s ease-in-out;
}

.heroBtnOutline:hover {
  color: #000;
  transform: translateY(-4px);
}

.heroBtnOutline:hover::after {
  height: 100%;
}

/* Image hover effect */
.main-hero-image {
  width: 100%;
  transition: 0.6s ease;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.3));
}

.main-hero-image:hover {
  transform: rotateY(12deg) scale(1.03);
}

/* Animations */
@keyframes floatGlow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, 40px);
  }
}

@keyframes moveShape {
  0% {
    transform: translate(-50px, 0) rotate(0);
  }

  100% {
    transform: translate(80vw, 50vh) rotate(360deg);
  }
}

/* herosection css here end  */

/* .carousel-item img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    .thumbnail-grid-wrapper {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.95);
      padding: 12px;
      border-radius: 10px;
      max-width: 95%;
      width: 100%;
      z-index: 10;
    }

    .thumbnail {
      text-align: center;
      cursor: pointer;
    }

    .thumbnail img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 6px;
      border: 2px solid transparent;
      transition: 0.3s ease;
    }

    .thumbnail.active img {
      border-color: gold;
      box-shadow: 0 0 6px rgba(247, 229, 154, 0.9);
    }

    .thumbnail span {
      font-size: 12px;
      color: #1e3a8a;
      font-weight: 500;
      display: block;
      margin-top: 4px;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .carousel-item img {
        height: 60vh;
      }

      .thumbnail img {
        height: 40px;
      }

      .thumbnail span {
        font-size: 11px;
      }
    } */

.main-hero-area {
  padding: 40px 0;
}

.main-hero-title {
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0c0c0c;
}

.main-hero-text {
  font-size: 1.10rem;
  color: #ebebeb;
  margin-bottom: 2rem;
  max-width: 550px;
}

/* Stylish Buttons */
.main-hero-btn1 {
  background: linear-gradient(135deg, #facc15, #f4b400);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(250, 197, 21, 0.4);
  transition: all 0.3s ease;
}

.main-hero-btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(250, 197, 21, 0.6);
}

.main-hero-btn2 {
  border: 2px solid #000;
  color: #000;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.main-hero-btn2:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 3D Image Styling */
.main-hero-image {
  width: 100%;
  max-width: 520px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(800px) rotateY(-5deg);
  transition: all 0.6s ease;
}

.main-hero-image:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .main-hero-title {
    font-size: 1.8rem;
  }

  .main-hero-text {
    font-size: 0.95rem;
  }

  .main-hero-image {
    height: 300px;
  }
}

/* COMMON HERO BUTTON */
.hero-btn {
  display: inline-block;
  padding: 18px 55px;
  border-radius: 50px;
  /* smooth modern pill radius */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  /* soft premium shadow */
}

/* YELLOW BUTTON */
.hero-btn-yellow {
  background: linear-gradient(135deg, #ffcc00, #f8b800);
  color: #000;
}

/* WHITE BUTTON */
.hero-btn-white {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #eee;
}

/* GLOSSY LIGHT EFFECT */
.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: 0.4s ease;
}

.hero-btn:hover::after {
  left: 150%;
}

/* PREMIUM HOVER GLOW */
.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.20);
}

/* STRONG 3D PRESS EFFECT */
.hero-btn:active {
  transform: translateY(4px) scale(0.97);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.20);
}


/* Carousel image full height */

.carousel-item img {
  width: 100%;
  /* height: 450px; */
  /* object-fit: cover; */
}

/* Thumbnail wrapper */
.thumbnail-grid-wrapper {
  position: relative;
  margin-top: -60px;
  background: rgba(255, 255, 255, 0.3);
  padding: 15px;
  border-radius: 10px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
}

/* Thumbnails */
.thumbnail {
  text-align: center;
  cursor: pointer;
  border: 1px solid #facc15;
  border-radius: 10px;
  padding: 12px;
  transition: 0.3s ease;
  background: #fff;
  /* ✅ white background box */
  height: 100%;
}

.thumbnail img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 6px;
  transition: 0.3s ease;
  background: #fff;
}

.thumbnail.active img {
  border: 2px solid gold;
  box-shadow: 0 0 6px rgba(247, 229, 154, 0.9);
}

.thumbnail span {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  display: block;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item img {
    height: 45vh;
  }

  .thumbnail img {
    height: 100px;
  }

  .thumbnail span {
    font-size: 13px;
  }

}

@media (max-width: 576px) {

  .thumbnail img {
    height: 80px;
  }

  .thumbnail span {
    font-size: 12px;

  }

}

/* Transparent background for navbar */
.custom-navbar {
  background-color: white;
  /* Transparent black */
  backdrop-filter: blur(10px);
  /* Optional: frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  /* For Safari */
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Optional shadow */
}

.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f4b400 !important;
  /* Gold */
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #f4b400;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}




.btn-warning {
  background-color: #facc15 !important;
  border: none;
}

.btn-warning:hover {
  background-color: #facc15 !important;
  color: #000;
}


/* slider start  */
/* Hero Slider Base */
#heroCarousel {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background-image: url('../img/Modern.html\ Cart\ –\ Modern\ India.png');
}

.slide-2 {
  background-image: url('../img/Buy.html\ Your\ Own\ Custom\ Cart\ –\ Designed\ Just\ for\ You!.png');
}

.slide-3 {
  background-image: url('../img/Visit.html\ &\ Experience\ Your\ Custom\ Cart\ Layout.jpg');
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 73, 73, 0.6);
  z-index: 1;
}

/* Text */
.hero-text {
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #facc15;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #eee;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/*  */

/* about  */

/* ABOUT SECTION IMPROVED */
.about-left {
  padding-right: 20px;
}

/* Subtitle */
.about-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1b8a5a;
  margin-bottom: 10px;
}

/* Main Title */
.about-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #054328, #ffa857);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 25px;
}

/* Description */
.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #022e1b;
  margin-bottom: 25px;
}

/* Info Box */
.about-info p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffa857;
}

.about-info i {
  color: #ffa857;
  margin-right: 8px;
  font-size: 20px;
}

.about-info span {
  font-weight: 700;
  color: #fff;
}

/* Phone number styling */
.about-phone {
  font-size: 22px;
  font-weight: 700;
}

.about-phone a {
  color: #ffa857;
  text-decoration: none;
  transition: 0.3s;
}

.about-phone a:hover {
  color: #ffe680;
  letter-spacing: 1px;
}

/* Contact Button */
.about-btn {
  display: inline-block !important;
  margin-top: 20px;
  padding: 12px 34px;
  border-radius: 50px;
  background: #ffa857;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.about-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6);
  color: #ebebeb;
}


.big-img {
  height: 290px;
  object-fit: cover;
  border-radius: 16px;
}

.about-section {
  background-color: #fef9f4;
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column;
  }

  .about-section .col-lg-6.d-flex {
    flex-direction: column;
  }

  .about-section .w-50 {
    width: 100% !important;
  }

  .big-img {
    height: auto;
  }
}



.about-section h2,
.about-section h4,
.about-section h5 {
  color: #111;
}

.about-section .highlight-box {
  background: linear-gradient(135deg, #facc15 0%, #fff8dc 100%);
  border: none;
  transition: transform 0.4s ease;
}

.about-section .highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-section img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-section .catalog-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.about-section .founder-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}




/* counter  */
.cm-stats-section {
  font-family: 'Poppins', sans-serif;
  background: #fef9f4;
}

.stats-box {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 20px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}



/* feature-section    */
.feature-section {
  background: url('../img/bgimgdone.webp') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
}

.feature-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
}

.feature-section h2,
.feature-section p,
.feature-section li {
  font-family: 'Poppins', sans-serif;
}

.feature-section .btn-warning {
  background-color: #dc3545;
  border: none;
  color: #fff;
}

.feature-section .btn-warning:hover {
  background-color: #b82c3c;
}

@media (max-width: 768px) {
  .feature-section {
    background-attachment: scroll;
    background-size: cover;
    text-align: center;
  }

  .feature-section img {
    margin-top: 2rem;
  }
}

/* Apna Food Cart-services  */

.buy-btn {
  background-color: #facc15 !important;
  color: #000 !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.buy-btn:hover {
  background-color: #e5b815 !important;
  color: #000 !important;
}

/* Card Content */
.card-body {
  padding-top: 40px;
  /* space for icon */
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.card-text {
  font-size: 0.95rem;
  color: #666;
}



/* hero   */
.hero-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url('../img/aboutone.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 0;
  background-attachment: fixed;
  position: relative;
}

.hero-section .small-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #eee;
  position: relative;
}

.hero-section .small-text::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #dc3545;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 4px;
}

.hero-section h1 {
  line-height: 1.2;
}

.hero-section .btn-warning {
  background-color: #facc15 !important;
  color: #000;
  border: none;
  transition: 0.3s ease-in-out;
}

.hero-section .btn-warning:hover {
  background-color: #facc15 !important;
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* how it work  */
.how-it-works {
  background-color: #fef9f4;
  font-family: 'Poppins', sans-serif;
}

.step-box {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2rem;
  color: #facc15;
  background: #f9e7d4;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.step-box:hover .step-icon {
  background: #facc15;
  color: #fff;
}


/* price  */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border-color: #facc15;
  background-color: #fffdf7;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #fff5d7 0%, #fffef3 100%);
  border: 2px solid #facc15;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.pricing-card:hover ul li {
  color: #111827;
}

.pricing-card .btn {
  transition: all 0.3s ease-in-out;
}

.pricing-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


/* f&q  */


.apnafoodcart-faq {
  background: url('../img/bgimgdone.webp') no-repeat center center / cover;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
}

.cartsmaker-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: -1;
}

.cartsmaker-faq .text-white,
.cartsmaker-faq .text-muted {
  color: #fff !important;
}

.accordion-button {
  background-color: #ffffff;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  /* transition: background 0.3s ease; */
}

.accordion-button:not(.collapsed) {
  background-color: #facc15 !important;
  color: #fff !important;
}

.accordion-item {
  border: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}




/* footer  */
.cm-footer {
  background-color: #111;
  font-family: 'Poppins', sans-serif;
}

.cm-footer a.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.cm-footer a.footer-link:hover {
  color: #facc15;
  text-decoration: underline;
}

.cm-footer .social-icon {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.cm-footer .social-icon:hover {
  color: #facc15;
  transform: scale(1.2);
}


.logo-slider img {
  width: 160px;
  margin: 0 auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.6; */
  transition: all 0.3s ease;
  object-fit: contain !important;
  /* width: 100%; */
  aspect-ratio: 1 / 1;
}



.logo-slider img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}



/* youtube video  */

/* service  */







.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #fff;
  max-width: 400px;
  width: 90%;
  padding: 30px 20px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeIn 0.4s ease;
  border: 2px solid #facc15;
}

.popup-close {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #999;
  font-weight: bold;
}

.popup-close:hover {
  color: #000;
}

.popup-box h3 {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.popup-box p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 0 10px;
  font-weight: 500;
}

.popup-actions a {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.call-btn {
  background-color: #facc15;
  /* Deep Blue */
}

.whatsapp-btn {
  background-color: #25D366;
}

.popup-actions a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 500px) {
  .popup-box h3 {
    font-size: 20px;
  }

  .popup-box p {
    font-size: 14.5px;
  }

  .popup-actions a {
    padding: 8px 18px;
    font-size: 14px;
  }
}



/* catelog  */
.catalog-card {
  background: #fef9f4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  max-width: 1140px;
  transition: all 0.3s ease-in-out;
}

.catalog-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-details {
  padding: 40px 30px;
}

.catalog-title {
  font-size: 30px;
  font-weight: 700;
}

.catalog-price {
  font-size: 22px;
  color: #ffc107;
  margin: 15px 0;
  font-weight: bold;
}

.catalog-table td {
  padding: 8px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.catalog-description {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}

.read-more-content {
  display: none;
  margin-top: 10px;
}

.read-more-btn {
  background: #ffffff;
  color: #111;
  padding: 4px 22px;
  margin-top: 13px;
  border-radius: 14px;
  font-weight: 600;
  border: 2px solid #f7c948;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.25);
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 193, 7, 0.4),
      rgba(255, 193, 7, 0.05),
      rgba(255, 193, 7, 0.4));
  transition: 0.5s;
}

.read-more-btn:hover::before {
  left: 120%;
}

.read-more-btn:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.45);
}

.whatsapp-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #ffd54f, #ffca28, #ffb300);
  border: 2px solid #ffca28;

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;

  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.3);
}

/* Shine Effect */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.5));
  transition: 0.6s ease;
}

/* Hover Effects */
.whatsapp-btn:hover::after {
  left: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  background: #000;
  color: #ffc107;
  border-color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Icon Styling */


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 768px) {
  .catalog-details {
    padding: 25px 20px;
  }
}







.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.modal-content {
  background: transparent;
  border: none;
}

.modal-content img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.btn-close {
  background-color: white !important;
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 200px;
  }
}



/* Terms & Conditions  */

.terms {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #fffcee, #ffffff);
  color: #222;
  padding: 60px 20px;
}

.terms-container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #facc15;
  animation: fadeIn 1s ease;
}

h1.terms-title {
  text-align: center;
  color: #facc15;
  font-size: 40px;
  margin-bottom: 15px;
}

.terms-description {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.terms-list {
  counter-reset: section;
  display: grid;
  gap: 25px;
}

.terms-item {
  counter-increment: section;
  background: #fff9e6;
  border-left: 6px solid #facc15;
  border-radius: 10px;
  padding: 25px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-item::before {
  content: counter(section) ".";
  position: absolute;
  top: 20px;
  left: -35px;
  font-size: 22px;
  font-weight: 600;
  color: #facc15;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .terms-container {
    padding: 25px;
  }

  h1.terms-title {
    font-size: 28px;
  }
}




/* Profile Section */



/* ---------- WRAPPER ---------- */
.cm-profile-wrap {
  position: relative;
  padding: 45px 50px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 35px;

  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  overflow: visible !important;
  /* <<< IMPORTANT */
  z-index: 1;
}

/* ---------- RESPONSIVE CENTERED BUBBLES ---------- */

/* Base bubble style */
.cm-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.95),
      rgba(250, 204, 21, 0.35),
      rgba(255, 255, 255, 0.05));
  filter: blur(3px);
  animation: floatBubbles 6s ease-in-out infinite;
  z-index: -1;
  transition: 0.3s ease;
}

/* Bubble positions centered relative to card */
.b1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 50%;
  transform: translateX(-60%);
  animation-delay: 0s;
}

.b2 {
  width: 150px;
  height: 150px;
  top: 65%;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.b3 {
  width: 90px;
  height: 90px;
  top: 35%;
  left: 70%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

/* FLOAT ANIMATION */
@keyframes floatBubbles {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate(-50%, -20px) scale(1.12);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.9;
  }
}

/* ----------- MOBILE RESPONSIVE ----------- */
@media (max-width: 768px) {

  .b1 {
    width: 110px;
    height: 110px;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .b2 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    transform: translateX(-50%);
  }

  .b3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 30%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {

  .b1 {
    width: 90px;
    height: 90px;
    top: -10px;
  }

  .b2 {
    width: 70px;
    height: 70px;
    top: 75%;
  }

  .b3 {
    width: 60px;
    height: 60px;
    top: 45%;
  }
}


/* ---------- AVATAR ---------- */
.cm-profile-avatar img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 6px;

  background: #fff;
  border: 4px solid #facc15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.45);
}

/* ---------- TEXT ---------- */
.cm-profile-details h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 8px;
  color: #333;
}

.cm-profile-details p {
  color: #444;
  font-size: 15px;
  margin: 4px 0;
  line-height: 1.5;
}

.cm-profile-details a {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- FOLLOW BUTTON ---------- */
.cm-follow-btn {
  background: #facc15;
  border: none;
  padding: 10px 32px;
  border-radius: 30px;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 20px rgba(250, 204, 21, 0.5);
}

.cm-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.6);
}


/* Video Slider */
.cm-video-slider {
  padding: 30px 15px;
}

.cm-video-slide {
  position: relative;
  overflow: hidden;
  height: 400px !important;
  border-radius: 15px;
  background: #eee;
  aspect-ratio: 9 / 16;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cm-video-slide:hover {
  transform: translateY(-5px);
}

.cm-video-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.cm-video-overlay i {
  color: #facc15 !important;
  font-size: 3rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cm-video-slide:hover .cm-video-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.cm-video-slide:hover .cm-video-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: black;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.swiper-pagination-bullet-active {
  background: #facc15 !important;
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .cm-profile-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cm-profile-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.contact-section {
  background: linear-gradient(to bottom, #e8f9ff, #ffffff);
}

/* Left Card */
.contact-card {
  background: linear-gradient(150deg, #1b8a5a, #0ab7a8);
  border-radius: 20px;
  height: 300px;
  overflow: hidden;
  position: relative;
  color: white;
}

/* Right Form */
.contact-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.form-input {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  padding-left: 0;
}

.form-input:focus {
  border-bottom-color: #1b8a5a;
  box-shadow: none;
}

/* Button */
.send-btn {
  background: #1b8a5a !important;
  color: white !important;
  border-radius: 30px !important;
  transition: 0.3s ease !important;
}

.send-btn:hover {
  background: #1b8a5a;
  transform: translateY(-3px);
}

/* Bubble Effects */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(1px);
  animation: float 8s ease-in-out infinite;
}

.bubble1 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -20px;
}

.bubble2 {
  width: 80px;
  height: 80px;
  bottom: 40px;
  right: 70px;
  animation-delay: 2s;
}

/* Floating effect */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    text-align: center;
  }

  .bubble1 {
    width: 120px;
    height: 120px;
  }

  .bubble2 {
    width: 60px;
    height: 60px;
  }
}


.feature-card {
  border-radius: 20px;
  background: #ffffff;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 45px;
  color: #1b8a5a;
  margin-bottom: 15px;
  transition: 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12);
  color: #1a784f;
}

/* soft floating background circle */
.feature-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 140, 0, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  filter: blur(10px);
  transition: .4s ease;
}

.feature-card:hover .feature-bg {
  transform: scale(1.3) translate(-10px, -10px);
}


.founder-section {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.founder-section:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 166, 0, 0.12);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #ff8c00;
}

.founder-badge i {
  margin-right: 8px;
}

.founder-icons i {
  color: #1b8a5a;
  font-size: 18px;
  margin-right: 8px;
}

.circle-bg {
  position: absolute;
  width: 180px;
  height: 380px;
  background: rgba(0, 255, 76, 0.05);
  border-radius: 50%;
  top: -40px;
  left: -40px;
  filter: blur(8px);
}


.vision-box {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.vision-box:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

.vision-title {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 166, 0, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  color: #ff8c00;
  margin-bottom: 12px;
}

.vision-title i {
  margin-right: 8px;
}

.vision-list i {
  color: #ff8c00;
  margin-right: 10px;
  font-size: 18px;
}

.vision-bg {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 136, 0, 0.10);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  filter: blur(10px);
}

.modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-list li {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b2b2b;
  padding: 8px 15px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.modern-list li i {
  font-size: 1.3rem;
  color: #ff8c00;
}

.modern-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
  border-color: #ff8c00;
}


.company-info-box {
  padding: 20px 0;
}

.heading-highlight-tittle {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  position: relative;
  display: inline-block;
}

.heading-highlight-tittle::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ffc107;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444;
  margin-top: 15px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.info-list li {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-list i {
  color: #ffc107;
  font-size: 1.2rem;
}

.contact {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

.contact i {
  color: #ffc107;
  margin-right: 8px;
}

.contact a {
  color: #000;
  text-decoration: none;
}

.contact a:hover {
  color: #ffc107;
}


/* CARD WRAPPER */
.cm-feature-card {
  background: #ffffff;
  padding: 28px 30px;
  border-radius: 20px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* 3D Hover */
.cm-feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.12),
    inset 0 0 15px rgba(255, 193, 7, 0.35);
}

/* ICON WRAPPER */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow:
    inset 0 0 12px rgba(255, 193, 7, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ICON */
.icon-wrap i {
  font-size: 28px;
  color: #f1b806;
  transition: 0.35s ease;
}

/* Hover icon scale */
.cm-feature-card:hover .icon-wrap {
  transform: scale(1.12);
  background: rgba(255, 193, 7, 0.22);
}

.cm-feature-card:hover i {
  transform: scale(1.15);
  color: #d9a000;
}

/* TEXT */
.cm-feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
}

.cm-feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


/* Card */
.contactGlassCard {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Title */
.formTitle {
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

/* Input Wrapper */
.inputGroup {
  position: relative;
  width: 100%;
}

.inputGroup input,
.inputGroup textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: 0.3s ease;
  font-size: 15px;
  outline: none;
  color: #222;
}

/* Hover Effect */
.inputGroup input:hover,
.inputGroup textarea:hover {
  border-color: #999;
}

/* Focus Animation */
.inputGroup input:focus,
.inputGroup textarea:focus {
  border-color: #1B8A5A;
  box-shadow: 0 0 10px rgba(125, 87, 255, 0.4);
}

/* Floating Label */
.inputGroup label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  transition: 0.3s ease;
  background-color: transparent;
}

/* Label on Focus */
.inputGroup input:focus+label,
.inputGroup textarea:focus+label,
.inputGroup input:not(:placeholder-shown)+label,
.inputGroup textarea:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 12px;
  color: #1B8A5A;
  background: #fff;
  padding: 0 4px;
  border-radius: 4px;
}

/* Border focus animation line */
.focusBorder {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1B8A5A, #FFEA00);
  transition: 0.3s ease;
}

.inputGroup input:focus~.focusBorder,
.inputGroup textarea:focus~.focusBorder {
  width: 100%;
}

/* Premium Button */
.neoBtn {
  background: linear-gradient(135deg, #1B8A5A, #ff9900);
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  cursor: pointer;
  width: 200px;
}

/* Button Hover */
.neoBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 255, 87, 0.35);
}

/* Button Click */
.neoBtn:active {
  transform: scale(0.96);
}




.stats-box-fresh {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px 10px;
  border-radius: 20px;
  transition: 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stats-icon-fresh {
  font-size: 38px;
  color: #1B8A5A;
  margin-bottom: 10px;
  opacity: 0.9;
}

.counter-number {
  font-size: 36px;
  font-weight: 700;
  color: #1B8A5A;
}

.counter-label {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* Hover – light & clean */
.stats-box-fresh:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(27, 138, 90, 0.18);
  /* border-color: #1B8A5A; */
}
