/* Custom Styles for FreshMart Grocery Store */

/* General Styles */
:root {
    --primary-color: #198754;
    --secondary-color: #20c997;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    padding: 0;
}

.hero-slide {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.bg-gradient-1 {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

/* Features Section */
.features {
    position: relative;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.features .text-center:hover .feature-icon {
    transform: translateY(-5px);
}

/* Categories */
.category-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding-top: 40px;
    padding-bottom: 40px;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-icon {
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h6 {
    font-size: 22px;
}

.category-card .icon {
    margin-top: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #fff;
    color: var(--primary-color);
}

.category-card .icon i {
    font-size: 24px;
    padding: 5px;
    color: var(--primary-color)!important;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    transition: background-color 0.3s ease;
    height: 350px;
}

.product-image img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-card:hover .product-image {
    background-color: #e8f5e9 !important;
}

.product-card .btn {
    transition: all 0.3s ease;
}

.product-card:hover .btn {
    transform: scale(1.1);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #127310 0%, #127310 100%);
}

.newsletter .form-control:focus {
    border-color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter input {
    font-size: 16px;
}

.newsletter button {
    font-size: 18px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.newsletter button:hover {
    background: #333;
    border-color: #333;
}

/* Footer */
.footer a:hover {
    color: #fff !important;
}

.social-links .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .hero-slide {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .navbar .input-group {
        margin-top: 1rem;
        max-width: 100% !important;
    }
    
    .navbar .d-flex {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide h1 {
        font-size: 1.75rem;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
    }
    
    .top-bar small {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.product-card .product-image i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Badge Styles */
.badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Rating Stars */
.text-warning i {
    font-size: 0.875rem;
    pointer-events: none;
    cursor: default;
}

.text-warning i:hover {
    color: inherit !important;
    transform: none !important;
}

/* Button Hover Effects */
.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #146c43;
    border-color: #146c43;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar Scrolled Effect */
.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button Click Animation */
.btn-clicked {
    animation: btnClick 0.3s ease;
}

@keyframes btnClick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* Badge Pulse Animation */
.badge-pulse {
    animation: badgePulse 0.5s ease;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Notification Styles */
.custom-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Card Shadow */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Section Padding */
section {
    padding: 4rem 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #146c43;
}

.carousel-indicators [data-bs-target] {
    width: 55px;
    height: 8px;
    background-color: var(--primary-color);
}

/* Blog Post Images */
.card-img-top {
    height: 300px;
    object-fit: cover;
}

/* compliance Images */
.card-img-top2 {
    height: 20px;
    
}

.blog-post-detail {
    width: 100%;
    height: auto;
}

/* Search Input */
.navbar-search {
    max-width: 300px;
}

/* Avatar Circles */
.avatar-circle-lg {
    width: 80px;
    height: 80px;
}

.avatar-circle-md {
    width: 60px;
    height: 60px;
}

.avatar-circle-sm {
    width: 50px;
    height: 50px;
}

.avatar-circle-xs {
    width: 40px;
    height: 40px;
}

/* Icon Sizes */
.icon-2xl {
    font-size: 2.5rem;
}

.icon-xl {
    font-size: 2rem;
}

/* About Hero Image */
.about-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Checkout Sticky Card */
.checkout-sticky {
    top: 100px;
}

/* Product Thumbnail */
.product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Contact Icon Box */
.contact-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

/* Wishlist and Cart Product Thumbnails */
.wishlist-product-thumb,
.cart-product-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Quantity Input */
.quantity-input {
    max-width: 120px;
}

.product-quantity-input {
    max-width: 150px;
}

/* Hero Carousel Images */
.hero-carousel-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Product Single Page Image */
.product-single-img {
    height: 600px;
    object-fit: cover;
}

.customer-dashboard .profile-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #cecece;
}




.w-50 {width: 50%;}
.w-100-p {width: 100% !important;}
.w-30-p {width: 30% !important;}
.w-40-p {width: 40% !important;}
.w-60-p {width: 60% !important;}
.w-70-p {width: 70% !important;}
/* .w-100 {width: 100px !important;} */
.w-200 {width: 200px !important;}
.w-300 {width: 300px !important;}
.mb_0 {margin-bottom: 0;}
.table-border-0,
.table-border-0 tr,
.table-border-0 tr th,
.table-border-0 tr td {
    border: none!important;
}
.tar {text-align: right;}

.invoice-container {
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    padding: 25px;
}

.invoice-top-right {
    text-align: right;
}
.invoice-top-right h4 {
    font-size: 26px;
    text-transform: uppercase;
}
.invoice-top-right h5 {
    font-size: 16px;
    color: #757575;
}

.invoice-middle {
    margin-top: 40px;
    margin-bottom: 40px;
}
.invoice-middle-left p,
.invoice-middle-right p {
    color: #757575;
    font-size: 16px;
}
.invoice-middle-left h4,
.invoice-middle-right h4 {
    font-size: 20px;
}
.invoice-middle-right {
    text-align: right!important;
}

.invoice-item-table,
.invoice-item-table tr td,
.invoice-item-table tr th {
    border-color: #b9b9b9;
}


.invoice-bottom {
    margin-top: 40px;
}
.invoice-bottom-payment h4 {
    font-size: 18px;
    font-weight: 700;
}
.invoice-bottom-total-box p {
    margin-bottom: 0;
    font-size: 16px;
}
.invoice-bottom-total-box span {
    width: 70px;
    display: inline-block;
}



.stat-card {
    background: #ffffff;
    color: #222;
    padding: 25px 15px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON CIRCLE */
.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(25, 135, 84, 0.1); /* light green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle i {
    font-size: 26px;
    color: #198754; /* Bootstrap green */
}

/* TEXT */
.stat-card h2 {
    font-size: clamp(22px, 5vw, 36px);
    font-weight: bold;
    color: #111;
    margin-bottom: 5px;
}

.stat-card .unit {
    font-size: clamp(12px, 2.5vw, 15px);
    color: #198754; /* green highlight */
    margin-bottom: 5px;
}

.stat-card p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #555;
    margin-bottom: 0;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}




 /* post carousel */
.post-card {
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
}

.post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-content {
    padding: 15px;
}

.post-content h5 {
    font-weight: 600;
}

.post-content small {
    display: block;
    color: #888;
    margin-bottom: 8px;
}

.post-content p {
    font-size: 14px;
    color: #555;
}

.btn-read {
    display: inline-block;
    padding: 6px 14px;
    background: #198754;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.post-card:hover {
    transform: translateY(-5px);
}

/* ARROWS */
.custom-arrow {
    width: 40px;
    height: 40px;
    background: #198754;
    background-color: rgba(25, 135, 84, 0.8);
    color: #fff;
    border-radius: 50%;
    top: 40%;
    opacity: 1;
}

/* DOTS */
.custom-dots {
    bottom: -30px;
}

.custom-dots button {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
}

.custom-dots .active {
    background: #198754;
}



/* responsive adjustments for post carousel */
@media (max-width: 768px) {

    /* Make each card act like a slide */
    .carousel-item .row {
        display: block;
    }

    .carousel-item .col-md-4 {
        display: none;
    }

    .carousel-item.active .col-md-4:first-child {
        display: block;
        width: 100%;
    }

}




.division-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px 6px rgba(0,0,0,0.06);
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* ICON */
.division-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(25,135,84,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-icon i {
    font-size: 28px;
    color: #198754;
}

/* TITLE */
.division-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* TEXT */
.division-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}


.about-section {
    margin-bottom: 0;
}

.cards-section {
    margin-top: 0;
}

/* tighter on mobile */
@media (max-width: 768px) {
    .about-section {
        padding-bottom: 10px;
    }

    .cards-section {
        padding-top: 10px;
    }
}





/* BASE TABS */
.v-tabs {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
}

/* TAB BUTTON */
.v-tabs .nav-link {
    border: none;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    text-align: left;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* ICON */
.v-tabs .nav-link i {
    font-size: 18px;
}

/* ACTIVE */
.v-tabs .nav-link.active {
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
    box-shadow: 0 4px 12px rgba(25,135,84,0.3);
}

/* HOVER */
.v-tabs .nav-link:hover {
    background: #e9ecef;
}



@media (max-width: 768px) {

    .v-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        gap: 10px;
        padding: 8px;
        scrollbar-width: none;
    }

    .v-tabs::-webkit-scrollbar {
        display: none;
    }

    .v-tabs .nav-link {
        flex: 0 0 auto;
        min-width: 180px;
        justify-content: center;
        text-align: center;
        margin-bottom: 0;
        font-size: 14px;
        padding: 10px 14px;
        border-radius: 50px; /* pill style */
    }

    .v-tabs .nav-link i {
        margin-right: 6px;
    }

    .v-tabs .nav-link.active {
    transform: scale(1.03);
}

}













/* board members page */

.profile-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.profile-body {
    padding: 20px;
    text-align: center;
}

.profile-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.profile-text {
    font-size: 0.95rem;
    color: #666;
}




.card-custom {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            transition: 0.3s ease;
        }

        .card-custom:hover {
            transform: translateY(-5px);
        }

        .card-img-top {
            height: 220px;
            object-fit: cover;
        }

        .btn-custom {
            background-color: #146c43;
            color: #fff;
            border-radius: 8px;
            padding: 10px 20px;
        }

        .btn-custom:hover {
            background-color: #b71c1c;
            color: #fff;
        }



        .card-custom2 {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            transition: 0.3s ease;
        }

        .card-custom2:hover {
            transform: translateY(-5px);
        }

        .card-img-top2 {
            height: 60px;
            object-fit: none;
        }

        .btn-custom {
            background-color: #146c43;
            color: #fff;
            border-radius: 8px;
            padding: 10px 20px;
        }

        .btn-custom:hover {
            background-color: #b71c1c;
            color: #fff;
        }




  .mega-menu {
  border-radius: 15px;
  background: #fff;
}

.mega-link {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.mega-link:hover {
  color: #6f42c1;
  transform: translateX(3px);
}


.tool-box {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  transition: 0.2s;
}



.tool-box i{
margin-top:4px;
}


.tool-box:hover {
  background: #f8f9fa;
}

.dropdown-menu {
  border-radius: 10px;
  padding: 10px;
}

.dropdown-item {
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s;
}

.dropdown-item:hover {
  background: #f1f3f5;
}



/* Equal button styling */
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

/* Mobile fix */
@media (max-width: 991px) {
  .nav-actions {
    width: 100%;
    flex-direction: column;
  }

  .nav-btn {
    width: 100%;
  }
}


.pagination svg {
    display: none !important;
}

.pagination a[rel="prev"],
.pagination a[rel="next"] {
    display: none !important;
}


.profile-header .cover {
    width: 100%;
    border-radius: 12px;
}

.list-group-item.active {
    background: #4e73df;
    border-color: #4e73df;
}


/* //leaflet zoom must be under mega menu */
/* Navbar always above everything */
.navbar {
  position: relative;
  z-index: 1050;
}

/* Mega menu above navbar */
.dropdown-menu {
  z-index: 1100;
}

/* Leaflet below UI */
.leaflet-top,
.leaflet-bottom {
  z-index: 400;
}



/* prevent wide content on mobile devices */
html, body {
    overflow-x: hidden;
}

/* Prevent row overflow */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fix container-fluid on mobile */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Prevent post carousel overflow */
.carousel-item .row {
    width: 100%;
    margin: 0;
}

.card,
.post-card,
.stat-card {
    max-width: 100%;
    overflow: hidden;
}



.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #198754;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}


/* back to top */
.back-to-top:hover {
    background: #146c43;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

.back-to-top {
    z-index: 999 !important;
}




.section-menu {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 999;
}

.menu-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px;
}

.menu-wrapper a {
    white-space: nowrap;
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    color: #198754;
    font-size: 14px;
    transition: 0.3s;
}

.menu-wrapper a:hover {
    background: #198754;
    color: #fff;
}

.section-menu {
    position: sticky;
    top: 70px;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* MOBILE BUTTON */
.menu-toggle {
    width: 100%;
    padding: 10px 12px;
    background: #198754;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 6px;

    display: flex;                 /* 🔥 important */
    justify-content: flex-start;     /* 👉 move to RIGHT */
    align-items: center;
    gap: 8px;                      /* space between icon + text */
}

/* MENU */
.menu-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
}

/* MOBILE BEHAVIOR */
@media (max-width: 991px) {
    .menu-wrapper {
        display: none;
        flex-direction: column;
    }

    .menu-wrapper.active {
        display: flex;
    }
}

/* LINKS */
.menu-wrapper a {
    white-space: nowrap;
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    color: #198754;
    font-size: 14px;
}

.menu-wrapper a:hover {
    background: #198754;
    color: #fff;
}



.business-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Icon circle */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button styling */
.business-card .btn {
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
}




.styled-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px;
}

.styled-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.styled-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #198754; /* bootstrap success */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-image {
height: 80%;
padding:20px;
}

.side-image img {
width: 80%;
height: 80%;
object-fit: cover;
}








.green-fee-slider{
    position:relative;
    height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.slider-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.slider-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.green-fee-slider .container{
    position:relative;
    z-index:2;
}

.subtitle{
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:20px;
}

.title{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.read-more{
    color:white;
    text-decoration:none;
}

.slide-content{
    display:none;
    max-width:600px;
}

.slide-content.active{
    display:block;
}


/* RIGHT NAV */

.slider-nav{
    position:absolute;
    right:40px;
    top:50%;
    transform:translateY(-50%);
}

.nav-item-page1{
    color:white;
    font-size:22px;
    margin:20px 0;
    cursor:pointer;
    opacity:.4;
    transition:.3s;
}

.nav-item-page1.active{
    opacity:1;
    font-weight:700;
}

.nav-item-page1:hover{
    opacity:1;
}











.green-slider{
height:480px;
position:relative;
display:flex;
align-items:center;
overflow:hidden;
}

.slider-bg{
position:absolute;
inset:0;
z-index:1;
}

.slider-bg img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}

.overlay{
position:absolute;
inset:0;
background:rgba(4, 4, 4, 0.683);
}

.green-slider .container{
z-index:2;
position:relative;
}

/* content */

.slide{
opacity:0;
transform:translateY(40px);
position:absolute;
transition:.6s ease;
max-width:600px;
}

.slide.active{
opacity:1;
transform:translateY(0);
position:relative;
}

.subtitle{
letter-spacing:2px;
font-size:13px;
margin-bottom:20px;
}

.slide h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.read-btn{
color:white;
text-decoration:none;
border-bottom:2px solid white;
padding-bottom:4px;
}

/* right nav */

.slider-nav{
position:absolute;
right:40px;
top:50%;
transform:translateY(-50%);
}

.nav-item-page2{
color:white;
opacity:.4;
margin:25px 0;
cursor:pointer;
position:relative;
}

.nav-item-page2 span{
font-size:22px;
font-weight:600;
}

.nav-item-page2.active{
opacity:1;
}

.line{
width:40px;
height:2px;
background:white;
margin-top:5px;
opacity:0;
transition:.3s;
}

.nav-item-page2.active .line{
opacity:1;
width:70px;
}

/* mobile */

@media(max-width:991px){

.green-slider{
height:auto;
padding:100px 0;
}

.slider-nav{
position:relative;
right:auto;
top:auto;
transform:none;
display:flex;
gap:20px;
margin-top:40px;
}

}


#postCarousel {
min-height: 260px;
}

.carousel-item {
display: block;
}






.cookie-consent{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:#fff;
padding:15px 20px;
z-index:9999;
transform:translateY(100%);
transition:.4s ease;
}

.cookie-consent.show{
transform:translateY(0);
}

.cookie-inner{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.cookie-inner p{
margin:0;
font-size:14px;
}

.cookie-buttons{
display:flex;
gap:10px;
}

@media(max-width:768px){
.cookie-inner{
flex-direction:column;
text-align:center;
}
}










.gallery-section {
background: #f5f5f5;
}

.gallery img {
width: 100%;
height: 100%;
object-fit: cover;
transition: .3s;
}

.gallery-item {
transition: .4s ease;
}

.gallery img:hover {
transform: scale(1.03);
}

.filter-btn {
margin: 5px;
}

.filter-btn.active {
background: #000;
color: #fff;
}




.gallery-masonry{
column-count:3;
column-gap:20px;
}

.gallery-item{
break-inside: avoid;
margin-bottom:20px;
}

.gallery-img{
width:100%;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.gallery-img:hover{
transform:scale(1.02);
}


/* tablet */
@media (max-width:992px){
.gallery-masonry{
column-count:2;
}
}

/* mobile */
@media (max-width:576px){
.gallery-masonry{
column-count:1;
}
}


.video-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.video-gallery img{
width:100%;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.video-gallery img:hover{
transform:scale(1.03);
}

@media(max-width:768px){
.video-gallery{
grid-template-columns:1fr;
}
}



.sme-contact-table th,
.sme-contact-table td {
    text-align: left !important;
}





.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    color: #0d6e1f;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-underline {
    width: 120px;
    height: 3px;
    background: #d6d6d6;
    margin: 12px auto 0;
    position: relative;
    overflow: hidden;
}

.title-underline .dot {
    width: 12px;
    height: 12px;
    background: #0d6e1f;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 0;
    animation: slideDot 2s infinite alternate ease-in-out;
}

@keyframes slideDot {
    0% { left: 0; }
    100% { left: 108px; }
}







}