 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
      font-family: "Montserrat", sans-serif !important;

}
   body, html {
    overflow-x: hidden;
  }
 
.navbar-nav .nav-link {
      color: #2b4d2e !important;
      margin-right: 20px;
      font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
      color: #558a60 !important;
    }

    .brand-logo {
      height: 100px;
    }

    .btn-franchise {
      background-color: #396f2b !important;
      color: #fbd053 !important;
      border-radius: 25px !important;
      padding: 8px 20px !important;
      font-weight: 500 !important;
    }

    .btn-contact {
      background-color: #fbd053 !important;
      color: #2b4d2e !important;
      border-radius: 25px !important;
      padding: 8px 20px !important;
      font-weight: 500 !important;
    }

    .navbar-collapse {
      justify-content: space-between;
      align-items: center;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        flex-direction: column;
        text-align: center;
      }

      .navbar-collapse .navbar-nav {
        margin-top: 1rem;
      }

      .navbar-collapse .d-flex {
        margin-top: 1rem;
      }
    }


.hero-banner .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.hero-banner .container {
  z-index: 3;
}

.hero-banner .small-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-banner .main-heading {
  font-size: 60px;
  color: #fbd053;
  font-weight: bold;
}

@media (max-width: 767px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-banner .main-heading {
    font-size: 36px;
  }
}
.who-we-are-section {
  background-color: #ffffff;
  color: #1e1e1e;
}

.section-subtitle {
  color: #d49332;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section-divider .dot {
  width: 8px;
  height: 8px;
  background-color: #d49332;
  border-radius: 50%;
}

.section-divider .line {
  width: 40px;
  height: 2px;
  background-color: #d49332;
}

.section-divider .diamond {
  font-size: 18px;
  color: #d49332;
}

.custom-paragraph {
  font-size: 1.1rem;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .custom-paragraph {
    font-size: 1rem;
    padding: 0 10px;
  }

  .section-divider .line {
    width: 25px;
  }
}
.video-thumbnail {
  overflow: hidden;
  border-radius: 8px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  font-size: 20px;
}

.play-btn .circle.outer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -20px;
  left: -20px;
}

.play-btn .circle.inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  margin: 0 auto;
}

.play-btn i {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  margin-left: 5px;
}
.our-strength-section {
  background-color: #fff;
}

.decor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.decor-line .dot {
  width: 8px;
  height: 8px;
  background-color: #f4a300;
  border-radius: 50%;
}

.decor-line .line {
  width: 60px;
  height: 2px;
  background-color: #f4a300;
}

.strength-card {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.strength-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.strength-card:hover img {
  transform: scale(1.1);
}

/* dark overlay */
.strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* increase/decrease here */
  z-index: 1;
  transition: background 0.3s ease;
}

.strength-card:hover::before {
  background: rgba(0, 0, 0, 0.45);
}

.overlay-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2; /* above overlay */
  padding: 0 15px;
}

.overlay-content .icon {
  font-size: 40px;
  color: white;
}

.overlay-content p {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
  .footer-bg {
      background: url('main-food.png') no-repeat center center/cover;
      position: relative;
    }
    .footer-overlay {
      background: rgba(0, 0, 0, 0.8);
      padding: 60px 0;
    }
    .contact-card {
      background-color: #f6b909; /* yellow */
      padding: 40px;
    }
    .contact-card h2 {
      background: #000;
      color: #f6b909;
      padding: 10px 20px;
      display: inline-block;
      font-weight: bold;
    }
    .contact-card input,
    .contact-card textarea {
      border: none;
      border-bottom: 1px solid #333;
      border-radius: 0;
      background: transparent !important;
    }
    .contact-card input:focus,
    .contact-card textarea:focus {
      box-shadow: none;
    }
    .send-btn {
      background-color: #2f5d2e;
      color: #fff;
      font-weight: bold;
      padding: 10px 30px;
      border-radius: 10px;
      border: none;
    }
    .right-contact-box {
      background: #fff;
      padding: 30px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 500;
    }
    .social-icons a {
      display: inline-flex;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #fff;
      color: #000;
      align-items: center;
      justify-content: center;
      margin: 5px;
      text-decoration: none;
    }
    .form-control input::placeholder,
.form-control textarea::placeholder {
  color: #000;            /* Black placeholder text */
  opacity: 1;             /* Ensure it's fully visible */
}

.form-control input,
.form-control textarea {
  background-color: transparent !important;  /* Transparent background */
  color: #000;                    /* Ensure input text is black */
  border: none;
  border-bottom: 1px solid #000;  /* Optional bottom border for styling */
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
