body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
}

section {
  overflow: hidden;
  border-radius: 25px;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.mini-hero-page {
  margin-top: 124px;
}

.text-common-heading {
  font-size: 60px;
  font-weight: 400;
  font-family: "The Nautigal", cursive;
  color: #3b2417;
  line-height: normal;
}

.text-common-body {
  font-size: 16px;
  font-weight: 400;
  color: #383838;
}

.text-common-body p {
  font-size: 16px;
  font-weight: 400;
  color: #383838;
}

.text-common-heading-2 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #1f1f1f;
  line-height: normal;
}

/* HEADER STYLES */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: fixed;
  padding-top: 20px;
  background-color: white;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.header.scrolled navbar {
  background-color: white;
}

.header .logo-container {
  /* display: flex; */
  align-items: center;
  /* position: relative; */
  padding: 0;
}


.header.scrolled .logo-box {
  box-shadow: none;
  background: transparent;
  padding: 10px 15px;
}

.header .logo {
  transition: all 0.3s ease;
  width: 100px;
  height: auto;
}

.header.scrolled .logo {
  height: 45px;
}

.header .navbar {
  padding: 0;
  border-radius: 10px;
}

.header .navbar-nav {
  align-items: center;
  gap: 8px;
}

.header .nav-link {
  color: #3b2417;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 18px;
  transition: all 0.3s ease;
  position: relative;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.header .nav-item.active .nav-link {
  color: #f59120;
}

.header.scrolled .nav-link {
  color: #3b2417;
  text-shadow: none;
}

.header.top-shadow {
  background-color: white;
  padding-bottom: 20px;
  padding-top: 20px;
}

.header .nav-link:hover {
  color: #f59120;
}

.header .btn-enquiry {
  background: #f59120;
  color: white;
  padding: 10px 36px;
  border-radius: 25px;
  font-weight: 400;
  font-size: 16px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
  margin-left: 10px;
}

.header .btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.header .navbar-toggler {
  border: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.header .navbar-toggler:focus {
  box-shadow: none;
}

/* .header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header.scrolled .navbar-toggler {
  background: rgba(107, 142, 35, 0.1);
}

.header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

.header .menu-toggle {
  cursor: pointer;
  color: #000;
  /* change to white if needed */
}

.header .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ACTIVE = X (Close icon) */
.header .menu-toggle.active .line1 {
  transform: translateY(20px) rotate(45deg);
}

.header .menu-toggle.active .line2 {
  opacity: 0;
}

.header .menu-toggle.active .line3 {
  transform: translateY(-20px) rotate(-45deg);
}

/* HERO SECTION STYLES */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* Overlay */

.hero-section .overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(195deg, transparent 0%, transparent 10%, rgb(1, 1, 0) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .hero-content {

  color: white;
}

.hero-section .hero-title {
  margin-bottom: 20px;
  color: white;
}

.hero-section .hero-title .line-1 {
  font-size: 58px;
  font-weight: 700;
  display: block;
}

.hero-section .hero-title .line-2 {
  font-size: 34px;
  font-weight: 500;
  display: block;
  margin-top: -10px;
}

.hero-section .play-button-wrapper {
  margin-top: 10px;
}

.hero-section .play-button {
  width: 75px;
  height: 75px;
  background: transparent;
  border: 4px solid white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.hero-section .play-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid white;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.hero-section .play-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  border-color: #6b8e23;
}

.hero-section .play-button:hover::before {
  border-color: #6b8e23;
}

.hero-section .play-button i {
  font-size: 32px;
  margin-left: 4px;
  color: white;
}

.hero-section .social-icons {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}

.hero-section .social-icon {
  width: 40px;
  height: 40px;
  background: #242020e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .social-icon:hover {
  background: #6b8e23;
  color: white;
  transform: translateX(-8px) scale(1.1);
}

.img-custom-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 576px) {}


@media (max-width: 768px) {}


@media (max-width: 992px) {

  .text-common-body {
    text-align: justify !important;
  }

  .text-common-body p {
    text-align: justify !important;
  }

  .header .navbar-nav {
    align-items: start;
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .hero-section .hero-title .line-1 {
    font-size: 35px;
    text-align: center;
  }

  .hero-section .hero-title .line-2 {
    font-size: 23px;
    text-align: center;
  }
}

.footer-main {
  padding: 60px 0 30px;
}

.footer-main .footer-logo {
  max-width: 220px;
  margin-bottom: 30px;
}

.footer-main .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-main .social-icons a {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.footer-main .social-icons a:hover {
  color: #ff8c42;
}

.footer-main .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.footer-main .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-main .contact-icon {
  width: 30px;
  height: 30px;
  background-color: #ff8c42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.footer-main .contact-icon i {
  color: white;
  font-size: 14px;
}

.footer-main .contact-text {
  color: #383838;
  line-height: 1.6;
}

.footer-main .contact-text a {
  color: #383838;
  text-decoration: none;
  font-size: 15px;
}

.footer-main .contact-text a:hover {
  color: #ff8c42;
}

.footer-main .footer-links {
  list-style: none;
  padding: 0;
  line-height: 16px;
}

.footer-main .footer-links-2 {
  list-style: none;
  padding: 0;
  line-height: normal;
}

.footer-main .footer-links li {
  margin-bottom: 10px;
}

.footer-main .footer-links a {
  color: #383838;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}


.footer-main .footer-links-2 a {
  font-size: 15px;
}

.footer-main .footer-links a:hover {
  color: #ff8c42;
}

.footer-bottom {
  background-color: #3d2817;
  color: white;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff8c42;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-main .footer-logo {
    max-width: 180px;
  }

  .footer-main .social-icons {
    justify-content: flex-start;
  }



  .footer-main .footer-title {
    font-size: 18px;
    margin-top: 30px;
  }

  .footer-main .footer-logo {
    margin-bottom: 10px;
  }

  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}