:root {
    --primary-color: #0B4619;
    --primary-light: #166534;
    --secondary-color: #FFC107;
    --accent-color: #FF9800;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --container-max-width: 1200px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--secondary-color);
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    font-weight: normal;
    font-size: 13px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.w-100 {
    width: 100%;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    flex: 0 0 auto;
    min-width: 150px;
}

.logo img {
    height: 75px;
    /* Increased slightly for prominence */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-weight: normal;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 13px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-cta {
    flex: 0 0 auto;
}

.mobile-menu-logo {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* ===================== */
/* Dropdown Menu Styles  */
/* ===================== */
.nav-links li.dropdown {
    position: relative;
}

/* Chevron icon sizing */
.dropdown-toggle .fa-chevron-down {
    font-size: 0.65em;
    margin-left: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* Show dropdown on hover (desktop) */
.nav-links li.dropdown:hover .dropdown-menu,
.nav-links li.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Rotate chevron on hover */
.nav-links li.dropdown:hover .fa-chevron-down,
.nav-links li.dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
}

/* The dropdown panel */
.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    z-index: 9999;
    list-style: none;
    padding: 14px 0 0.5rem 0;
    /* top padding creates visual gap without breaking hover */
}

/* Dropdown items */
.nav-links .dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-links .dropdown-menu li:last-child {
    border-bottom: none;
}

.nav-links .dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.25rem;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: none;
    white-space: nowrap;
    letter-spacing: 0;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav-links .dropdown-menu li a::after {
    display: none;
    /* hide underline from nav-links a::after */
}

.nav-links .dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.6rem;
}


/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1002;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1002;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(181deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0) 100%);
    z-index: 2;
}

.slide-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Features */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-weight: 600;
    color: var(--text-light);
}

/* Product Section */
.products {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: scale(1.02);
}

.product-img {
    height: 400px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.view-all {
    text-align: center;
    margin-top: 4rem;
    font-style: italic;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-card {
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 4rem;
    color: white;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
}

.map-container {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 70, 25, 0.85) 0%, rgba(22, 101, 52, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-info i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary-color);
}

.map-info p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-family: inherit;
}

/* Footer */
.footer {
    padding: 0rem 0;
    background-color: #f3f4f6;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0.8rem 0rem;
    border-top: 1px solid #E5E7EB;
}

.footer-bottom .social-links {
    justify-self: end;
}

