/* ================================
 RESET + BASE
================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
 }

 h1, h2, h3 {
  font-family: "Playfair Display", serif;
 }
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "poppins", sans-serif; */
  
 }

 

 :root {

  /* COLORS */
  --white-color: #fff;
  --primary-color: #063601;
  --secondary-color: #128807fb;
  --background-color: #011d0a;
  --tertiary-color: #d85509;

  /* FONTS */
  --font-size-small: 0.875rem;
  --font-size-medium: 1.2rem;
  --font-size-large: 1.6rem;
  --font-size-xlarge: 2rem;
  --font-size-xxlarge: 2.3rem;

  /* FONT WEIGHT*/
  --font-weight-n: 400;
  --font-weight-m: 500;
  --font-weight-semi-b: 600;
  --font-weight-bold: 700;

  /* BORDER RADIUS */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* site max width */
  --site-max-width: 1200px;

  
}
 body {
 /*padding-top: -10px; /* add top padding to prevent content from being hidden behind the sticky header */
 background-color: var(--background-color);
  color: var(--white-color);
}

 .navbar {
  background-color: var(--primary-color);
  position: sticky; /* stick to top */
  top: 20px; /* offset from top */
  left: 0;
  z-index: 1000; /* ensure it stays above other content */
  width: 80%;
  max-width: var(--site-max-width);
  margin: 0 auto; /* center horizontally */
  height: 40px; /* total navbar height */
  display: flex;
  align-items: center;
  padding: 0; /* remove any extra spacing */
  border-radius: var(--border-radius-m);
  
  }
 
/* NAV CONTAINER */
.nav-container {
  position: relative; /* for positioning the hamburger */
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

 .nav-logo-container {
  height: 30px;   /* control logo size here */
  display: flex; /* flex container for centering */
  align-items: center; /* vertically center the logo */
 }

.nav-logo {
  height: 100%; /* make logo fill the container height */
  width: auto; /* maintain aspect ratio */
  display: block; /* remove any extra space below the image */
  border-radius: var(--border-radius-m); /* round corners */
}

 /* NAV LINKS ABOUT ETC */
.nav-links {
  
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.nav-cta {
  background-color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-bold);
  text-decoration-color: var(--secondary-color);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  border-radius: 3px;
  transition: 0.3s ease;
}

@media (max-width: 900px) {

  .navbar {
    width: 95%;
    top: 10px;
    height: 50px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    border-radius: var(--border-radius-m);
    
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

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

  .nav-cta {
    padding: 10px 20px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/********************
   HERO SECTION
*********************/

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
  to right, #1b5e20, #4caf50
);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slider {
position: relative;
width: 100%;
max-width: var(--site-max-width);
height: 100vh;
background-image: linear-gradient(
  to right, #1b5e20, #4caf50
);
overflow: hidden;
}

/* LEFT HALF SLIDER */
.slider::before {
  position: absolute;
  width: 50%;
  height: 100vh;
  content: '';
  top: 0;
  left: 0;
  background-color: #063601;
}

/* google fonts css */
.rye-regular {
  font-family: "Rye", serif;
  font-weight: 400;
  font-style: normal;
}

.title {
  margin: 50px;
  font-family: "Rye", serif;
  position: absolute;
  top: 10%;
  right: 60%;
  text-align: right;
  color: var(--white-color);
  width: 40%;
  font-size: clamp(100px, 5vw, 120px);
  width: 40%;
  line-height: 1.2em;/* control spacing between lines */
  text-shadow: 3px 5px 0px #ffa600; /* subtle shadow for better readability */
  transform: rotate(-5deg); /* slight tilt for a dynamic look */
  z-index: 1; /* I ADDED. ensure it stays above other content CAREFULLY */
}

.content {
  color: var(--white-color);
  padding-right: 20px;
  position: absolute;
  top: 10%;
  left: 60%;
  text-align: justify;
  width: 40%;
}

.desc {
  
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
}

.content h1 {
  font-size: clamp(40px, 3vw, 30px);
  color: #ffa600;
  margin-bottom: 50px; /*I ADDED*/
}

.content button {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xxlarge);
  margin-top: 80px;
  padding: 10px 30px;
  border-radius: 20px;
  background-color: #ffa600;
  color: var(--white-color);
  border: none;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease;
}
 .content button:hover {
  background-color: #ff8800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 }
 .content button:active {
  transform: translateY(0);
  background-color: #cc6f00;
 }

.content .item {
  display: none;
}

.content .item.active {
  display: block;
}

/*ease in out logic*/
@keyframes showContent {
  from{
    opacity: 0;
    transform: translateY(100px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.content .item.active h1 {
  opacity: 0;
  animation: showContent 0.5s ease-in-out 1 forwards;
}
.content .item.active .desc {
  opacity: 0;
  animation: showContent 0.5s .3s ease-in-out 1 forwards;
}
.content  .item.active button {
  opacity: 0;
  animation: showContent 0.5s .4s ease-in-out 1 forwards;
}

.images {
  position: relative;
}

/* GLOW */
.images::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(205, 133, 63, 0.35) 0%,   /* golden brown */
    rgba(205, 133, 63, 0.2) 40%,
    rgba(205, 133, 63, 0.1) 60%,
    transparent 75%
  );
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.images {
  position: absolute;
  top: 100% ;
  left: 50%;
  --rotate: 0deg;
  transform: translate(-50%, -50%) rotate(var(--rotate));
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
  outline: 0px dashed #ffffff; /*was 3px, to enable visibility*/
  outline-offset: -100px;
}
.images .item {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  rotate: calc(60deg * var(--i)) ;
  
}
.images .item img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
}
#prev, #next {
  position: absolute;
  border: none;
  top: 50%;
  left: 250px;
  font-size: 100px;
  font-family: cursive;
  background-color: transparent;
  color: var(--white-color);
  font-weight: bold;
  opacity: 0.3;
}
#next {
  left: unset;
  right: 250px;
}
#prev:hover, #next:hover {
  opacity: 1;
}

/* ==========================
   HERO RESPONSIVE (MOBILE)
========================== */
@media (max-width: 900px) {

  .hero-section,
  .slider {
    height: auto;
    min-height: 80vh;
  }

  /* Remove left dark split */
  .slider::before {
    display: none;
  }

  /* Stack layout */
  .slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }

  /* TITLE */
  .title {
    position: relative;
    top: unset;
    right: unset;
    width: 90%;
    text-align: center;
    font-size: clamp(50px, 10vw, 70px);
    transform: none;
    margin-bottom: 20px;
  }

  /* CONTENT */
  .content {
    position: relative;
    top: unset;
    left: unset;
    width: 90%;
    text-align: center;
    margin-bottom: 30px;
  }

  .content button {
    float: none;
    font-size: (var(--font-size-xxlarge));
  }

  /* ROTATING CIRCLE */
  .images {
    position: relative;
    margin-top: -150px;
    margin-bottom: -400px;
    left: 0%;
    transform: rotate(var(--rotate));
    width: 900px;
    height: 900px;
    margin-top: 30px;
  }

  .images .item img {
    width: 210px;
    height: 210px;
  }

  /* Hide arrows on mobile (cleaner look) */
  #prev,
  #next {
    display: none;
  }
}



