/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

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

.main-content-area {
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Updated Hero Section Styles */
.hero-section {
    padding: 10px 0;
    background-color: transparent !important;
}

.styled-hero-container {
    position: relative;
    width: 100%;
    min-height: 320px;
    height: 40vw; /* Responsive height based on viewport width */
    max-height: 450px;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 auto;
    background: none;
}

.styled-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    transition: transform 0.3s ease;
}

.styled-hero-container:hover .styled-hero-background {
    transform: scale(1.05);
}

.styled-hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; /* Size of the circle */
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.styled-hero-container:hover .styled-hero-circle {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 35px rgba(0,0,0,0.3);
}

/* Remove circle effect for main hero image in hero section */
.hero-section .styled-hero-circle {
    position: static !important;
    top: unset !important;
    left: unset !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1;
}

/* Responsive adjustments for the hero section */
@media (max-width: 992px) {
    .styled-hero-container {
        min-height: unset;
        height: auto !important;
        max-height: none;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: none !important;
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .styled-hero-background {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        width: 100% !important;
        height: auto !important;
        min-height: 120px;
        max-width: 100vw;
    }
    .styled-hero-container img, .styled-hero-background img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
        margin: 0 auto;
        border-radius: 0 !important;
        background: none !important;
    }
}

@media (max-width: 576px) {
    .styled-hero-container {
        min-height: 120px;
        height: 38vw;
        max-height: 180px;
        border-radius: 0;
    }
    .styled-hero-background {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }
}

/* Card Styles */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Scrollable Product List (with hidden scrollbar) */
.scrollable-product-list {
    max-height: 550px;
  overflow-y: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollable-product-list::-webkit-scrollbar {
    display: none;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Button Styles */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Footer */
footer {
    margin-top: 50px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    margin: 30px 0;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 20px;
}

.service-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

/* Responsive Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Pagination Styles */
.pagination .page-item.active .page-link {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.pagination .page-item .page-link {
    color: #28a745;
}

.pagination .page-item .page-link:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
} 

/* Custom Navbar Styles */
.custom-navbar {
  background: linear-gradient(90deg, #b3e0ff 0%, #e0f7fa 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  border-bottom: 3px solid #4CAF50;
}
.navbar-brand-area {
  display: flex;
  align-items: center;
}
.navbar-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.1;
}
.navbar-title-red {
  color: #ff3333;
  letter-spacing: 1px;
}
.navbar-title-gray {
  color: #4CAF50;
  letter-spacing: 1px;
}
.navbar-subtitle {
  font-size: 1rem;
  color: #888;
  font-weight: 600;
  margin-top: 0.1rem;
  letter-spacing: 1px;
}
.custom-nav-btn {
  display: inline-block;
  margin: 0 0.3rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(90deg, #e0ffe0 0%, #b3ffb3 100%);
  color: #222;
  border: 2px solid #4CAF50;
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.08);
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.custom-nav-btn.active, .custom-nav-btn:hover {
  background: linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
  color: #fff;
  border-color: #43e97b;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.13);
}
.custom-social-icon {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.13);
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.custom-social-icon:hover {
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
}
@media (max-width: 991px) {
  .navbar-title { font-size: 1.2rem; }
  .navbar-subtitle { font-size: 0.8rem; }
  .custom-nav-btn { font-size: 0.95rem; padding: 0.5rem 1rem; }
  .navbar-brand-area img { height: 50px !important; }
}

/* Navbar Section Wrapper */
.navbar-section-wrapper {
  width: 100%;
  background: linear-gradient(90deg, #5dc6ff 0%, #b3e0ff 100%);
  padding: 32px 0 0 0;
  display: flex;
  justify-content: center;
}
.navbar-inner-box {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.13);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  min-height: 110px;
  margin-bottom: -18px;
  justify-content: space-between;
}
.navbar-brand-area {
  display: flex;
  align-items: center;
}
.navbar-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.1;
}
.navbar-title-red {
  color: #ff3333;
  letter-spacing: 1px;
}
.navbar-title-gray {
  color: #4CAF50;
  letter-spacing: 1px;
}
.navbar-subtitle {
  font-size: 1rem;
  color: #888;
  font-weight: 600;
  margin-top: 0.1rem;
  letter-spacing: 1px;
}
.nav-btn-row {
  flex: 1 1 auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.custom-nav-btn {
  display: inline-block;
  margin: 0 0.2rem;
  padding: 0.5rem 1.3rem;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(90deg, #e0ffe0 0%, #b3ffb3 100%);
  color: #222;
  border: 2px solid #4CAF50;
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.08);
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.custom-nav-btn.active, .custom-nav-btn:hover {
  background: linear-gradient(90deg, #a8ff78 0%, #78ffd6 100%);
  color: #fff;
  border-color: #43e97b;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.13);
}
.social-icon-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.13);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.custom-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  padding: 0.2rem 0.5rem;
  background: transparent;
}
.custom-social-icon:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
}
@media (max-width: 991px) {
  .navbar-inner-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
    min-height: unset;
  }
  .navbar-brand-area {
    margin-bottom: 10px;
  }
  .nav-btn-row {
    justify-content: flex-start !important;
    width: 100%;
    margin-bottom: 10px;
  }
  .social-icon-box {
    margin-top: 10px;
    width: 100%;
    justify-content: flex-start;
  }
}

.sidebar-cat-item:hover > .sidebar-product-list {
  display: block !important;
  background: #6fdc6f;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  position: relative;
  z-index: 2;
}
.sidebar-product-list {
  transition: all 0.2s;
}

/* New Navbar Styles */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #b3e0ff 0%, #e0f7fa 100%);
    width: 100%;
    min-height: 180px;
    padding-bottom: 32px;
    overflow: visible;
    box-sizing: border-box;
}
.site-header .container {
    width: 100%;
    max-width: 100%;
    padding: 7px 8px;
    box-sizing: border-box;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(135, 206, 235, 0.3); /* Sky blue tint */
    z-index: -1;
}

