:root {
    --primary: #0F97D8;
    --primaryHover: #015b85;
    --accent: #0F97D8;
    --compColor:#474341;
    --text-dark: #222222;
    --text-light: #dcdcdc;
    --bg-light: #222222;
    --dark:#0e0805;
    --max-width: 1300px;
  }
  
  * {
    box-sizing: border-box;
    border-radius: 4px;
    margin: 0;
    padding: 0;
  }
  a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  body {
    font-family: "Roboto", sans-serif;
    color: var(--compColor);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;

  }
  h1,h2,h3,h4,h5 {
    font-family: Montserrat;
    font-weight: bold;
  }
  h5 {
    font-size: 18px;
  }
  .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);
}


/* Top bar */
.top-bar {
  background-color: var(--dark);
  color: #888;
  padding: 5px 0;
  font-weight: 500;
  font-size: 0.8em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar .material-icons {
  font-size: 20px;
}
.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: 60px;
  width: auto;
  margin: 2px 0;
}

.nav-links {
  display: flex;
  gap: 5px;
}

.nav-links a {
  /* font-family: Anton, sans-serif; */
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
  transition: 0.3s;
  padding: 8px;
  font-size: 0.95em;
  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: 20vh;
 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.9); /* semi-transparent overlay */
    z-index: 1;
  }

  .hero .container {
    position: absolute;
    width: 80%;
    top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2; /* ensures content stays above the overlay */
  }
  
  .hero h1 {
    font-size: 40px;
    line-height: 45px;
    margin: 15px 0;
    color: var(--text-light);
    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.4em;
    max-width: 50%;
    display: block;
    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 small {
    font-size: small;
  }
  
  .hero p i {
    color: var(--primary);
    font-weight: 600;
  }
  .fin_btn {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    margin-top: 15px;
    display: inline-block;
  }
  .finance {
    background-color: var(--accent)!important;
  }
  /* 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;sup
    height: 30px;
    z-index: 6;
  } */
  .farm {
    position: absolute;
    bottom: 50px;
    right: 15%;
    height: 150px;
  }
  .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: 24px;
  }
  
  .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: 25px;
  }
  .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;
    transition: 0.3s all;
  }
  .service-card:hover {
    transform: scale(1.05);
  }
  .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, .btn {
    position: relative;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s all;
    box-sizing: border-box;
    border: 2px solid var(--primary);
  }
  .ghost {
    background-color: transparent;
    color: var(--primary);
  }
  .service-card .btn:hover {
    background-color: var(--primaryHover);
  }
  
.btn:hover {
  transform: scale(1.03);
}

  @media (max-width: 992px) {
    .btn {
      display: block;
      margin-bottom: 5px;
    }
  }
  .supps {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* spacing between logos */
    justify-content: right; /* center the grid */
    align-items: right;
    margin-top: 0;
  }
  .h6 {
    display: block;
    font-size: 16px;
    margin: 15px 0;
  }
  .supps img {
    max-width: 100px;
    height: auto;
    object-fit: contain; /* keeps logos from stretching */
    transition: transform 0.3s;
    background:rgba(0,0,0,0.6);
    padding: 5px;
    opacity: 0.6;
  }
  
  .supps img:hover {
    transform: scale(1.1); /* subtle hover effect */
    opacity: 1;
  }

  .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;
    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;
    position: relative;
    margin-bottom: 15px;
  }
  
  .tag {
    display: inline-block;
    background-color: #E31836;
    color: white;
    padding: 5px 10px;
    font-size: 12px;

    margin: 0 2.5px 5px 0;
  }

  .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: 70px;
    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;
    }
  }
  

  .carousel {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-track img {
    width: 100%;
    flex-shrink: 0;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
  }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }


  .mlogo {
    width: 200px;float: right; margin: 0 0 15px 0;
  }

.classified-listings {
  background-color: var(--text-light);
  padding: 30px 0;
}
  /* Grid layout */
  .listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
    gap: 20px;
    margin-top: 1.5rem;
  }
  

/* Card style */
.listing-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  padding: 30px;
}
.listing-card:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image */
.listing-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

ul.labels {
  position: absolute;
  top: 30px;
  left: 0px;
  list-style: none;
  padding: 0; margin: 0;
  width: 150px;
}
ul.labels li {
  box-sizing: border-box;
  padding: 8px;
  background-color: var(--accent);
  font-size: small;
  font-weight: bold;
  color: white;
  display: inline-block;
  margin: 0 0 5px 0;
  text-align: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: 0.3s all;
}
ul.labels li:nth-child(even) {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-left: none;
}
ul.labels li:nth-child(even):hover {
  color: white;
  background-color: var(--accent);
  padding-left: 15px;
}
.cursor {cursor: pointer;}
/* Content */
.listing-content {
  padding: 15px;
}
.listing-content h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #006165;
}
.post-meta {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}
.post-excerpt {
  font-size: 0.95rem;
  color: #333;
}
.post-excerpt a {
  color: #24A9AE;
  text-decoration: none;
  margin-left: 5px;
}
.post-excerpt a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .listing-image img {
    height: 140px;
  }
}
.post-content p {
  margin: 15px 0;
}

/* Classified Detail Layout */
.classified-detail {
  padding: 40px 0;
}
.classified-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 900px) {
  .classified-layout {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.classified-gallery-wrapper {
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}
.main-image-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}
.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.classified-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.classified-gallery .gallery-item {
  width: 80px;
  height: 70px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}
.classified-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}
.classified-gallery img:hover {
  transform: scale(1.05);
}

/* Info */
.classified-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.classified-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.classified-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}
.classified-content .short-desc {
  font-weight: 600;
  margin-bottom: 10px;
}
.classified-content .long-desc {
  line-height: 1.6;
  color: #444;
}
.classified-content ul,
.classified-content ol {
  margin: 30px;
}
/* Price */
.price-badge {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  display: inline-block;
}

/* Buttons */
.action-buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #006165;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.action-buttons button:hover {
  opacity: 0.9;
}
.action-buttons a {
  text-decoration: none;
}

/* Share Section */
.share-section {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.qr-img {
  width: 90px;
  height: 90px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.share-buttons {
  display: flex;
  gap: 8px;
}
.share-buttons .share-btn {
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.share-buttons .share-btn:hover {
  background: #ddd;
}

.breadcrumb {
  box-sizing: border-box; 
  position: relative;
  margin-bottom: 15px;
}
.breadcrumb .crumb {
  padding: 8px; 
  border: thin solid #f4f4f4;
}

hr {
  margin: 15px 0;
  color: #CCC;
  background-color: #CCC;
  border: none;
  height: 1px;
}

  /* Grid Layout */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 30px 0;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-4px);
  }
  
  .card-icon {
    margin-bottom: 1rem;
  }
  
  .blog-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #222;
  }
  
  .post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
  }
  
  .post-excerpt {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2rem;
  }
  
  .read-more {
    text-decoration: none;
    color: #0070c9;
    font-weight: bold;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }

  .enquireForm input,
  .enquireForm textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin: 0;
    
  }
.enquireForm {
  box-sizing: border-box;
  padding: 30px;
  margin: 30px 0 0 0;
  border: thin solid var(--compColor);
  position: relative;
}