:root {
    --primary: #0F97D8;
    --primaryHover: #015b85;
    --accent: #0F97D8;
    --compColor:#474341;
    --text-dark: #222222;
    --text-light: #dcdcdc;
    --bg-light: #222222;
    --dark:#0e0805;
    --max-width: 75%;
  }
  
  * {
    box-sizing: border-box;
    border-radius: 0px;
    margin: 0;
    padding: 0;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  body {
    font-family: "Montserrat", sans-serif;
    color: var(--compColor);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;

  }
  h1,h2,h3,h4,h5 {
    font-family: Anton;
    font-weight: 100;
  }
  .container {
    max-width: var(--max-width);
    margin: auto;
  }
  
  /* Navbar */
/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  color: var(--text-light);
  z-index: 1000;
  border-top: 2px solid var(--primary);
  border-radius: 0;
  background-color: transparent;
}

/* Maintain your existing .scrolled class */
.scrolled {
  background-color: var(--bg-light);
}

/* .scrolled::after {
  content: url(../asset/nav.svg);
  position: absolute;
  bottom: -5px;
  width: 100%;
  left: 0;
  height: 30px;
  z-index: -1;
} */

/* Top bar */
.top-bar {
  background-color: var(--dark);
  color: #888;
  padding: 5px 0;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.left-info span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.right-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-social a,
.right-social button {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 4px;

}

.right-social a:hover,
.right-social button:hover {
  color: var(--primary);
}

button.share-button {
  padding: 0;
  margin: 0;
  background: none!important;
  border: none!important;
  color: inherit;
  cursor: pointer;
}


/* Main nav section */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  line-height: 15px;
}

.logo img {
  height: 80px;
  width: auto;
  margin: 2px 0;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  font-family: Anton, sans-serif;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 100;
  margin: 0 5px;
  transition: 0.3s;
  padding: 8px 15px;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: var(--primary);
}
.nav-links a.active {
  font-weight: bold;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.navA {
  color: var(--primary)!important;
}
.bookNow {
  background-color: var(--primary);
  font-weight: 100 !important;
  border-radius: 4px;
}

.bookNow:hover {
  background-color: var(--primaryHover);
}

/* Hamburger for mobile (optional) */
.hamburger {
  display: none; /* enable in media queries */
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
}
  /* Hero */
  .hero {
    position: relative;
    background: url('../asset/hero8.jpg') center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    height: 100vh;
    background-attachment: fixed;
    border-radius: 0;
    background-position: bottom;
    width: 100%;

  }
  .hero video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -0;
    overflow: hidden;
    /* display: none; */
  }
  
  .hero2 {
 background: url('../asset/hero6.jpg') center/cover no-repeat;
 height: 30vh;
 background-attachment: fixed;
  }
  .hero img {
    width: 220px;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent overlay */
    z-index: 1;
  }