.header-content {
    padding-bottom: 15px;
}

.site-logo img {
    height: 160px; /* Increased size to span vertically */
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.site-title {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 12px auto;
    text-align: center;
    box-sizing: border-box;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.1;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.title-part-red {
    color: #D32F2F; /* A strong red */
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.title-part-gray {
    color: #424242; /* A dark gray */
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.main-navigation {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
}

.main-navigation .nav-links-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 12px auto;
    box-sizing: border-box;
    overflow-x: auto !important;
    overflow-y: hidden;
    white-space: nowrap !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #b3e0ff 0%, #e0f7fa 100%);
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 8px 12px;
    position: relative;
    transition: background 0.2s, box-shadow 0.2s;
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
}

.main-navigation .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    white-space: nowrap !important;
}

.nav-button {
    text-decoration: none;
    padding: 8px 15px;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-button.active {
    background-color: #ffffff;
    color: #4CAF50; /* Green text for active button */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.social-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #000; /* Set a single color for all icons */
}
.social-icon:hover {
    transform: scale(1.15);
}

.social-icon .fa-facebook-f { color: #1877F2; }
.social-icon .fa-youtube { color: #FF0000; }
.social-icon .fa-map-marker-alt { color: #34A853; }

/* Responsive Styles for Navbar */
@media (max-width: 1200px) {
    .site-title, .main-navigation .nav-links-wrapper {
        font-size: 3.1rem;
        max-width: 98vw;
    }
}
@media (max-width: 992px) {
    .site-header {
        min-height: 200px;
        padding-bottom: 24px;
    }
    .site-title {
        font-size: 1.3rem;
        padding: 0 2px;
    }
    .main-navigation .nav-links-wrapper {
        padding: 6px 2px;
        font-size: 0.98rem;
    }
}
@media (max-width: 768px) {
    .site-header {
        min-height: 160px;
        padding-bottom: 12px;
    }
    .site-title {
        font-size: 1.05rem;
        padding: 0 1px;
    }
    .main-navigation .nav-links-wrapper {
        padding: 4px 1px;
        font-size: 0.93rem;
    }
}
@media (max-width: 480px) {
    .site-title {
        font-size: 0.95rem;
    }
    .main-navigation .nav-links-wrapper {
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.custom-footer {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d5a2d 50%, #4CAF50 100%);
    color: #fff;
    position: relative;
    margin-top: 0;
}

.footer-content {
    padding: 3rem 0 2rem 0;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 2px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
}

.social-link.youtube:hover {
    background: linear-gradient(45deg, #FF0000, #ff4444);
    border-color: #FF0000;
}

.social-link.facebook:hover {
    background: linear-gradient(45deg, #1877F2, #4a90e2);
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #ff6b9d);
    border-color: #E1306C;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.quick-link:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #fff;
    text-decoration: none;
    border-color: #4CAF50;
}

.quick-link i {
    font-size: 0.9rem;
    color: #8BC34A;
}

/* Address Section */
.address-info {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.address-icon {
    font-size: 1.2rem;
    color: #8BC34A;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.address-info p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(76, 175, 80, 0.3);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.company-logo {
    display: inline-block;
}

.company-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.company-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1) invert(0);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quick-links {
        gap: 0.8rem;
    }
    
    .quick-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .company-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .quick-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Page Title Styles */
.page-title-container {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.page-title-icon {
    font-size: 2.5rem;
    color: #4CAF50; /* Green color for the icon */
    margin-right: 20px;
    background-color: #e8f5e9; /* Light green background */
    padding: 15px;
    border-radius: 50%;
}

.page-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .site-title {
        font-size: 1.8rem;
    }
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

.breadcrumb-container a {
    text-decoration: none;
    color: #333;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
    color: #4CAF50; /* Green to match theme */
}

@media (max-width: 992px) {
    .site-title {
        font-size: 1.8rem;
    }
}

/* New Footer Styles */
.new-footer {
    background-color: #e0f2e0; /* Light green background */
    padding: 20px 0;
    margin-top: 30px;
    border-top: 2px solid #a5d6a7;
    position: relative;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copyright-text, .designed-by {
    font-size: 0.9rem;
    color: #333;
    margin: 2px 0;
}

.designed-by a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}

.footer-deco-img {
    position: absolute;
    bottom: -20px; /* Align with bottom of footer */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    opacity: 0.9;
    z-index: 0;
}

.footer-links {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
}

.footer-leaf-logo {
    height: 60px;
    margin-right: 15px;
}

.address-block {
    text-align: left;
}

.address-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.address-block p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .site-title {
        font-size: 2.3rem;
    }
}

/* Green Footer Styles */
.footer-green {
    background: linear-gradient(180deg, #b6e388 0%, #7ec850 60%, #4e8c1a 100%);
    color: #1a3300;
    position: relative;
    padding-top: 10px;
    padding-bottom: 40px;
    font-size: 1rem;
    border-top: 2px solid #a5d6a7;
}
.footer-green .footer-section {
    margin-bottom: 0.5rem;
}
.footer-green .footer-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}
.footer-green .footer-social {
    margin-bottom: 0.3rem;
}
.footer-green .footer-links {
    margin-bottom: 0.3rem;
    gap: 10px;
}
.footer-green .footer-links a {
    font-size: 0.97rem;
    padding: 2px 7px;
}
.footer-green .footer-address p {
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
}
.footer-green .footer-bottom-content.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.footer-green .company-logo img {
    height: 28px;
    margin-right: 4px;
}
.footer-green .copyright {
    font-size: 0.95rem;
    color: #205c00;
}
.footer-green .footer-leaves {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 38px;
    pointer-events: none;
    z-index: 1;
}
.footer-green .footer-leaf-left {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 38px;
    z-index: 2;
}
.footer-green .footer-leaf-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 38px;
    z-index: 2;
}
@media (max-width: 768px) {
    .footer-green .footer-leaf-left,
    .footer-green .footer-leaf-right {
        height: 24px;
    }
    .footer-green {
        padding-bottom: 24px;
    }
    .footer-green .footer-bottom-content.company-info {
        flex-direction: column;
        gap: 4px;
    }
}
@media (max-width: 576px) {
    .footer-green .footer-links {
        flex-direction: column;
        gap: 6px;
    }
    .footer-green .footer-leaf-left,
    .footer-green .footer-leaf-right {
        height: 16px;
    }
    .footer-green {
        padding-bottom: 12px;
    }
}

.footer-green-compact {
    background: linear-gradient(180deg, #b6e388 0%, #7ec850 60%, #4e8c1a 100%);
    color: #1a3300;
    position: relative;
    padding: 10px 0 32px 0;
    font-size: 0.97rem;
    border-top: 2px solid #a5d6a7;
    min-height: 0;
    overflow: hidden;
}
.footer-leaf-left-abs {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}
.footer-leaf-right-abs {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}
.footer-green-compact .container {
    position: relative;
    z-index: 2;
}
.footer-green-compact .footer-address .address-icon {
    color: #8BC34A;
    margin-right: 4px;
}
.footer-green-compact .footer-bottom-content.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.93rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.footer-green-compact .company-logo img {
    height: 22px;
    margin-right: 4px;
}
.footer-green-compact .copyright {
    font-size: 0.93rem;
    color: #205c00;
}
@media (max-width: 992px) {
    .footer-green-compact .footer-links {
        gap: 6px;
    }
    .footer-green-compact .footer-social {
        gap: 6px;
    }
    .footer-green-compact {
        background-size: 100px 32px, 80px 32px;
    }
}
@media (max-width: 576px) {
    .footer-green-compact .footer-links {
        flex-direction: column;
        gap: 4px;
    }
    .footer-green-compact {
        background-size: 60px 18px, 50px 18px;
        padding-bottom: 18px;
    }
}

.footer-grass {
    width: 100%;
    height: 38px;
    background: url('assets/images/grass.png') repeat-x bottom;
    background-size: auto 38px;
    margin-bottom: -8px;
}
.footer-green-modern {
    background: linear-gradient(180deg, #b6e388 0%, #7ec850 60%, #4e8c1a 100%);
    color: #1a3300;
    position: relative;
    padding: 10px 10px 10px 10px;
    font-size: 0.97rem;
    border-top: 2px solid #a5d6a7;
    min-height: 0;
}
.footer-green-modern .footer-section {
    margin-bottom: 0.3rem;
}
.footer-green-modern .footer-title {
    font-size: 1.02rem;
    margin-bottom: 0.3rem;
    padding-bottom: 0;
    font-weight: bold;
    color: #000;
}
.footer-green-modern .footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}
.footer-green-modern .footer-links a {
    color: #1a3300;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.97rem;
    padding: 2px 7px;
    transition: color 0.2s;
}
.footer-green-modern .footer-links a:hover {
    color: #388e3c;
    text-decoration: underline;
}
.footer-green-modern .footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 0.2rem;
}
.footer-green-modern .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #4e8c1a;
    font-size: 1.1rem;
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.10);
    transition: background 0.2s, color 0.2s;
}
.footer-green-modern .footer-social-icon.youtube { color: #FF0000; }
.footer-green-modern .footer-social-icon.facebook { color: #1877F2; }
.footer-green-modern .footer-social-icon.instagram { color: #E1306C; }
.footer-green-modern .footer-social-icon:hover {
    background: #e0e0e0;
    color: #fff;
}
.footer-green-modern .footer-links i {
    margin-right: 6px;
    color: #388e3c;
    font-size: 1.05em;
    vertical-align: middle;
}
.footer-green-modern .footer-bottom-bar {
    border-top: 1px solid #a5d6a7;
    margin-top: 10px;
    padding-top: 10px;
    background: transparent;
    text-align: center;
}
.footer-green-modern .footer-bottom-content.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.08rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    text-align: center;
}
.footer-green-modern .company-logo img {
    height: 38px;
    margin-right: 10px;
    filter: none;
    vertical-align: middle;
}
.footer-green-modern .footer-address p {
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
    color: #000;
}
.footer-green-modern .copyright {
    font-size: 0.9rem;
}
@media (max-width: 992px) {
    .footer-green-modern .footer-links {
        gap: 6px;
    }
    .footer-green-modern .footer-social {
        gap: 6px;
    }
}
@media (max-width: 576px) {
    .footer-green-modern .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    .footer-green-modern .footer-links a {
        flex: 0 0 48%;
        max-width: 48%;
        box-sizing: border-box;
        text-align: left;
        margin: 0;
    }
    .footer-green-modern .footer-bottom-content.company-info {
        flex-direction: column;
        gap: 6px;
    }
    .footer-green-modern .company-logo img {
        height: 28px;
        margin-right: 0;
    }
    .footer-green-modern .copyright {
        font-size: 0.97rem;
    }
}

/* Hide hamburger menu always */
.hamburger {
    display: none !important;
}

/* Navbar links always horizontal */
.main-navigation .nav-links-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    background: none;
    position: static;
    padding: 0;
    margin: 0;
}

.main-navigation .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.nav-button {
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    margin: 0 2px;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .nav-button {
        padding: 7px 10px;
        font-size: 0.95rem;
    }
    .main-navigation .nav-links {
        gap: 0.2rem;
}
}
@media (max-width: 768px) {
    .nav-button {
        padding: 6px 6px;
        font-size: 0.90rem;
    }
    .main-navigation .nav-links {
        gap: 0.1rem;
    }
}
@media (max-width: 576px) {
    .nav-button {
        padding: 5px 3px;
        font-size: 0.85rem;
    }
    .main-navigation .nav-links {
        gap: 0;
    }
    .main-navigation .nav-links-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Remove white background from hero container */
.main-content-area.hero-container {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Add a 2px white border only around the hero image */
#heroCarousel, .hero-section img.img-fluid.w-100 {
    border: 2px solid #fff !important;
    border-radius: 15px !important;
    background: none !important;
    box-shadow: none !important;
}

.hero-img-responsive {
    width: 100% !important;
    height: 38vw !important;
    min-height: 180px;
    max-height: 420px;
    object-fit: contain !important;
    border: 2px solid #fff !important;
    border-radius: 15px !important;
    background: none !important;
    box-shadow: none !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-img-responsive {
        height: 48vw !important;
        min-height: 120px;
        max-height: 260px;
        border-radius: 10px !important;
    }
}
@media (max-width: 576px) {
    .hero-img-responsive {
        height: 54vw !important;
        min-height: 80px;
        max-height: 180px;
        border-radius: 8px !important;
    }
}

.hero-carousel {
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* Remove border from hero section container and carousel */
.hero-section, .main-content-area.hero-container, .hero-carousel {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Add border only to the hero image */
.hero-img-responsive {
    width: 100% !important;
    height: 38vw !important;
    min-height: 180px;
    max-height: 420px;
    object-fit: contain !important;
    border: 2px solid #fff !important;
    border-radius: 15px !important;
    background: none !important;
    box-shadow: none !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-img-responsive {
        height: 48vw !important;
        min-height: 120px;
        max-height: 260px;
        border-radius: 10px !important;
    }
}
@media (max-width: 576px) {
    .hero-img-responsive {
        height: 54vw !important;
        min-height: 80px;
        max-height: 180px;
        border-radius: 8px !important;
    }
}

.hero-img-border {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: 15px;
    overflow: hidden;
    background: none;
    margin: 0 auto;
    display: flex;
        align-items: center;
    justify-content: center;
}

.hero-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    background: none;
    display: block;
}

@media (max-width: 992px) {
    .hero-img-border {
        border-radius: 10px;
        aspect-ratio: 16/9;
    }
}
@media (max-width: 576px) {
    .hero-img-border {
        border-radius: 8px;
        aspect-ratio: 4/3;
    }
}

.site-header .container, .site-header .d-flex.align-items-center {
        display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0.5rem;
    padding: 7px 10px;
    box-sizing: border-box;
}

.site-logo {
    flex: 0 0 auto;
    margin-right: 10px;
}

.main-navigation {
    flex: 1 1 0;
    min-width: 0;
        display: flex;
    align-items: center;
}

.main-navigation .nav-links-wrapper {
    flex: 1 1 0;
    min-width: 0;
    max-width: 70vw;
    overflow-x: auto !important;
    overflow-y: hidden;
    white-space: nowrap !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #b3e0ff 0%, #e0f7fa 100%);
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 8px 18px;
    margin: 0 auto 12px auto;
    position: relative;
    box-sizing: border-box;
    transition: background 0.2s, box-shadow 0.2s;
    padding-left: 18px;
    padding-right: 18px;
    scroll-padding-left: 18px;
}

.main-navigation .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    white-space: nowrap !important;
}

@media (max-width: 992px) {
    .main-navigation .nav-links-wrapper {
        max-width: 90vw;
        padding: 7px 8px;
    }
}
@media (max-width: 768px) {
    .site-header .container, .site-header .d-flex.align-items-center {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
		padding-top: 7px;
    }
    .site-logo {
        display: block;
        margin: 0 auto 4px auto !important;
        text-align: center;
        width: 100%;
    }
    .site-logo img {
        display: block;
        margin: 0 auto;
        max-width: 80px;
        height: auto;
    }
    .site-title {
        text-align: center !important;
        width: 100%;
    }
    .main-navigation {
        width: 100%;
        min-width: 0;
    }
    .main-navigation .nav-links-wrapper {
        max-width: 98vw;
        margin: 0 auto 8px auto;
        padding: 6px 4px;
    }
}
@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-button {
       text-align: center;
    }
}

.main-navigation .nav-links > .nav-button:first-child {
    margin-left: 10px;
}
.main-navigation .nav-links > .nav-button:last-child {
    margin-right: 10px;
}

/* Hero section thumbnails fit main image height */
.hero-section .row > .col-md-3 > .d-flex.flex-md-column {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 0;
}
.hero-section .row > .col-md-3 > .d-flex.flex-md-column a {
    flex: 1 1 0;
    height: 25%;
    margin-bottom: 0 !important;
    display: block;
}
.hero-section .row > .col-md-3 > .d-flex.flex-md-column a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #8BC34A;
    display: block;
}

@media (max-width: 768px) {
  .hero-section .row > .col-md-3 > .d-flex.flex-md-column {
    flex-direction: column !important;
    width: 100%;
    height: auto;
    gap: 12px;
    margin-top: 12px;
  }
  .hero-section .row > .col-md-3 > .d-flex.flex-md-column a {
    flex: 1 1 0;
    width: 100%;
    height: auto;
    min-height: 90px;
    max-height: 160px;
    margin-bottom: 0 !important;
    display: block;
  }
  .hero-section .row > .col-md-3 > .d-flex.flex-md-column a img {
    width: 100%;
    height: 100%;
    min-height: 90px;
    max-height: 160px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #8BC34A;
    display: block;
  }
} 

/* Reduce side gap for main layout */
.container,
.main-content-area,
.hero-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw;
    box-sizing: border-box;
} 
@media (min-width: 1200px) {
  .site-title {
    font-size: 3rem;
  }
} 