/********** Template CSS **********/
:root {
  --primary: #ff3e41;
  --secondary: #51cfed;
  --light: #f8f2f0;
  --dark: #060315;
}

.fw-medium {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 29px;
  bottom: 104px;
  z-index: 99;
  border-radius: 28px !important;
  overflow: hidden;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 60px;
  height: 60px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** whatsapp***/

.whatsapp-chat-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-tooltip {
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #333;
  animation: fadeIn 0.5s ease;
}

.whatsapp-btn {
  background-color: #25d366;
  /* WhatsApp Green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* Active nav link for dark navbar (header) - subtle pill highlight */
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--dark) !important;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 25px;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Keep hover behavior consistent with active look */
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link {
  line-height: 2.5rem;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    top: -6px;
    left: 50%;
    background: #ffffff;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/carousel-1.jpg") center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.header-transparent {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

/* Container for the background images */
.slider-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Base style for each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  /* 12 second total loop (4 seconds per image) */
  animation: imageFade 12s linear infinite;
}

/* Stagger the start time for each image */
.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 4s;
}

.slide:nth-child(3) {
  animation-delay: 8s;
}

/* Cross-fade Animation Logic */
@keyframes imageFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  /* Fade In */
  33% {
    opacity: 1;
  }

  /* Visible duration */
  41% {
    opacity: 0;
  }

  /* Fade Out */
  100% {
    opacity: 0;
  }
}

.hero-content-box {
  /* Transparent Background */

  /* The Blur Effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* Border and Shadow for depth */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Ensure the title is readable even if the image is bright */
.hero-content-box h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero-content-box h6 {
  letter-spacing: 2px;
  font-weight: 500;
}

/* Background with Spice/Farm Image Overlay */
.bg-farm-theme {
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/slider/onions.jpg");
  background-size: cover;
  background-position: center;
}

/* Semi-transparent boxes as seen in image_69a6bd.jpg */
.stat-box {
  background: rgba(255, 255, 255, 0.1);
  /* Light transparent glass effect */
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.text-primary {
  color: #e63946 !important;
  /* Adjust to match your Logo Red/Orange */
}

.bg-primary {
  background-color: #e63946 !important;
}

.dropdown-item {
  color: #ffffff;
  transition: 0.3s;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #ff3c3c;
  /*  
  color: white;
}

.dropdown-menu {
  max-height: 300px; /* Adds a scrollbar if the list is too long */
  overflow-y: auto;
}

/*** About ***/
.about-header {
  /* width: 150%; */
  /* min-height: 100vh; */
  /* Increased for a "bigger" look */
  /* padding: 15rem 0; */
  /* Added more padding to push the image boundaries */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/about-us.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  margin-bottom: 6rem;
}

/* Ensure the breadcrumb and text are clearly visible */
.about-header h1 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Fix the media query name to match .page-header */
@media (max-width: 768px) {
  .about-header {
    min-height: 50vh;
    padding: 10rem 0;
  }
}

@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/* Creates the tall, vertical oval shape */
/* Container for the Oval */
.category-oval-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  /* Increase this number to make it bigger */
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  /* Maintains the tall oval shape */
  overflow: hidden;
  border-radius: 999px;
  /* This creates the perfect oval/pill shape */
  transition: transform 0.3s ease;
  border: 5px solid #f8f9fa;
  /* Optional: adds a nice frame */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* The Image inside the Oval */
.category-oval-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the oval without distortion */
  transition: transform 0.5s ease;
}

/* Hover Effect */
.category-oval-container:hover .category-oval-img {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

/* The Search Icon Badge */
.category-icon-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3e3e;
  /* Match your red theme color */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 3px solid white;
}

.custom-tight-text {
  white-space: normal;
  word-spacing: normal;
  line-height: 1.6;
}

.text-start {
  text-align: left !important;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Product Gallery Header ***/

.gallery-header {
  width: 100%;
  /* Changed from 100vh to a fixed height or smaller percentage */
  min-height: 400px;
  /* Reduced padding significantly to shrink the vertical space */
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/Pg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; Optional: keeps image still while scrolling */

  margin-bottom: 3rem;
}

/* Ensure the breadcrumb and text are clearly visible */
.gallery-header h1 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .gallery-header {
    min-height: 250px;
    padding: 4rem 0;
  }
}

@media (min-width: 992px) {
  .gallery-header {
    max-width: 100% !important;
  }

  .gallery-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .gallery-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .gallery-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Quality ***/
/* Hero Header Background */
.Quality-header {
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/quality.png") no-repeat center center;
  background-size: cover;
}

.quality-page-wrapper {
  position: relative;
  z-index: 1;
  /* Sets the base layer */

  background-size: cover;
}

.quality-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: -1;
  /* Pushes the overlay BEHIND the content but ABOVE the background */
}

/* Timeline Central Spine styling */
.timeline-spine {
  width: 40px;
  background: linear-gradient(to bottom, #c64f14, #f8f9fa);
  border-radius: 50px;
  opacity: 0.2;
  left: 50%;
  transform: translateX(-50%);
}

/* Image Hover Effect */
.quality-img-container {
  transition: transform 0.5s ease;
  z-index: 2;
}

.quality-img-container:hover {
  transform: scale(1.05);
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .timeline-spine {
    display: none;
    /* Hide spine on mobile */
  }

  .quality-content-box {
    border-radius: 20px !important;
    /* Remove the one-sided curves on mobile */
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
  }
}

.hero-wrapper {
  height: 153vh;
}

/*** Certificate ***/
/* Hero Header Background */
.certificate-header {
  background:
    linear-gradient(rgba(6, 3, 21, 0.6), rgba(6, 3, 21, 0.6)),
    url("/img/Certificate.png") no-repeat center center;
  background-size: cover;
  margin-bottom: 6rem;
  padding: 8rem 0;
}

/* Soft White Overlay for readability */
.cert-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

/* Card Styling for Better Contrast */
.cert-card-custom {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1;
}

.cert-card-custom:hover {
  transform: translateY(-10px);
}

/* Hero Header Background - Modified for a Larger View */

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
  position: relative;
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  animation: pulse 1s ease-out 0.5s;
}

.testimonial-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border: 5px solid var(--light);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--light);
  border-color: var(--primary);
}

