body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f8f8f5;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-weight: 700;
    color: #2e8b57;
    font-size: 1.3rem;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.nav-links a:hover {
    color: #2e8b57;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    text-align: center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 2.5rem;
}
.btn-primary {
    display: inline-block;
    background: #2e8b57;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}
.btn-primary:hover {
    background: #256b44;
}

/* About Section */
.about {
    text-align: center;
    padding: 80px 20px;
}
.about h2 {
    color: #2e8b57;
}

/* Offers Section */
.offers {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.offer-card {
    background: #f4f8f4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform .3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
}
.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.offer-card h3 {
    color: #2e8b57;
    margin: 15px 0 5px;
}
.offer-card p {
    padding: 0 15px 20px;
}

/* Highlight Section */
.highlight {
    background: url("../images/slide2.jpg") center/cover fixed;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.highlight-text {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #1f1f1f;
    color: #ccc;
    padding-top: 50px;
}
.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-about, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}
.footer-about h3 {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Contact Page Styling */
.contact-hero {
  background: url("../images/slide3.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.contact-hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 0;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.contact-form, .contact-info {
  background: #fff;
  flex: 1 1 45%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: #2e7d32;
}

.btn {
  background-color: #2e7d32;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #1b5e20;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: #444;
}

.map iframe {
  border-radius: 10px;
  margin-top: 20px;
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 10px;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #4caf50;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #388e3c;
}

/* Fade-up animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #f4f9f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}

.logo img {
  height: 45px;
}

.navbar nav a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #4caf50;
}

/* ===== Hero Slider ===== */
.hero-slider {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #4caf50;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2e7d32;
}

/* ===== Footer ===== */
footer {
  background: #1b1b1b;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #f4f9f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
}

.logo img {
  height: 45px;
}

.navbar nav a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #4caf50;
}

/* ===== Hero Slider ===== */
.hero-slider {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background: #4caf50;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2e7d32;
}

/* ===== Footer ===== */
footer {
  background: #1b1b1b;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #f0f7f0;
    color: #2e7d32;
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #2e7d32;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Footer Styles */
.footer {
    background-color: #1b5e20;
    color: white;
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #a5d6a7;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p {
    color: #e8f5e9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #e8f5e9;
}

.footer-section ul li a {
    color: #e8f5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a5d6a7;
}

.footer-bottom {
    border-top: 1px solid #2e7d32;
    padding-top: 20px;
    text-align: center;
    color: #a5d6a7;
}

/* Common Button Styles */
.btn-primary {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Flash Messages */
.flash {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.flash.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 15px;
        text-align: center;
        border: 1px solid #eee;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}