/* ---------------------------------
   Root Theme Variables
--------------------------------- */
:root {
  --primary-color: #8a5e2e;
  --secondary-color: #c79a59;
  --text-color: #333333;
  --light-text-color: #777777;
  --bg-light: #f8f8f8;

  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;

  --h2-size: 32px;
  --h6-size: 14px;
  --p-size: 16px;
}

/* ---------------------------------
   Global
--------------------------------- */
body {
  font-family: var(--body-font);
  color: var(--text-color);
  background: #ffffff;
}

img {
  transition: 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.03);
}

/* All sections equal space */
section {
  padding: 60px 0;
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
}

/* Sub headings */
.port_heading {
  font-size: 18px !important;
  text-transform: capitalize !important;
  font-weight: 500;
  text-align: center;
  color: var(--primary-color);
}

p.peragraph {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-text-color);
  line-height: 1.7;
}

/* ---------------------------------
   Navbar
--------------------------------- */
.navbar {
  padding: 10px 20px;
  background: #fff;
  border-bottom: 2px solid #eac56f;
}

.nav-logo {
  width: 60px;
}

.center-text {
  font-size: 22px;
  font-weight: bold;
  color: #6d4c16;
  font-family: "Noto Sans Devanagari", sans-serif;
  text-shadow: 1px 1px 2px #e6c56e;
  white-space: nowrap;
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  color: #6d4c16;
}


/* 🔻 Mobile Menu Styling */

/* 🔻 Mobile Menu Styling */
.mobile-menu {
  position: fixed;
  left: -260px;
  /* ⬅ Slide-in from the LEFT */
  top: 0;
  width: 260px;
  height: 100%;
  background: #fff5db;
  padding: 20px;
  box-shadow: 4px 0px 20px rgba(0, 0, 0, 0.2);
  /* Shadow flipped */
  transition: 0.4s ease-in-out;
  z-index: 1200;
}

.mobile-menu.active {
  left: 0;
  /* Bring to screen */
}

.close-menu {
  background: none;
  border: none;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: right;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 20px;
}

.mobile-nav-list li a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #4b2e09;
  text-decoration: none;
  font-weight: 600;
}

/* 🔻 Social Icons */
.mobile-social {
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}

.mobile-social .social-link {
  font-size: 22px;
  color: #4b2e09;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-social .social-link:hover {
  transform: scale(1.2);
}

/* 🔻 Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 1100;
}

.mobile-menu-overlay.active {
  display: block;
}

/* From Uiverse.io by david-mohseni */
.wrapper {
  display: inline-flex;
  list-style: none;
  width: 100%;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  padding-left: 0;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

img.nav-logo-hare {
  width: 160px;
}


/* Responsive */
@media(max-width: 768px) {
  .center-text {
    font-size: 18px;
    max-width: 50%;
    text-align: center;
  }

  .nav-logo {
    width: 48px;
  }

  img.nav-logo-hare {
    width: 100px;
  }
}


/* ---------------------------------
   Hero
--------------------------------- */
.hero-banner {
  width: 100%;
  overflow: hidden;
  padding: 0px;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop view */
.hero-desktop-banner {
  display: block;
}

.hero-mobile-banner {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-desktop-banner {
    display: none !important;
  }

  .hero-mobile-banner {
    display: block !important;
  }
}



/* ---------------------------------
   About Section
--------------------------------- */


/* 🔄 Animation */
@keyframes orbit-rotation { to { transform: rotate(360deg); } }
@keyframes counter-rotation { to { transform: rotate(-360deg); } }

/* 🌟 Orbital Container */
.orbit-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🟡 Center Logo */
.center-content {
    width: 50%;
    height: 50%;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-content img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* 🌀 Orbits */
.orbit-path {
  position: absolute;
  border-radius: 50%;
  animation: orbit-rotation 20s linear infinite;
  border: 1px dashed rgba(101, 0, 0, 0.4);
}

/* Outer Orbit */
#main-orbit {
  width: 90%;
  height: 90%;
}

/* Inner Orbit */
#reverse-orbit {
  width: 68%;
  height: 68%;
  animation-direction: reverse;
}

/* ✨ Orbit Items */
.orbit-item, .reverse-item {
  position: absolute;
  width: 12%;
  height: 12%;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #650000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: counter-rotation 20s linear infinite;
}

/* 📱 Fully Responsive */
@media(max-width: 992px) {
  .orbit-container {
    max-width: 320px;
  }
  
  .orbit-item, .reverse-item {
    font-size: 14px;
  }
}

@media(max-width: 575px) {
  .orbit-container {
    max-width: 260px;
  }
  
  .orbit-item, .reverse-item {
    font-size: 12px;
    width: 14%;
    height: 14%;
  }
  
  .center-content {
    width: 45%;
    height: 45%;
  }
  
  .center-content img {
    width: 100%;
    height: 100%;
  }
}

 
.cat_head {
  font-size: 30px;
}

/* ---------------------------------
   Best Seller Section
--------------------------------- */
.slider-wrapper {
  position: relative;
}

.product-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  height: 300px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
  transition: .3s;
}