/*** quatation ***/
.quote-header {
  background:
    linear-gradient(rgba(6, 3, 21, 0.6), rgba(6, 3, 21, 0.6)),
    url("/img/quote.png") no-repeat center center;
  background-size: cover;

  /* Remove the fixed height and use padding to control size */
  padding: 8rem 0 !important;
  margin-bottom: 0 !important;
  /* Removes gap below the image */
  display: flex;
  align-items: center;
}

/* Optional: Make the text bigger to match the bigger image */
.quote-header h1.display-3 {
  font-size: 5rem;
  font-weight: 300;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.quote-section {
  background: url("/img/slider/chillies.jpg");
  background-size: cover;
  background-attachment: fixed;
  margin-top: 5rem !important;
  /* Forces the section to touch the header */
  padding-top: 5rem !important;
  /* Controls space above "Get a Quote" text */
}

.quote-card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.glass-input {
  background: #f1f1f1 !important;
  border: 1px solid #ccc !important;
  color: #333 !important;
  border-radius: 5px !important;
  height: 50px !important; /* Fixed height for all single-line fields */
  padding: 10px 15px !important;
}

textarea.glass-input {
  height: auto !important; /* Allow textareas to be taller */
  min-height: 120px !important;
}

/* 3. Ensure labels are consistently spaced */
.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* 4. Remove the red border shown in your image unless there is an actual error */
.glass-input:focus {
  box-shadow: none !important;
  border-color: #fe5f1e !important; /* Use your primary orange color */
}
.glass-input:not(.is-invalid) {
  border: 1px solid #ccc !important;
}

/* Smooth out the row spacing */
.quote-card-glass .row.g-4 {
  --bs-gutter-y: 1.5rem;
}
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-modal-content {
  min-width: 300px;
  border-radius: 8px;
}

/*** Contact ***/
/*** Contact Us Page Styles ***/

/* Hero Header with your uploaded image */
.contact-header {
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url("/img/contact.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 400px;
}

/* Contact Page Section */
.contact-page {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

/* Form Floating Labels Color */
.contact-form .form-floating > label {
  color: #666;
}

/* Input Focus Styling */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #007bff;
  /* Change to your primary color */
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Submit Button Hover */
.contact-form .btn-primary {
  transition: 0.5s;
  font-weight: 600;
}

.contact-form .btn-primary:hover {
  background-color: #0056b3;
  letter-spacing: 1px;
}

/* Map Container Styling */
.contact-page iframe {
  border-radius: 0 15px 15px 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-header {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    min-height: 300px;
  }

  .contact-page iframe {
    border-radius: 0 0 15px 15px;
    position: relative !important;
    height: 300px !important;
  }
}

@media (min-width: 1200px) {
  .contact-page .contact-form {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer {
  background:
    linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url(../img/map.png) center center no-repeat;
  background-size: cover;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.bg-gray {
  background-color: #f1f1f1 !important;
}

.bx-shadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.text-justify {
  text-align: justify;
}

/* Hide Google Translate Toolbar */
.goog-te-banner-frame {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Hide Google Translate Gadget */
.goog-te-gadget {
  display: none !important;
}

/* Hide the line added above the page */
.goog-tooltip {
  display: none !important;
}

/* Hide top bar notification */
body {
  top: 0 !important;
}

/* Additional Google Translate elements to hide */
.goog-te-combo {
  display: none;
}

.skiptranslate {
  display: none !important;
}

/* Remove Google Translate hover effects and styling */
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.goog-trans-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove highlight on hover */
*:hover.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Hide Google Translate tooltip on hover */
.goog-te-desktop-dir {
  display: none !important;
}

.goog-te-menu-value {
  background-color: transparent !important;
}

.goog-te-menu-value:hover {
  background-color: transparent !important;
}

/* Remove any inline styles from Google Translate */
.translated-ltr {
  background-color: transparent !important;
}

.translated-rtl {
  background-color: transparent !important;
}

/* Remove box highlights on translated content */
[data-gt-translate-attributes] {
  background-color: transparent !important;
}

/* Disable Google Translate's hover popover */
.goog-te-menu-frame {
  display: none !important;
}

/* Remove Google Translate specific hover class */
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q:hover {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Remove all Google Translate hover styling from any element */
*[class*="VIpgJd"],
*[class*="goog-te"],
*[class*="goog-trans"],
*[class*="translated-"] {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

*[class*="VIpgJd"]:hover,
*[class*="goog-te"]:hover,
*[class*="goog-trans"]:hover,
*[class*="translated-"]:hover {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Remove style attribute from Google Translate */
[style*="background-color: rgb"]:not(button):not(.btn) {
  background-color: transparent !important;
}

/* Disable Google Translate overlay */
.goog-te-bubble {
  display: none !important;
}

/* Remove translate element spans */
.notranslate {
  /* Allow normal styling */
}

/* Hide Google Translate Toolbar */
.goog-te-banner-frame {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Hide Google Translate Gadget */
.goog-te-gadget {
  display: none !important;
}

/* Hide the line added above the page */
.goog-tooltip {
  display: none !important;
}

/* Hide top bar notification */
body {
  top: 0 !important;
}

/* Additional Google Translate elements to hide */
.goog-te-combo {
  display: none;
}

.skiptranslate {
  display: none !important;
}

/* Remove Google Translate hover effects and styling */
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.goog-trans-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove highlight on hover */
*:hover.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Hide Google Translate tooltip on hover */
.goog-te-desktop-dir {
  display: none !important;
}

.goog-te-menu-value {
  background-color: transparent !important;
}

.goog-te-menu-value:hover {
  background-color: transparent !important;
}

/* Remove any inline styles from Google Translate */
.translated-ltr {
  background-color: transparent !important;
}

.translated-rtl {
  background-color: transparent !important;
}

/* Remove box highlights on translated content */
[data-gt-translate-attributes] {
  background-color: transparent !important;
}

/* Disable Google Translate's hover popover */
.goog-te-menu-frame {
  display: none !important;
}

/* Remove Google Translate specific hover class */
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q:hover {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Remove all Google Translate hover styling from any element */
*[class*="VIpgJd"],
*[class*="goog-te"],
*[class*="goog-trans"],
*[class*="translated-"] {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

*[class*="VIpgJd"]:hover,
*[class*="goog-te"]:hover,
*[class*="goog-trans"]:hover,
*[class*="translated-"]:hover {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Remove style attribute from Google Translate */
[style*="background-color: rgb"]:not(button):not(.btn) {
  background-color: transparent !important;
}

/* Disable Google Translate overlay */
.goog-te-bubble {
  display: none !important;
}

/* Remove translate element spans */
.notranslate {
  /* Allow normal styling */
}

.quality-stepper-bg {
  background-color: #c64f14;
}

.nav-banner {
  padding-top: 15rem !important;
  padding-bottom: 3rem !important;
}

.header-logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 1410px) {
  .container.d-flex.align-items-center.justify-content-between {
    padding: 0px;
    margin: 0px;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 1201px) {
  .hero-wrapper {
    height: 120vh;
  }
}

@media (max-width: 1200px) {
  .nav-item.nav-link.px-3.text-white.fw-bold.small {
    padding: 0px 8px !important;
  }

  .header-logo {
    height: 100px;
    width: 100px;
  }

  .hero-wrapper {
    height: 110vh;
  }
}
