.navbar {
  background-color: white;
}
.navbar {
  transition: background-color 0.3s ease;
}
  .social-circle {
    width: 34px;
    height: 34px;
    font-size: 16px;
    transition: 0.3s;
  }

  .social-circle:hover {
    background-color: #f8d7da;
  }
.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: darkred !important;
}
.navbar.scrolled .nav-link {
  color: darkred !important;
}
.navbar .navbar-brand img {
  width: 150px;
}
.sticky-top {
  top: 0;
  z-index: 1030;
}
.navbar .navbar-brand .logo-text {
  font-size: 20px !important;
  font-weight: bold;
  margin-left: 5px;
  color: #222;
}
.navbar .navbar-nav .nav-link {
  color: red;
  font-size: 16px;
  font-weight: 500;
}

/* Mega Menu */
.mega-menu {
  position: static;
}

.mega-menu .mega-menu-content {
  width: 100%;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  position: absolute;
  z-index: 1000;
}

.mega-menu:hover .mega-menu-content {
  display: block;
}

.mega-menu h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mega-menu .dropdown-item {
  font-size: 14px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.mega-menu .dropdown-item:hover {
  background: rgba(234, 234, 234, 0.6941176471);
}

/* === Hover underline effect for navbar links === */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: #222;
  transition: color 0.3s ease-in-out;
}

/* Page contetn css */

/* Swiper Banner */
.swiper-banner {
  width: 100%;
  height: 90vh;
  margin-top: 0;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 10;
  animation: fadeInUp 1.5s ease;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 20px;
  margin-top: 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 16px;
  }
}

.hero-section .hero-content h1 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.hero-section .swiper-slide .card {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.swiper-slide .card .card-body h5 {
  font-size: 15px;
}
.swiper-slide .card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.swiper-slide .card .card-body li {
  font-size: 14px;
}

.why-choose-us .card {
  width: 100%;
  height: 230px;
}
.why-choose-us .card .card-body h5 {
  font-size: 17px;
  font-weight: bold;
}

.cta-section h2 {
  font-size: 50px;
  color: white !important;
}
/* Swiper Pagination Dots */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #333; /* Change to your theme color */
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
  background: #6057eb !important; /* Active dot color */
  opacity: 1;
  transform: scale(1.2);
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #333; /* Arrow color */
  font-size: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #f9f0c7; /* Hover color */
  color: #222;
}

.masala-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  background-color: white;
}

.masala-card img {
  width: 100%;
  height: 120px; /* Smaller height */
  object-fit: cover;
  display: block;
}

.masala-name {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 6px;
  font-weight: 400;
  font-size: 13px; /* Smaller font */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masala-card:hover .masala-name {
  opacity: 1;
}

.tag {
  position: absolute;
  top: 0px;
  left: 0px;
  background: darkred;
  color: #fff;
  font-size: 10px; /* Smaller tag */
  font-weight: bold;
  padding: 3px 7px;
  z-index: 10;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.about-section {
  background: #f9f9f9;
  position: relative;
}

.section-subtitle {
  color: darkred;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.section-title::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: darkred;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  color: #333;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-img-wrapper:hover {
  transform: scale(1.03);
}

.choose-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.choose-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: darkred;
}

.choose-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.choose-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.testimonial-section {
  background-color: #f7f5f9;
}

.testimonial-section .section-subtitle {
  color: darkred;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.testimonial-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  position: relative;
  display: inline-block;
}

.testimonial-section .section-title::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: darkred;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.testimonial-swiper .swiper-slide {
  padding: 15px;
}

.testimonial-user {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-style: normal;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid darkred;
}

.testimonial-user h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: darkred;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: darkred;
}

.product-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: darkred;
  margin: 0;
}

.counter-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("https://i.pinimg.com/1200x/0e/80/d0/0e80d062b67f16f25fb3e455700ea545.jpg")
      no-repeat center center / cover;
  background-attachment: fixed;
}

.counter-box {
  background: linear-gradient(
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.counter-box h3 {
  font-size: 36px;
  font-weight: bold;
  color: darkred;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.process-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.process-box:hover {
  transform: translateY(-6px);
}

.step-number {
  background-color: darkred;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 14px;
  color: #555;
}

.form-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-contact-section h2 {
  font-size: 32px;
}

.cta-contact-section ul li {
  font-size: 15px;
  margin-bottom: 8px;
}
.hero-about {
  background: 
    url("https://i.pinimg.com/736x/b5/91/16/b59116bfe82ed25cbe88cd4946432e5a.jpg")
      no-repeat center center/cover;
  min-height: 50vh;
  padding: 60px 0;
}
.hero-about h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}
.hero-about p {
  font-size: 1.2rem;
  color: #f8f9fa;
}
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 2.2rem;
  }
}

/* Footer css */

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffffb3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f9f0c7;
}

.suggestion-item {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .card {
    margin-bottom: 20px;
  }
  img {
    margin-bottom: 40px;
  }
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 400;
  font-size: 10px;
  writing-mode: vertical-rl; /* Vertical Text */
  text-orientation: upright;
  transition: all 0.5s ease-in-out;
  display: none; /* Initially Hidden */
}

.chat-wrapper {
  position: fixed;
  bottom: 10px;
  left: 20px;
  z-index: 1000;
}

/* Tooltip Message */
.chat-wrapper .tooltip-message {
  position: absolute;
  top: -140px;
  left: 0;
  background: #222;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Tooltip Arrow */
.chat-wrapper .tooltip-message:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

/* Chat Button */
.chat-wrapper .chat-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #696cff, darkred);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-wrapper .chat-button:hover {
  background: linear-gradient(45deg, #a52828, #b72626);
}

/* Hide Tooltip on Hover */
.chat-wrapper .chat-button:hover ~ .tooltip-message {
  opacity: 0;
  visibility: hidden;
}

/* Chat Options */
.chat-wrapper .chat-options {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-wrapper .chat-options .chat-option {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgb(0, 174, 255), #007ab3);
  border: none;
  border-radius: 50%;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-wrapper .chat-options .chat-option:hover {
  background: linear-gradient(45deg, #008fb3, #005985);
}

.chat-wrapper .chat-options .chat-option.whatsapp-option {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.chat-wrapper .chat-options .chat-option.whatsapp-option:hover {
  background: linear-gradient(45deg, #128c7e, #075e54);
}

/* When chat options are active */
.chat-wrapper .chat-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.thumb-img.active {
  border: 2px solid #7b4397;
}
.zoom-box img {
  transition: transform 0.3s ease;
  will-change: transform;
}
