@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Top Bar */
.top-bar {
  background-color: #323232;
  color: #ffffff;
}

.top-bar-container {
  width: 90%;
  margin: 0px 3rem;
  height: 80px;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-logo span {
  color: #e87f08;
}

/* Right Info Section */
.top-bar-info {
  display: flex;
  gap: 2.5rem;
}

/* Info Item */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  width: 38px;
  height: 38px;
  border: 3px solid #d48517;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d48217;
  font-size: 16px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 12px;
  color: #d4a017;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-value {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* NAVBAR */
.nav-bar {
  width: 100%;
  background: #dedede;
  border-bottom: 1px solid #eee;
}

.nav-links {
  margin: 0 1rem;
  padding: 0 2rem;
  height: 50px;

  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  /* padding: 0 1.6rem; */

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  text-transform: uppercase;

  transition: background 0.3s ease, color 0.3s ease;
}

/* Active / Hover like reference */
.nav-links a:hover {
  /* background: #e87f08; */
  border-bottom: 2px solid #e87f088a;
  color: #000000;
}


/* HERO BANNER */
/* HERO BANNER */
.main-banner {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

/* Image */
.main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay (cleaner than brightness filter) */
.main-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25)),
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.6) 100%);
}


/* HERO CONTENT */
.banner-content {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 2;

  color: #ffffff;
  max-width: 520px;
}

/* Small accent line (like reference) */
.banner-content::before {
  content: "WE CARE ABOUT YOUR FARM";
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e87f08;
  margin-bottom: 14px;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* CTA */
.cta-btn {
  padding: 0.9rem 2rem;
  background: #e87f08;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #c96d05;
}

.about-section {
  padding: 4rem 2rem;
  background: #f7fafc;
  /* soft light background */
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 75%;
  text-align: center;
  /* background: #ffffff; */
  padding: 2.5rem 2rem;
  border-radius: 12px;
}

.about-container h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
}

.service-section {
  padding: 2rem 2rem;
  background-color: #212121;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.service-section h2 {
  font-size: 2rem;
  color: #c96d05;
  margin-bottom: 0.8rem;
}

.service-section p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.service-list {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 1rem;
}

/* Individual Service Card */
.service-card {
  background: #d6d6d6;
  width: 25%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image section */
.service-card .image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.service-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .image img {
  transform: scale(1.1);
}

/* Details section */
.service-card .service-details {
  padding: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #c96d05;
  margin-bottom: 0.3rem;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
  text-align: center;
}

.service-card .desc {
  max-height: 60px;
  /* fixed size */
  text-align: center;
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Edge, Safari */
.service-card .desc::-webkit-scrollbar {
  display: none;
}

.image-gallery {
  /* height: 250px; */
  width: 95%;
  display: flex;
  gap: 1rem;
  margin: 2rem 0rem;
}

.image-gallery .img {
  width: 24%;
  height: 245px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 10px;
  border-radius: 10px;
}

.image-gallery .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* border:1px solid rgb(214, 214, 214); */

}

/* Container & Background */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin: 0 3rem;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
}


.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Header Styles */
.contact-title {
  color: #c96d05;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-header p{
  text-align: center;
}

.contact-container .address-icon {
  color: orangered
}

.contact-container .call-icon {
  color: rgb(66, 66, 66)
}

.contact-container .email-icon {
  color: rgb(66, 66, 66)
}

.contact-container .fa-whatsapp {
  color: rgb(2, 227, 2);
  font-size: 2rem;
}

.whatsapp-me {
  padding: 1rem;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
}

.whatsapp-me a {
  text-decoration: none;
}

.contact-subtitle {
  color: #3e4b34;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Grid Logic */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Individual Card Styles */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 1.8rem;
  color: #1a1a1a;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 4px;
}

.contact-info-detail {
  color: #555;
  font-size: 0.95rem;
}

/* Footer Styles */
.site-footer {
    background-color: #2d3a22; /* Dark Forest Green */
    color: #f1f1f1;
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* About section is wider */
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: #ccd5ae; /* Light Sage */
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-description {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #a3b18a;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #bc6c25; /* Earthy accent */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a3b18a;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-text {
    color: #a3b18a;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: #bc6c25;
}

/* Bottom Bar & Credit */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #a3b18a;
    flex-wrap: wrap;
    gap: 15px;
}