/* .hero::after {
  content: url('../asset/farm.png');
  position: absolute;
  bottom:-10px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
} */
  .hero .container {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2; /* ensures content stays above the overlay */
  }
  
  .hero h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 15px 0;
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1),
                 0 0 10px rgba(0, 0, 0, 0.1),
                 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero p {
    font-size: 1.2em;
    max-width: 50%;
    margin: 0 auto;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.1),
                 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  
  .hero p i {
    color: var(--primary);
    font-weight: 600;
  }
  .hero .btn,
  .fin_btn {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    margin-top: 15px;
    display: inline-block;
  }
  
  /* Sections */
  .section {
    margin: 0;
    z-index: 5;
    position: relative;
  }
  .track {
    width: 250px;
    margin: 15px 0;
    opacity: 0.8;
  }
  .section h2 {
    /* margin-bottom: 15px; */
    font-size: 36px;
    line-height: 50px;
    padding-bottom: 15px;
    margin-bottom: 60px;
    position: relative;
  }
  .section h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 200px;
    height: 5px;
    background-color: var(--accent);
  }  
  .primary {
    color: var(--primary);
  }
  .secondary {
    color:var(--bg-light)
  }
  /* Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  form input,
  form textarea {
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  form button {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px;
    border: none;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background-color: var(--bg-light);
    color: var(--text-light);
    position: relative;
  
  }
  /* footer::before {
    content: url(../asset/ftt.svg);
    position: absolute;
    top: -30px;
    width: 100%;
    left: 0;
    height: 30px;
    z-index: 6;
  } */
  .farm {
    position: absolute;
    bottom: 50px;
    right: 12.5%;
    height: 220px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-left,
  .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  footer h3,
  footer h4 {
    margin-bottom: 30px;
    display: block;
    color: var(--primary);
    font-size: 28px;
  }
  
  .footer-left p,
  .footer-right ul li {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .footer-right {
    text-align: right;
  }
  .footer-right ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-right ul li a {

    text-decoration: none;
  }
  
  .footer-right ul li a:hover {
    text-decoration: underline;
  }
  
  .site-footer {
    background: var(--bg-light);

    padding: 90px 0 0 0;
    font-size: 0.95rem;
    line-height: 2em;
  }
  .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-social {
    text-align: right;
  }
  .footer-branding,
  .footer-links,
  .footer-social {
    flex: 1 1 250px;
  }
  .footer-links ul,
  .footer-social ul,
  .contact-list {
    list-style: none;
    padding: 0;
  }
  .footer-links a,
  .footer-branding a {

    text-decoration: none;
  }
  .footer-links a:hover,
  .footer-branding a:hover {
    text-decoration: underline;
  }
  .social-icons .material-icons {
    display: inline-block;
    margin-right: 10px;
    font-size: 35px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 90px;
    font-size: 0.85rem;
    padding: 1rem 0;
    background-color: var(--dark);
    color: var(--compColor);
  }
  
  
  footer .material-icons {
    vertical-align: middle;
    font-size: 1.2em;
    margin-right: 6px;
  }
  
.services {
  background-color: var(--bg-light);
}
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  .service-card {
    background-color: var(--text-light);
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .service-card .material-icons {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 24px;
    line-height: 30px;
  }
  
  .service-card p {
    flex: 1;
    margin-bottom: 15px;
  }
  
  .service-card .btn {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }
  
  .service-card .btn:hover {
    background-color: var(--primaryHover);
  }
  
  .map-section {
    width: 100%;
    border-radius: 0;
  }
  
  .map-section iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 0;
    z-index: 5;
  }
  /* Section full width with background */
.about-section {
    width: 100%;
    padding: 120px 0;
    background-color: var(--text-light);
    border-radius: 0;
  }
  .even {
    background-color: white;
  }
  /* .container inside section stays constrained */
  .about-section .container {
    max-width: var(--max-width); /* defined as 80% in :root */
    margin: 0 auto;
    padding: 0 20px;
    
  }
  
  /* Flexbox layout for text and image */
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    
  }
  
  /* Text block */
  .about-text {
    flex: 1;
    min-width: 280px;
  }
  .highlight {
    padding: 15px;
    color: var(--text-light);
    font-weight: bold;
    background-color: var(--compColor);
    margin-top: 30px;
  }
  /* Image block */
  .about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
    opacity: 0.8;

  }

  .large {
    /* font-size: 24px!important; */
    font-weight: 600!important;
  }
  .about-image img {
    max-width: 100%;
  }
  
  /* Paragraph spacing and readability */
  .about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
  /* Optional Tag/Keyword Pills */
.equipment-section {
    background-color: var(--bg-light)!important;
    color: var(--text-light)!important;
    border-radius: 0;
    padding: 90px 0;
}
.tag-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tag {
    display: inline-block;
    background-color: var(--compColor);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0.3;
  }

  .bookNow .material-icons {
    vertical-align: middle;
    margin-right: 6px;
    font-size: inherit;
  }
  
  .pLeft {
    padding-left: 60px;
  }
  .pRight {
    padding-right: 60px;
  }
  .contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .contact-form, .contact-details {
    flex: 1 1 45%;
  }
  
  .form-styled input, .form-styled textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 800px) {

    .logo img {
      height: 54px;

    }
    .about-section .container {
      padding: 0;
    }
    .pLeft {
      padding-left: 0px;
    }
    .pRight {
      padding-right: 0px;
    }

    :root {
      --max-width: 85%;
    }

    .hero h1 {
      font-size: 30px;
      line-height: 35px;
    }
    .top-bar {
      display: none;
    }
    .navbar .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .hero p {
      font-size: 1.4em;
      max-width: 90%;
    }
    .nav-links {
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
    }
  
    .nav-links a {
      padding: 8px 0;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .container {
      width: 90%;
    }
  }
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    position: absolute;
    top: 90px;
    right: 0;
    padding: 30px;
    text-align: center!important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  @media (max-width: 800px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      right: 0;
      flex-direction: column;
      background: var(--bg-light);
      width: 100%;
      text-align: center;
      padding: 1rem 0;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links a {
      padding: 10px 0;
      color: var(--text-light);
      text-align: center;
    }
  }
  