.product-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  height: 100%;
}

.product-card:hover {
  transform: scale(1.05);
}

p.card-title {
  margin-top: 8px;
  font-weight: 600;
  font-size: 12px;
  color: var(--primary-color);
}

/* Slider Buttons */
.slider-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  width: 35px;
  height: 35px;
  z-index: 100;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #6d4c16;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

.best-seller-section button.slider-btn.personal-next {
  right: 0px;
}

.best-seller-section button.slider-btn.personal-prev {
  left: 0;
  z-index: 9;
}

.best-seller-section button.slider-btn.prev {
  z-index: 9;
}

/* Mobile slider button sizing */
@media (max-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .prev {
    left: 0px;
  }
  
  .next {
    right: 0px;
  }
}

@media (max-width: 576px) {
  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ---------------------------------
  End best Seller Section
--------------------------------- */

/* ---------------------------------
   Sub Category
--------------------------------- */

.sub-cat-box {
  padding: 10px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  transition: .25s;
}

.sub-cat-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.sub-cat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

.cat_sub {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 11px;
}

.slid img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  padding: 5px;
  border-radius: 10px;
}






/* ---------------------------------
   CTA
--------------------------------- */
.cta-section {
  background: url('../images/Background.png') no-repeat bottom center/cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0px;
  overflow: hidden;
}

/* Black Overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 50%);
  z-index: 1;
}

/* Ensure content stays above overlay */
.cta-section * {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: green;
}

.cta-section p {
  font-size: 14px;
  opacity: 1;
  letter-spacing: 1px;
  color: #000;
  font-weight: 600;
}

button {
  /* Variables */
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: green;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
}

.cta-button_top {
  display: block;
  box-sizing: border-box;
  border: 2px solid var(--button_outline_color);
  border-radius: var(--button_radius);
  padding: 0.75em 1.5em;
  background: #fff;
  color: var(--button_outline_color);
  transform: translateY(-0.2em);
  transition: transform 0.1s ease;
}

.cta-section i.fab.fa-whatsapp {
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

button:hover .cta-button_top {
  /* Pull the button upwards when hovered */
  transform: translateY(-0.33em);
}

button:active .cta-button_top {
  /* Push the button downwards when pressed */
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cta-overlay .container {
    padding-bottom: 3rem !important;
  }
}

/* ---------------------------------
   end  CTA
--------------------------------- */


/* --------------------------------
   Product Section
--------------------------------- */
/* Ensure Swiper container has defined dimensions */
.mySwiper {
  width: 100%;
  height: auto;
  /* या एक निश्चित ऊँचाई */
  padding-bottom: 40px;
  /* Pagination के लिए जगह */
}

/* Style for the individual product card */
.product-card {
  text-align: center;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image styling */
.product-image-container {
  overflow: hidden;
  margin-bottom: 15px;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Text and details */
.product-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-category {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 10px;
}

.price-section {
  margin: 10px 0;
}

.product-price {
  font-size: 1.4em;
  color: #007aff;
  /* Swiper Blue */
  font-weight: bold;
  display: block;
}

.old-price {
  font-size: 0.9em;
  color: #a0a0a0;
  text-decoration: line-through;
  margin-left: 10px;
}

/* Button styling */
.add-to-cart-btn {
  background-color: #007aff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
  background-color: #0056b3;
}





/*---------------------------------
   End Product Section
--------------------------------- */

/*---------------------------------
   Offer Section
--------------------------------- */

/* CTA Offer Section Grid */
.offer-section-wrapper {
  width: 100%;
  padding: 40px 0;
}
button.card-btn.brown {
    background-color: #f45e26;
}

.offer-section-wrapper .row {
  --bs-gutter-x: 24px;
}

/* Card Box */
.offer-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  background: #000;
}

/* Card Image */
.offer-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
  filter: brightness(55%);
  /* Darker Image for clear text */
}

/* Hover Zoom + Slight Bright */
.offer-box:hover img {
  transform: scale(1.08);
  filter: brightness(70%);
}

/* Overlay With Dark Gradient */
.offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 100%);
  transition: .4s;
}