/********************
   STATISTICS SECTION
*********************/

.stat-section {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 50px 20px;
}

.stat-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;

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

  gap: 20px; /* small flexible gap */
}

.stat-item {
  flex: 1;             /* each takes equal width */
  text-align: center;
  min-width: 0;        /* 🔥 prevents overflow issues */
}

.stat-number {
  font-size: clamp(20px, 4vw, 48px);  /* scales with screen */
  font-weight: var(--font-weight-bold);
}

.stat-item p {
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.4;
}


/* ================================
   ABOUT SECTION
================================ */

.about-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    var(--secondary-color),
    var(--background-color)
  ); /* vertical gradient */
}

/* Center content to 80% */
.about-container {
  width: 80%;
  max-width: var(--site-max-width);
  margin: 0 auto;

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

/* TEXT SIDE */
.about-text {
  flex: 1;
  font-size: var(--font-size-small);
  line-height: 1.6;
}

.about-hr {
  margin-top: 10px;
  font-size: var(--font-size-small);
}

/* HEADING STYLE */
.about-text h2 {
  font-weight: 800; /* bold */
  letter-spacing: 2px; /* spacing between letters */
  margin-bottom: 25px;
  font-size: 32px;
}

/* IMAGE SIDE */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
}

/* Caption */
.about-image-caption {
  margin-top: 15px;
  text-align: center;
  font-size: var(--font-size-small);
}