.dev-name {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #bc6c25;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================== */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */


@media (max-width:1150px) {
  .main-banner {
    height: 400px;
  }

  .about-container {
    padding: 4rem 2rem;
  }

  .about-container {
    max-width: 95%;
    padding: 2.5rem 1rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .service-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    width: 45%;
  }

  .image-gallery {
    flex-wrap: wrap;
    justify-content: center;
  }

  .image-gallery .img {
    width: 30%;

  }
}

/* Tablets */
@media (max-width: 992px) {
  .top-bar-container {
    padding: 0 1.5rem;
  }

  .top-bar-info {
    gap: 1.5rem;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content {
    left: 4%;
    max-width: 300px;
  }

  .cta-btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: capitalize;

  }

  .service-section {
    padding: 2rem 1rem;
  }

  .image-gallery {
    align-items: center;
    justify-content: center;
  }

  .image-gallery .img {
    width: 45%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar-container {
    margin: 0 1rem;
    width: 95%;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-links {
    margin: 0 1rem;
    padding: .5rem 1rem;
  }

  .nav-links li a {
    font-size: 13px;
    text-transform: capitalize;
  }

  .main-banner {
    height: 300px;
  }

  .banner-content h1 {
    font-size: 1rem;
  }

  .banner-content {
    left: 3%;
    max-width: 250px;
  }

  .banner-content::before {
    font-size: 11px;
  }

  .cta-btn {
    font-size: 12px;
  }

  .banner-content p {
    font-size: 13px;
  }

  .top-bar-info {
    /* flex-direction: column; */
    align-items: center;
    gap: 1rem;
    font-size: 14px;
  }

  .info-item {
    justify-content: center;
  }

  .about-section {
    padding: 2rem .5rem;
  }

  .about-container {
    width: 98%;
    padding: 1.5rem 0rem;
  }

  .about-container h2 {
    font-size: 1.5rem;
  }

  .about-container p {
    font-size: .9rem;
  }

  .service-card .image {
    height: 120px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 14px;
  }

  .image-gallery .img {
    width: 21%;
    height: 100px;
  }

  .contact-card {
    background: rgba(255, 255, 255, 0.95);
    /* width: 100%; */
    padding: 10px;
    border-radius: 0;
  }

  .contact-grid{
    gap:10px;
    /* width:100%; */
  }

}

@media (max-width:650px) {
  .top-bar-container {
    margin: 0;
  }

  .nav-links {
    padding: 0rem 1rem;
  }

  .info-item-address {
    display: none;
  }

  .top-bar-info .info-label,
  .top-bar-info .info-value {
    font-size: 12px;
    text-align: center;

  }

  .main-banner {
    height: 200px;
  }


  .banner-content h1 {
    font-size: 14px;
  }

  .banner-content {
    left: 3%;
  }

  .banner-content::before {
    font-size: 9px;
  }

  .cta-btn {
    font-size: 10px;
  }

  .banner-content p {
    font-size: 11px;
  }

  /* .service-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  } */

  .service-card {
    width: 95%;
  }

  .service-card .image {
    height: 150px;
  }

  /* .image-gallery{
    flex-direction: column;
    flex-wrap: nowrap;
  } */

  .image-gallery .img {
    padding: 0px;
  }

  .image-gallery {
    width: 100%;
    gap: 8px;
    justify-content: space-between;
  }

  .about-container {
    width: 100%;
    padding: .5rem 0rem;
  }

  .contact-section{
    margin:0 .5rem;
    padding:40px 0px;
  }

  

}

/* navigation buttons (mobile only) */
.service-nav {
  display: none;
}

/* Small Mobile */
@media (max-width: 450px) {
  .brand-logo {
    font-size: 20px;
  }

  .banner-content h1 {
    width: 150px;
    font-size: 13px;
  }

  .banner-content p {
    margin-top: 2rem;
    margin-bottom: .5rem;
    font-size: 10px;
  }

  .info-value {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .nav-links {
    margin: 0;
    gap: 1.5rem;
  }

  .service-section {
    position: relative;
  }

  .service-list {

    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    justify-content: start;
  }

  .service-card {
    width: auto;
    flex: 0 0 100%;
    scroll-snap-align: center;
  }


  .service-list::-webkit-scrollbar {
    display: none;
  }

  .service-list {
    scrollbar-width: none;
  }

  /* DOTS */
  .service-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
  }

  .service-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
  }

  .service-dots .dot.active {
    background: #e87f08;
  }

  /* previous next buttons  */
  .service-nav {
    display: flex;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
  }

  .service-nav.prev {
    left: 8px;
  }

  .service-nav.next {
    right: 8px;
  }

  .image-gallery .img {
    height: 90px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }


  .contact-info h3{
    font-size: 18px;
  }

 .contact-info-title{
  font-size: 1rem;
 }

 .contact-info-detail{
  font-size: 14px;
 }
}

@media (min-width: 451px) {
  .service-dots {
    display: none;
  }
}