/* On Hover — more depth */
.offer-box:hover .offer-overlay {
  background: rgba(0, 0, 0, 0.7);
}

/* Titles & Text */
.offer-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-overlay p {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Button Main Style */
.card-btn {
  background: #0f9d58;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s ease;
}

/* WhatsApp Icon */
.card-btn i {
  font-size: 16px;
  padding-right: 5px;
}

/* Hover Glow */
.card-btn:hover {
  background: #0c7f48;
  transform: translateY(-2px);
}

/* Right Card Button Variation */
.btn-offer-alt {
  background: #d4a017 !important;
}

.btn-offer-alt:hover {
  background: #b28814 !important;
}

/* Mobile Optimized */
@media (max-width: 480px) {
  .offer-box {
    height: 300px;
  }

  .offer-overlay h3 {
    font-size: 22px;
  }

  .offer-overlay p {
    font-size: 13px;
  }

  .card-btn {
    padding: 9px 20px;
    font-size: 13px;
  }
}





/*---------------------------------
   End Offer Section
--------------------------------- */


/* ---------------------------------
   Testimonial section
--------------------------------- */
.testimonial-map-section {
  background: #fff;
  padding: 80px 0;
}

/* LEFT SIDE TESTIMONIAL */
.review-area {
  background: #f8f9fa;
  padding: 20px;
}

.map-area {
  padding: 20px;
}

.testimonial-review-section {
  width: 100%;
  padding: 0px;
}


/* SWIPER SLIDER */
.reviewSwiper {
  width: 100%;
  margin: auto;
}

.review-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all .3s ease-in-out;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}



/* User Image */
.review-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #c39a4b;
  padding: 1px;
}


/* Review Text */
.review-text {
  font-size: 16px;
  color: #555;
  margin-top: 12px;
  line-height: 1.5;
}


/* Pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c39a4b !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #8b6b2a !important;
}

/* RIGHT SIDE MAP DESIGN */
.map-area iframe {
  width: 100%;
  height: 100%;
  /* lets the iframe fill its flex container on larger screens */
  min-height: 320px;
  /* sensible minimum on all viewports */
  max-height: 420px;
  /* prevents it from growing excessively tall */
  border: 0;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-map-section {
    padding: 40px 0;
  }

  .review-card {
    padding: 25px 18px;
  }

  .cat_head {
    font-size: 26px;
    margin-bottom: 20px !important;
  }

  .map-area iframe {
    height: 350px;
  }

  .testimonial-map-section .container-fluid {
    padding: 0px;
  }
}

/* Larger screens: increase the minimum iframe height for better balance */
@media (min-width: 992px) {
  .map-area iframe {
    min-height: 320px;
    max-height: 640px;
    height: 100%;
  }
}

.map-area {
  background: #f8f9fa;
  padding: 20px;
}

.reviue {
  padding: 13px 10px;
  font-size: 15px;
}


/* ---------------------------------
   end Testimonial section
--------------------------------- */
/* ---------------------------------
   Featured section
--------------------------------- */
.features-section {
  background: #f6f6f6;
}

.icon-feature {
  font-size: 40px;
  color: #000;
}

.features-section h6 {
  /* letter-spacing: 1px; */
  font-size: 14px;
}

.features-section p {
  color: #555;
  font-size: 14px;
  margin-top: 8px;
}



/* ---------------------------------
   End Featured section
--------------------------------- */


/* ---------------------------------
   Contact Us section
--------------------------------- */


/* Contact Info Section Styling */
.contact-info-section {
  background: #f3f3f3;
}

/* Card Design */
.info-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

/* Icon Wrapper */
.icon-wrap {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f9f9f9;
}

.icon-wrap i {
  font-size: 28px;
}

/* Titles & Text */
.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-link {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.icon-wrap i.fa-phone-alt {
  transform: rotate(90deg);
}


.info-subtext {
  color: #988b7a;
  font-size: 14px;
  margin-top: 3px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .info-card {
    padding: 25px 15px;
  }

  .icon-wrap {
    width: 55px;
    height: 55px;
  }

  .icon-wrap i {
    font-size: 24px;
  }
}


/* ---------------------------------
   End  Contact Us section
--------------------------------- */




/* ---------------------------------
   Footer
--------------------------------- */
footer {
  padding: 40px 0 20px !important;
  background: var(--primary-color);
  color: #fff !important;
  margin-top: 60px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer a {
  border-color: #fff !important;
  color: #fff !important;
}

footer a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color) !important;
  transition: all 0.3s ease;
}

