.heading-font-weight {
  font-weight: 400 !important;
}
.heading-font-weight-50 {
  font-weight: 450 !important;
}
.subheading-font-size {
  font-size: x-large !important;
  font-weight: 400 !important;
}
.h-10 {
  height: 170px !important;
}
.pa-10 {
  padding: 100px;
}
.p-1 {
  padding-top: 10px !important;
}
.w-10 {
  width: 100px !important;
  height: 100px !important;
}

.w-5 {
  width: 50px !important;
  height: 50px !important;
}
/* Card Styles */
.card {
  width: 100%;
  height: 600px; /* Increased from 500px to 600px */
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  perspective: 1000px; /* Create 3D effect for flip */
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip the card when hovered */
.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front and back positioning */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

/* Front side styling */
.card-front {
  color: white;
}

.card-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Back side styling */
.card-back {
  background-color: #bada55;
  color: #ffffff;
  transform: rotateY(180deg);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  letter-spacing: 0.08em;
  line-height: 1.8em;
}
.read-more-btn {
  background-color: transparent;
  color: white;
  text-decoration: underline;

  cursor: pointer;
  border: none;
  margin-top: 1rem;
  align-self: flex-start;
}

.product-description {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10; /* Show approximately 10 lines */
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}

/* Background Image */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('../../images/banana.png') no-repeat center center/cover; */
  /* filter: brightness(70%); */
}
.card-banana::before {
  background: url("../../images/banana.png") no-repeat center center/cover;
}
.card-pom::before {
  background: url("../../images/pom.jpg") no-repeat center center/cover;
}
.card-bamboo::before {
  background: url("../../images/bamboo.png") no-repeat center center/cover;
}
.card-teak::before {
  background: url("../../images/teak.webp") no-repeat center center/cover;
}
.card-lemon::before {
  background: url("../../images/lemon.png") no-repeat center center/cover;
}
.card-strawberry::before {
  background: url("../../images/strawberry.png") no-repeat center center/cover;
}
/* Card Content */
.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 20px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.card a {
  display: inline-block;
  background: #d4af37; /* Gold color */
  color: black;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.card a:hover {
  background: #b88a29; /* Darker gold */
  color: white;
}
.text-black {
  color: black;
}
.text-color {
  color: #ffff !important;
}

.mb-5 {
  margin-bottom: 70px !important;
}
.form-container {
  max-width: 500px;
  margin: 0 auto;
  /* border: 1px solid gray;
    border-radius: 10px; */
  padding: 20px;
  position: relative;
}
.header {
  margin-bottom: 30px;
}
h1 {
  /* font-size: 24px; */
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  margin-bottom: -8px !important;
  margin-top: 5px;
}
.form-row {
  margin-bottom: -10px;
}
.form-group {
  display: flex;
  gap: 20px;
}
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.required {
  color: #ff6600;
}
.submit-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-btn:hover {
  background-color: #e55500;
}
.mt-10 {
  margin-top: 20px !important;
}

.gallery-carousel-container {
  position: relative;
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.gallery-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 10px;
}

.gallery-image-container,
.gallery-description-container {
  padding: 15px;
}

.gallery-image {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
  transform: scale(1.02);
}

.description-content {
  padding: 15px;
}

.description-title {
  margin-bottom: 15px;
  color: #333;
  font-size: 25px;
}

.description-text {
  line-height: 1.6;
  color: #555;
}

/* Carousel controls */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #333;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    flex-direction: column;
  }

  .gallery-image-container,
  .gallery-description-container {
    width: 100%;
  }
}
.br-2 {
  border-radius: 20px;
}
.br-100 {
  border-radius: 200px;
}
.stats-card {
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: #f0c040;
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  animation: floatUp 4s ease-in-out;
}

@keyframes floatUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
}
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper::before,
.image-wrapper::after {
  content: "";
  position: absolute;
  top: -5%;
  left: -10%;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px solid #2f8603; /* Green Line */
  z-index: -1;
}

.image-wrapper::after {
  border: 1px solid #f4c842; /* Yellow Line */
  top: -2%;
  left: -12%;
  width: 120%;
  height: 113%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 40%;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #d4af37;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

button:hover {
  background: #b88a29;
}
.parallax-banner {
  /* background-image: url('../images/pr.jpg'); */
  height: 350px; /* Adjust height as needed */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.parallax-banner1 {
  background: white; /* Replace with your actual image */
  height: 300px; /* Adjust height as needed */
  /*margin-bottom: 100px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Black Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust opacity for darker or lighter effect */
}

/* Centered Text */
.banner-content {
  position: absolute;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); */
}
.text-white {
  color: #fff !important;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 100vh; /* Limit height to 80% of viewport height */
  overflow-y: auto; /* Add scrolling for content if needed */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* Form Styles */
#preOrderForm {
  display: flex;
  flex-direction: column;
}

#preOrderForm label {
  margin-top: 1rem;
  font-weight: 500;
}

#preOrderForm input,
#preOrderForm textarea {
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

/* Row for email and phone */
.form-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-top: 0 !important;
}

/* Districts and State in one row */
.location-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.location-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-group label {
  margin-top: 0 !important;
}
/*   
  #preOrderForm button {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
  } */

#preOrderForm button:hover {
  background-color: #0052a3;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-10 {
  margin-top: 0.525rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 1.5rem;
    max-height: 90vh; /* Slightly higher on mobile */
  }

  .form-row,
  .location-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  #preOrderForm button {
    width: 100%;
    align-self: center;
  }
}

form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0px;
}