.copyRight {
    color: #525252;
    font-size: 12px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Page Header (Banner) */
.page-header {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-table th,
.profile-table td {
    padding: 1.25rem 2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.profile-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    width: 30%;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card .role {
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-card .phone {
    color: var(--accent-color);
    font-weight: 700;
}

/* Product Details Page Specifics */
.product-category {
    padding: 5rem 0;
}

.product-category h2 {
    border-left: 5px solid var(--secondary-color);
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.product-spec {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.product-spec strong {
    color: var(--primary-color);
}

.nutritional-quote {
    background: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.nutritional-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Quote Box Global */
.quote-box {
    background: #eef7ed;
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-weight: 600;
}

/* Floating Buttons */
.btt {
    position: fixed;
    width: 35px;
    height: 35px;
    bottom: 110px;
    right: 50px;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 50%, #06260d 100%);
    color: #fff !important;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 0px 1px 1px #fff !important;
    display: none;
    z-index: 100;
    transition: all 0.3s ease;
    text-align: center;
}

.btt:hover {
    transform: translateY(-3px);
}

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    right: 33px;
    color: green !important;
    text-align: center;
    font-size: 45px;
    z-index: 10;
    transition: all 0.3s ease;
}

.whatsapp_float:hover {
    transform: scale(1.1);
}

.phoneBtm-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-color) 50%, #06260d 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(11, 70, 25, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease-out;
    animation-fill-mode: both;
}

.phoneBtm-btn a {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phoneBtm-btn a:hover {
    color: var(--secondary-color);
}

.phoneBtm-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 45px;
    z-index: -1;
    background: rgba(11, 70, 25, 0.45);
    -webkit-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.bookNow-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    background: linear-gradient(90deg, #ffe082 0%, var(--secondary-color) 40%, var(--accent-color) 100%);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease-out;
    animation-fill-mode: both;
}

.bookNow-btn a {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    /* text-transform: uppercase; */
}

.bookNow-btn:hover {
    transform: scale(1.05);
}

.bookNow-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 45px;
    z-index: -1;
    background: rgba(255, 193, 7, 0.45);
    -webkit-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@media screen and (max-width:767px) {
    .phoneBtm-btn {
        bottom: 8px;
    }

    .bookNow-btn {
        bottom: 8px;
    }

    .btt {
        bottom: 110px;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Global Utilities */
.section-padding {
    padding: 8rem 0;
}

.section-subtitle {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.dark-section {
    background-color: var(--primary-color);
    color: white;
}

.dark-card {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

/* Contact Page Specifics */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
}

.team-title {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.leadership-card {
    text-align: left;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.leadership-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.highlight-card {
    border-left: 4px solid var(--secondary-color);
}

.info-item i {
    background: var(--primary-color);
    color: white;
}

.inquiry-card {
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-card h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Home Stats */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 4rem auto;
    max-width: calc(var(--container-max-width) + 4rem);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Updated transition for smoother hover */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    font-family: 'Outfit', monospace;
    animation: pulseNumber 2s infinite alternate;
}

.stat-label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: white;
    letter-spacing: 1.5px;
}

@keyframes pulseNumber {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.stat-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design System --- */

/* Laptops & Small Desktops (1200px and down) */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 95%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablets & Small Laptops (992px and down) */
@media (max-width: 992px) {
    .section-padding {
        padding: 5rem 0;
    }

    .nav-links {
        gap: 1.5rem;
    }

    /* Make logo bigger on tablets */
    .logo img {
        height: 65px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid,
    .about-flex,
    .contact-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    /* Specific override for Farm to Freezer section */
    .farm-to-freezer .about-flex {
        flex-direction: column-reverse !important;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image img {
        box-shadow: 15px 15px 0 var(--secondary-color);
        max-width: 90%;
        margin: 0 auto;
    }

    /* Specific adjustments for Farm to Freezer section on mobile */
    .farm-to-freezer .about-image img {
        box-shadow: 10px 10px 0 var(--secondary-color);
        border-radius: 20px;
    }
}

/* Mobile & Small Tablets (768px and down) */
@media (max-width: 768px) {

    /* Adjust padding for Farm to Freezer section */
    .farm-to-freezer .about-text {
        padding: 2rem 0;
        text-align: center;
    }

    .farm-to-freezer .about-image {
        margin-bottom: 2rem;
    }

    .slide img {
        object-position: 75% 50%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .slider-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .leadership-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .header {
        height: 70px;
    }

    .header .container {
        padding: 0 1rem;
    }

    .nav {
        gap: 0.5rem;
        justify-content: space-between;
    }

    .nav-links {
        display: flow-root;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        /* background: linear-gradient(135deg, rgb(11 70 25 / 85%) 0%, rgb(22 101 52 / 0%) 100%), url(../images/menu-bg.webp); */
        background: url(../images/menu-bg-2.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
        text-align: left;
        align-items: flex-start;
        margin: 0;
        z-index: 1001;
        transition: left 0.5s ease-in-out;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: #1F2937 !important;
        font-size: 1.2rem;
        line-height: 45px;
        font-weight: normal;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--secondary-color);
    }

    .header-cta {
        display: block;
        flex: 0 1 auto;
    }

    .header-cta .btn {
        padding: 0.5rem 0.75rem;
        font-size: 13px;
    }

    .mobile-menu-btn {
        display: block;
        padding: 0.25rem;
    }

    /* Mobile Dropdown */
    .nav-links li.dropdown {
        width: 100%;
    }

    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--secondary-color);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.08);
        margin-left: 0.5rem;
        min-width: auto;
        width: calc(100% - 0.5rem);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        padding: 0;
        pointer-events: none;
    }

    .nav-links li.dropdown.open .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        max-height: 250px;
        visibility: visible;
        padding: 0.25rem 0;
        pointer-events: auto;
    }

    .nav-links .dropdown-menu li a {
        font-size: 1rem;
        color: #1F2937 !important;
        padding: 0.5rem 1rem;
        line-height: 1.5;
    }

    .nav-links .dropdown-menu li a:hover {
        color: var(--secondary-color) !important;
        padding-left: 1.4rem;
        background: transparent;
    }


    .mobile-menu-logo {
        display: block;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .mobile-menu-logo img {
        height: 18vh;
        width: auto;
        /* background: white; */
        padding: 5px 10px;
        border-radius: 8px;
    }

    .logo img {
        height: 45px;
    }

    .logo {
        min-width: auto;
        flex: 0 1 auto;
    }

    .hero {
        text-align: center;
        padding: 0 1rem;
        height: 70vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.5rem;
    }

    .slide-content-container {
        align-items: flex-end;
    }

    .hero-content {
        padding-bottom: 50px;
    }

    .hero-actions .btn {
        width: calc(50% - 0.5rem);
        min-width: auto;
        padding: 0.4rem;
        font-size: 13px;
    }

    .features-grid,
    .team-grid,
    .stats-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 2.5rem 1.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .stat-num {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        margin-top: 2rem;
        border-radius: 15px;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info i {
        font-size: 2.5rem;
    }

    .map-info p {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-form-box {
        padding: 2rem;
    }

    .footer-bottom {
        display: flex;
        gap: 1.5rem;
        text-align: left;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .footer-bottom .social-links {
        justify-self: center;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .profile-table th,
    .profile-table td {
        padding: 0.75rem 1rem;
    }

    .stats-bar {
        margin-top: 2rem;
        border-radius: 20px;
        padding: 3rem 1rem;
    }
}

/* Small Mobile Devices (480px and down) */
@media (max-width: 480px) {

    .header .container {
        width: 80%;
        padding: 0 0.5rem;
    }

    /* Keep logo proportional on small mobile devices */
    .logo img {
        height: 38px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .hero {
        height: 60vh;
        min-height: 460px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}