.about-text h2 {
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.flow-section { 
  max-height: 12rem; /* set a fixed height for the section */
  margin: 0rem auto; /* margin for spacing and centering */
  width: 80%;
  max-width: var(--site-max-width);
  border: 6px solid var(--primary-color); /** BORDER for visibility */
  border-radius: var(--border-radius-m); /* rounded corners */
  display: flex;
  overflow-x: hidden; /* disable horizontal scrolling */

  justify-content: space-between; /* space items evenly */
}
.flow-section::-webkit-scrollbar {
  display: none; /* hide scrollbar for WebKit browsers */
}

.flow-plant-container {/*image resizing*/
width: max-content; /* width based on content */
display: flex; /* flex container for the items */
align-items: center;  /* vertically center the items */
justify-content: center; /* horizontally center the items */
height: 100%; /* height: to be controlled by flow section max height; */
gap: 1rem; /* space between items */
animation: scroll 10s linear infinite; /* animation name, duration, timing function, and repeat */
overflow-x: clip; /* enable scrolling if content overflows */
}

.flow-plant {
 flex: 0 0 clamp(15rem, 10vw, 20rem); /* NO WIDTH, REM TAKES CARE OF IT */
 height: 150px; /* fixed height for each item */
 position: relative; /* for positioning the number */
 overflow: hidden; /* hide overflow for the animation */
 padding: 0rem; /* space inside each item */
 border-radius: .2rem; /* rounded corners */
 text-align: center; /* center text horizontally */
 align-content: center; /* center text vertically */
 
}

.flow-plant img {
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS removes empty space */
  display: block;
}

.flow-number {
  position: absolute; /* for positioning the number */
  top: 70%;
  left: 30%;
  width: 40%;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border: 6px solid var(--primary-color);
  border-radius: var(--border-radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.flow-section-animal {
  max-height: 12rem; /* set a fixed height for the section */
  margin: 0rem auto; /* margin for spacing and centering */
  width: 80%;
  max-width: var(--site-max-width);
  border: 6px solid var(--primary-color); /** BORDER for visibility */
  border-radius: var(--border-radius-m); /* rounded corners */
  display: flex;
  overflow-x: hidden; /* disable horizontal scrolling */

  justify-content: space-between; /* space items evenly */
}
.flow-section-animal::-webkit-scrollbar {
  display: none; /* hide scrollbar for WebKit browsers */
}

.flow-livestock-container {/*image resizing*/
  width: max-content; /* width based on content */
  display: flex; /* flex container for the items */
  align-items: center;  /* vertically center the items */
  justify-content: center; /* horizontally center the items */
  height: 100%; /* height: to be controlled by flow section max height; */
  gap: 1rem; /* space between items */
  animation: scroll 10s linear infinite; /* animation name, duration, timing function, and repeat */
  overflow-x: clip; /* enable scrolling if content overflows */
}

.flow-animal { /*image resizing!!!!!!!*/
  flex: 0 0 clamp(15rem, 10vw, 20rem); /* NO WIDTH, REM TAKES CARE OF IT */
  height: 150px; /* fixed height for each item */
  padding: 0rem; /* space inside each item */
  border-radius: .2rem; /* rounded corners */
  text-align: center; /* center text horizontally */
  align-content: center; /* center text vertically */
  position: relative; /* for positioning the number */
  overflow: hidden; /* hide overflow for the animation */
  
 }

.flow-animal img {
  border-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* THIS removes empty space */
  display: block;
}

.flow-animal-name {
  position: absolute; /* for positioning the number */
  top: 70%;
  left: 30%;
  width: 40%;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border: 6px solid var(--primary-color);
  border-radius: var(--border-radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================
   MISSION SECTION
================================ */

.mission-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #1b5e20,
    #2e7d32,
    #4caf50
  );
  color: white;
}

.mission-container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-section h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.mission-section p {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}


/* ================================
   PRODUCTS SECTION
================================ */

.products-section {
  
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #f4f9f5 0%,
    #e0f2e6 50%,
    #d4eadc 100%
  );
}

.products-tagline {
  font-size: 28px;
  font-weight: 900;
  margin-top: 20px;
  text-align: center;

  background: linear-gradient(90deg, #1b5e20, #4caf50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 1px;
}

.products-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.products-header {
  text-align: center;
  margin-bottom: 60px;
  color: #0a850a;
}

.products-header h2 {
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.products-header p {
  color: #0a850a;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* CARD */
.product-card {
  text-align: center;
  transition: transform 0.3s ease;
}
.product-card h4 {
  color: var(--background-color);
}

.product-card:hover {
  transform: translateY(-8px);
}

/* IMAGE WRAPPER */
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 30, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  background: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #1b5e20;
  transition: 0.3s ease;
}

.product-overlay a:hover {
  background: #1b5e20;
  color: white;
}

/* PRODUCT NAME */
.product-card h4 {
  margin-top: 18px;
  font-weight: 600;
}

/* LOAD MORE BUTTON */
.products-more {
  text-align: center;
  margin-top: 50px;
}

.products-more button {
  padding: 14px 30px;
  border: none;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.products-more button:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.products-more button:active {
  transform: translateY(0);
  background-color: #2e7d32;
}

/* ================================
   TESTIMONIALS
================================ */

.testimonials-section {
  padding: 120px 0;
  background: linear-gradient(360deg,  #d4eadc, #e0f2e6, #1b5e20 );
}

.testimonials-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
}

.testimonials-header p {
  color: #666;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 18px;
}


.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #1b5e20, #4caf50);
  color: white;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px 15px;
  padding: 14px 35px;
  background: white;
  color: #1b5e20;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-buttons a:active {
  background: #e8f5e9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  
  padding: 100px 0;
  background: #f4f9f5;
}

.contact-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* LEFT PANEL */
.contact-info {
  flex: 1;
  padding: 80px 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #1b5e20,
    #2e7d32,
    #43a047
  );

  color: white;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-details p {
  line-height: 1.6;
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
  padding: 80px 60px;
  background: white;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  padding: 16px;
  border: none;
  background: #1b5e20;
  color: white;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease; 
}

.contact-form button:active {
  background: #2e7d32;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 992px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 60px 30px;
  }

  .contact-info {
    text-align: center;
    align-items: center;
  }

  .contact-details {
    align-items: center;
  }

}

/* ================================
   FOOTER
================================ */

.footer {
  background: linear-gradient(135deg, #0f2e1c, #1c4d2b);
  color: #ffffff;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  width: 80%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
  opacity: 0.85;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
  color: #a8ffb0;
}

.footer-contact p {
  margin-bottom: 8px;
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 15px;
  }

}