.form-row {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: -5px;
 
}

.form-label {
  margin-bottom: -10px;
  font-weight: 500;
}

.required {
  color: #e74c3c;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #1a252f;
}

.responsive-map {
    width: 100%;
    max-width: 500px;
    height: 425px;
    border: 0;
  }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 15px;
  }

  .form-row {
    min-width: 100%;
  }
  
  .responsive-map {
      max-width: 380px;
    }
}


@media (max-width: 768px) {
  .col-1-sm {
    width: 100% !important;
  }
  .mt-2 {
    margin-top: 130px;
  }
}

#contactForm {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 15px;
}

.form-row-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row-group .form-row {
  flex: 1;
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.required {
  color: #e74c3c;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea.form-control {
  resize: vertical;
}

.submit-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #1a252f;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.success-message {
  color: #27ae60;
  font-size: 16px;
  padding: 10px;
  background-color: #eaffea;
  border-radius: 4px;
  margin-bottom: 15px;
  display: none;
  text-align: center;
}
.text-center {
  text-align: center;
}
.pa-5 {
  padding: 10px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
  #contactForm {
    padding: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row-group {
    flex-direction: column;
    gap: 15px;
  }

  .form-row-group .form-row {
    width: 100%;
  }

  .form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-btn {
    width: 100%;
    padding: 12px;
  }
  .pa-50 {
    padding-left: 50px;
    padding-right: 50px;
    /*margin-top: 50px;*/
  }
  .heading-text-size {
    font-size: 34px;
  }
}
@media screen and (min-width: 600px) {
  .pa-50 {
    padding-left: 100px;
    padding-right: 100px;
    /*margin-top: 100px;*/
  }
  .pa-min {
    padding-left: 80px !important;
    padding-right: 80px !important;
    margin-top: 20px;
  }

  .heading-text-size {
    font-size: 64px;
  }
}
.pre-order-btn {
  background-color: black !important;
  color: white !important;
}
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .mobile-order-1 {
    order: 1 !important;
  }

  .mobile-order-2 {
    order: 2 !important;
  }

  .col-2 {
    width: 100%;
  }
  .r1 {
    display: flex;
    flex-direction: column;
  }

  /* Make banner cover 100% of screen on mobile */
  #banner {
    height: 100vh !important;
    min-height: 100vh;
  }

  #banner-content.row {
    padding-top: 100px !important;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* Make banner cover 100% of screen for all devices */
#banner {
  height: 100vh !important;
  min-height: 100vh;
  position: relative;
}

#banner-content.row {
  padding-top: 100px !important;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .mobile-order-1 {
    order: 1 !important;
  }

  .mobile-order-2 {
    order: 2 !important;
  }

  .col-2 {
    width: 100%;
  }
  .r1 {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .mobile-row {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .mobile-col-2 {
    width: 50%; /* Each item takes half the width */
    padding: 5px; /* Add some padding between items */
  }

  /* Adjust icon and text size for mobile */
  .mobile-col-2 .icon {
    width: 80%;
    margin: 0 auto;
  }

  .mobile-col-2 h4 {
    font-size: 16px;
  }

  .mobile-col-2 p {
    font-size: 14px;
  }
}

/* For very small screens, stack vertically if needed */
/* @media screen and (max-width: 480px) {
  .mobile-row {
      flex-direction: column;
  }
  
  .mobile-col-2 {
      width: 100%;
  }
} */
.gr-bg {
  background: radial-gradient(
      circle at 91.81966145833333% 95.73893229166667%,
      #b4b4b4 0%,
      17.5%,
      rgba(180, 180, 180, 0) 35%
    ),
    radial-gradient(
      circle at 3.6751302083333335% 6.940104166666666%,
      rgba(151, 173, 180, 0.35) 0%,
      11.55%,
      rgba(151, 173, 180, 0) 35%
    ),
    radial-gradient(
      circle at 92.96712239583333% 9.554036458333332%,
      #ffffff 0%,
      17.5%,
      rgba(255, 255, 255, 0) 35%
    ),
    radial-gradient(
      circle at 97.31770833333333% 91.23372395833333%,
      #cccccc 0%,
      34.1%,
      rgba(204, 204, 204, 0) 55%
    ),
    radial-gradient(
      circle at 3.359375% 93.88997395833333%,
      #ffffff 0%,
      29.900000000000002%,
      rgba(255, 255, 255, 0) 65%
    ),
    radial-gradient(
      circle at 46.555989583333336% 11.50390625%,
      rgba(204, 204, 204, 0.56) 0%,
      25%,
      rgba(204, 204, 204, 0) 50%
    ),
    radial-gradient(
      circle at 51.121419270833336% 89.98697916666667%,
      #cccccc 0%,
      42%,
      rgba(204, 204, 204, 0) 70%
    ),
    radial-gradient(
      circle at 48.9013671875% 49.521484375%,
      #ffffff 0%,
      100%,
      rgba(255, 255, 255, 0) 100%
    );
}
/* Mobile Contact Button - hidden by default for desktop */
.mobile-contact-button {
  display: none;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  /* Display contact button on mobile */
  .mobile-contact-button {
    display: block;
    position: absolute;
    right: 60px; /* Position just to the left of hamburger menu */
    top: 50%;
    transform: translateY(-50%);
  }

  .mobile-contact-button a {
    display: block;
    background-color: #000;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
  }

  /* Make sure the hamburger menu stays on the far right */
  #nav-trigger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Ensure the header has proper positioning for absolute elements */
  #header .row {
    position: relative;
  }
}