.footer-black {
  background-color: #000 !important;
  padding: 30px 0 20px !important;
  margin: 0;
}

.footer-content {
  text-align: center;
  margin-bottom: 20px;
}

.footer-content p {
  margin: 8px 0;
  line-height: 1.6;
}

.footer-content .fw-semibold {
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer-content .text-white-50 {
  font-size: 12px;
  margin-top: 15px;
}

img.landing-logo {
  width: 80px;
  max-width: 12%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

img.landing-logo:hover {
  transform: scale(1.05);
}

span {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

span:hover {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

a {
  text-decoration: none !important;
}

/* Floating action buttons (container + individual buttons) */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
  pointer-events: auto;
}

.floating_btn {
  /* wrapper for each circular button */
  display: block;
}

.floating_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  font-size: 20px;
}

.call-float {
  background: linear-gradient(180deg, #ff7a2d, #c94c00);
}

.whatsapp-float {
  background: #25D366;
  animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* orange pulse for call button */
@keyframes pulse-orange {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 76, 0, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(201, 76, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 76, 0, 0);
  }
}

.call-float {
  animation: pulse-orange 1.6s infinite ease-in-out;
}

.floating_btn a:hover,
.floating_btn a:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  opacity: 0.98;
}

.floating_btn a:active {
  transform: translateY(-1px);
}

.floating_btn a i {
  transition: transform 0.3s ease;
}

.floating_btn a:hover i,
.floating_btn a:focus i {
  transform: scale(1.15);
}

.call-float:hover,
.call-float:focus {
  background: linear-gradient(180deg, #ff8a45, #d93f00);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #20b856;
}

/* Tablet and Smaller Desktop */
@media (max-width: 768px) {
  footer {
    padding: 35px 15px 15px !important;
  }
  
  .footer-black {
    padding: 25px 15px 15px !important;
  }
  
  .footer-content p {
    font-size: 14px;
  }
  
  img.landing-logo {
    width: 70px;
    max-width: 15%;
  }
  
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .floating_btn a {
    width: 52px;
    height: 52px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  footer {
    padding: 30px 12px 12px !important;
    margin-top: 40px;
  }
  
  .footer-black {
    padding: 20px 12px 12px !important;
  }
  
  .footer-content p {
    font-size: 13px;
    margin: 6px 0;
  }
  
  .footer-content .fw-semibold {
    font-size: 14px;
  }
  
  .footer-content .text-white-50 {
    font-size: 11px;
    margin-top: 10px;
  }
  
  img.landing-logo {
    width: 60px;
    max-width: 18%;
    margin-bottom: 12px;
  }
  
  .floating-buttons {
    right: 12px;
    bottom: max(12px, calc(12px + env(safe-area-inset-bottom)));
    gap: 8px;
  }

  .floating_btn a {
    width: 48px;
    height: 48px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  footer {
    padding: 25px 8px 8px !important;
  }
  
  .footer-black {
    padding: 15px 8px 8px !important;
  }
  
  .footer-content p {
    font-size: 12px;
    margin: 4px 0;
  }
  
  img.landing-logo {
    width: 50px;
    max-width: 20%;
    margin-bottom: 10px;
  }
  
  .floating-buttons {
    right: 10px;
    bottom: max(10px, calc(10px + env(safe-area-inset-bottom)));
    gap: 6px;
  }

  .floating_btn a {
    width: 44px;
    height: 44px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}






button.card-btn {
  appearance: none;
  background-color: #00d46f;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0,
    rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  white-space: nowrap;
}

/* Original Hover */
button .card-btn:hover {
  background-color: #f3f4f6;
  transition-duration: 0.1s;
}

/* 🔥 Shine Effect Only For card-btn */
.card-btn {
  overflow: hidden;
}

.card-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60px;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shine 1.8s infinite linear;
}

/* Animation */
@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 140%;
  }
}

a.navbar-brand.logo-nav {
    margin-right: 0px;
}

 html, body {
  overflow-x: hidden !important;
}
 
a.syner:hover {
    background: none;
}


/* end for whatsapp button pulse effect */

  

/* responsive css */

@media (max-width: 768px) {
  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .animate__fadeInLeft {
    padding-right: 12px;
  }

  .catee {
    margin-top: 5px;
    padding: 2px 5px;
  }

  img.landing-logo {
    width: 40%;
  }
  .container.d-flex.justify-content-between.align-items-center {
    padding: 0px;
  }
}