/* Base Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #FF9800;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #1b1b1b;
    --light-bg: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ===== About Hero Section ===== */
.about-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    padding: 30px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 25px 0;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-hero h1:hover {
    transform: translateY(-5px);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.about-hero p {
    font-size: 1.5rem;
    margin: 0 auto 30px;
    max-width: 700px;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-hero p:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

/* ===== Contact Hero Section ===== */
.contact-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    padding: 30px;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 25px 0;
    color: #ffffff !important; /* Force white color */
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-hero h1:hover {
    transform: translateY(-5px);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.contact-hero p {
    font-size: 1.5rem;
    margin: 0 auto 30px;
    max-width: 700px;
    color: #ffffff !important; /* Force white color */
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-hero p:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #e8f5e9 !important;
    opacity: 0.9;
}

.breadcrumb a {
    color: #e8f5e9 !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #81c784;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff; /* Updated to specified green */
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 80px;
    overflow: hidden;
    color: white;
}

header.scrolled {
    padding: 0;
    background-color: #ffffff; /* Slightly darker shade for scrolled state */
    height: 60px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 130%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 5px 0;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    display: block;
    object-fit: contain;
}

header.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    color: rgb(0, 12, 3); /* Ensure nav links are white */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(0, 60, 6); /* Changed underline color to white */
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: rgb(0, 60, 6); /* Keep text white on hover/active */
    opacity: 0.9; /* Slightly reduce opacity on hover for better feedback */
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: var(--transition);
}

.mobile-menu.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 10px 0;
    z-index: 999;
}

.nav-links.active li {
    margin: 10px 0;
    text-align: center;
    width: 100%;
}

.nav-links.active li a {
    display: block;
    padding: 10px;
    width: 100%;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0) 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0) 50%),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0) 50%),
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.05) 0%, rgba(233, 30, 99, 0) 50%),
        url('../Images/gate picture/herobg.png'), 
        #ffffff;
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, cover, 100% 100%;
    background-position: center;
    animation: movingBackground 20s ease infinite alternate;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    margin-right: auto;
    margin-left: 10%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.nature-text {
    color: #2E7D32; /* Dark green */
    font-weight: 700;
}

.big-text {
    color: #B71C1C; /* Dark red */
    font-weight: 700;
}

.basket-text {
    color: #000000; /* Black */
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    animation: fadeInUp 1.4s ease;
    margin-bottom: 25px;
}

.hero-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    animation: fadeInUp 1.6s ease;
    margin: 40px 0 20px 0;
}

.hero-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    color: #555;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-social .social-icon:nth-child(1) { color: #1877f2; } /* Facebook blue */
.hero-social .social-icon:nth-child(2) { color: #e4405f; } /* Instagram pink */
.hero-social .social-icon:nth-child(3) { color: #000000; } /* TikTok black */

.hero-social .social-icon:nth-child(1):hover { background-color: #1877f2; color: white; }
.hero-social .social-icon:nth-child(2):hover { background-color: #e4405f; color: white; }
.hero-social .social-icon:nth-child(3):hover { background-color: #000000; color: white; }

.hero-social .social-icon i {
    transition: all 0.3s ease;
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 8s infinite ease-in-out;
    transition: transform 0.2s ease-out;
    z-index: 2;
}

.floating-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.floating-item:hover img {
    transform: scale(1.2) rotate(10deg);
}

.item1 {
    top: 10%;
    left: 25%;
    transform: none;
    animation-delay: 0s;
}

.item2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.item3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    width: 100px;
    height: 100px;
}

/* Moving grocery items */
.moving-grocery {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 1;
    animation: moveHorizontally 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    will-change: transform, opacity;
}

.moving-grocery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes moveHorizontally {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
        opacity: 0;
        animation-timing-function: ease-out;
    }
    10% {
        opacity: 1;
        animation-timing-function: cubic-bezier(0.2, 0.8, 0.8, 0.2);
    }
    30% {
        transform: translateX(20vw) translateY(-50px) rotate(90deg);
    }
    50% {
        transform: translateX(50vw) translateY(20px) rotate(180deg);
        animation-timing-function: cubic-bezier(0.8, 0.2, 0.8, 0.2);
    }
    70% {
        transform: translateX(80vw) translateY(-40px) rotate(270deg);
    }
    90% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) rotate(360deg);
        opacity: 0;
    }
}

.moving-item1 {
    top: 15%;
    left: 0;
    animation: moveHorizontally 40s linear infinite;
    animation-delay: 0s;
}

.moving-item2 {
    top: 40%;
    left: 0;
    animation: moveHorizontally 45s linear infinite;
    animation-delay: 5s;
}

.moving-item3 {
    top: 70%;
    left: 0;
    animation: moveHorizontally 42s linear infinite;
    animation-delay: 2s;
}

.moving-item4 {
    top: 25%;
    left: 0;
    animation: moveHorizontally 48s linear infinite;
    animation-delay: 8s;
}

.moving-item5 {
    top: 55%;
    left: 0;
    animation: moveHorizontally 44s linear infinite;
    animation-delay: 12s;
}

/* Mouse follow container - Hidden as requested */
.mouse-follow-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mouse-follow-item {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    pointer-events: none;
    opacity: 0.8;
}

.mouse-follow-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Features Section Styles */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--accent-color);
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Featured Products Section Styles */
.featured-products {
    padding: 80px 0;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1.2;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(56, 142, 60, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.about-image:hover::after {
    opacity: 0.8;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skew(-20deg);
    }
    100% {
        transform: translateX(100%) skew(-20deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-preview .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        max-width: 100%;
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.our-team .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-content h2.section-title {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.team-content h2 .highlight {
    color: var(--primary-color);
    position: relative;
}

.team-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(76, 175, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.team-content .team-description {
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(0);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-item:hover .icon-wrapper {
    background-color: var(--accent-color);
    transform: rotate(10deg) scale(1.1);
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    color: white;
    transform: scale(1.1);
}

.content-wrapper h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-wrapper p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 500px;
}

.team-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-image:hover img {
    transform: scale(1.05);
}

/* Background Elements */
.team-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.team-bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    animation-delay: 0.5s;
}

.team-bg-shape-2 {
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .our-team .container {
        gap: 40px;
    }
    
    .team-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        padding-bottom: 30px;
    }
    
    .team-member {
        flex: 0 0 250px;
    }
    
    .team-content {
        order: 2;
        text-align: center;
    }
    
    .team-content h2.section-title {
        text-align: center;
    }
    
    .team-content .team-description {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 20px;
    }
    
    .highlight-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-image {
        order: 1;
        max-width: 600px;
        height: 400px;
        margin: 0 auto;
        transform: none !important;
    }
    
    .team-image:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 300px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .icon-wrapper {
        margin-bottom: 15px;
    }
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.brands-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.brands-section .section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.brands-section .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(76, 175, 80, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.brands-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: calc(250px * 14);
}

.brand-item {
    flex: 0 0 200px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.brand-item:hover {
    transform: translateY(-5px);
    filter: grayscale(0) opacity(1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 7));
    }
}

.brands-slider:hover .brands-track {
    animation-play-state: paused;
}

.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

@media (max-width: 1200px) {
    .brands-track {
        animation-duration: 30s;
    }
}

@media (max-width: 768px) {
    .brands-section .section-title {
        font-size: 2rem;
    }
    
    .brands-section .section-subtitle {
        font-size: 1rem;
    }
    
    .brand-item {
        flex: 0 0 150px;
        padding: 0 15px;
    }
    
    .brand-item img {
        max-height: 60px;
    }
    
    .brands-slider::before,
    .brands-slider::after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-section .section-header {
        margin-bottom: 30px;
    }
    
    .brands-track {
        animation-duration: 20s;
    }
    
    .brand-item {
        flex: 0 0 120px;
        padding: 0 10px;
    }
    
    .brand-item img {
        max-height: 50px;
    }
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.about-hero-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%234CAF50" fill-opacity="0.03" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.story-content {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    border-radius: 5px;
    opacity: 0.3;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(-5deg);
    border: 10px solid white;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.1), rgba(76, 175, 80, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.story-image:hover::before {
    opacity: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.story-image:hover img {
    transform: scale(1.05);
}

.our-values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Orange hover effects for all interactive elements */
.feature-icon i,
.value-icon i,
.point-icon i,
.social-icon i,
.team-social a i,
.member-image .placeholder-image i {
    transition: all 0.3s ease;
}

.feature-icon:hover i,
.value-icon:hover i,
.point:hover .point-icon i,
.social-icon:hover i,
.team-social a:hover i,
.member-image .placeholder-image:hover i {
    color: var(--accent-color) !important;
    transform: scale(1.1) rotate(5deg);
}

/* Button hover effects */
.primary-btn:hover,
.secondary-btn:hover,
.btn:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 152, 0, 0.2);
}

.value-card:hover .value-icon {
    background: var(--accent-color) !important;
    transform: rotateY(180deg);
}

.value-card .value-icon i {
    transition: all 0.5s ease;
}

.value-card:hover .value-icon i {
    transform: rotateY(-180deg);
    color: white !important;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3a8c3f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-color) !important;
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-us-banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.choose-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.point-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.point:hover .point-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--secondary-color);
}

/* Home Page Team Section */
.home-team {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.home-team-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image-side {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image-container {
    position: relative;
    padding-bottom: 120%; /* Makes the container square */
    overflow: hidden;
    border-radius: 15px;
}

.team-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-image-side:hover img {
    transform: scale(1.05);
}

.team-content-side {
    flex: 1;
    padding: 20px 0;
}

.home-team .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.team-intro {
    text-align: left;
    margin: 0 0 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.team-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.team-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-feature:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.team-cta {
    text-align: left;
    margin: 40px 0 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .home-team-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-image-side,
    .team-content-side {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .home-team .section-title,
    .team-intro {
        text-align: center;
    }
    
    .team-cta {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .team-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px 20px;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
}

/* About Page Team Section */
.about-team {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-team .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-team .section-title {
    margin-bottom: 15px;
}

.about-team .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid #eee;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    background: #fff;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .member-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .member-image {
        height: 300px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-text .section-title,
    .team-text p {
        text-align: center;
    }
    
    .team-text .btn {
        display: block;
        margin: 30px auto 0;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .our-team {
        padding: 80px 0;
    }
    
    .team-highlight {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* About Page Team Section */
.about-page .our-team {
    background-color: #f9f9f9;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-page .value-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-page .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-page .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.about-page .value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.3);
}

.about-page .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.about-page .value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-page .value-card:hover h3 {
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
    .about-page .values-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-page .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-page .our-team {
        padding: 60px 0;
    }
}

.team-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
    -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.team-member {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.team-member {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9e9e9e;
}

/* Products Page Styles */
.products-hero {
    height: 40vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.products-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.products-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.products-section {
    padding: 80px 0;
}

.products-filter {
    margin-bottom: 40px;
    text-align: center;
}

.products-filter h2 {
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact Page Styles */
.contact-hero {
    height: 40vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.contact-info {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--secondary-color);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-content p {
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.map-container {
    height: 400px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9e9e9e;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes movingBackground {
    0% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }
    100% {
        background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%;
    }
}

@keyframes moveHorizontally {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0) rotate(0deg);
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-preview .container,
    .our-story .container,
    .why-choose-us .container,
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .story-image,
    .choose-us-banner {
        order: -1;
    }
}

@media (max-width: 768px) {
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1010;
        background-color: transparent;
        width: 40px;
        height: 40px;
    }
    
    .hamburger {
        width: 30px;
        height: 25px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    
    .hamburger span {
        display: block !important;
        width: 100%;
        height: 4px;
        background-color: #000;
        border-radius: 4px;
    }
    
    .nav-links.active {
        display: flex;
        top: 60px;
        position: fixed;
    }
    
    .logo {
        max-width: 70%;
    }
    
    .logo img {
        height: 30px;
    }
    
    header.scrolled .logo img {
        height: 25px;
    }
    
    header {
        height: 60px;
        overflow: hidden;
    }
    
    header.scrolled {
        height: 50px;
    }
    
    /* Make hamburger more visible */
    .hamburger span {
        background-color: #000;
        height: 3px;
        border-radius: 3px;
    }
    
    .mobile-menu.active .hamburger span {
        background-color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-item {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-hero h1,
    .products-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2,
    .choose-us-content h2,
    .form-content h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .modal-image-container {
        height: 300px;
    }
    
    /* Fix for mobile product display */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-image img {
        object-fit: contain;
    }
    
    /* Keep moving items, hide only floating items */
    .floating-item {
        display: none;
    }
    
    /* Adjust moving grocery items for mobile */
    .moving-grocery {
        width: 80px;
        height: 80px;
        transform-origin: left center;
    }
    
    /* Fix container overflow on mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    

}

/* Added styles for colored heading text */
.colored-heading {
    color: var(--primary-color);
    font-weight: bold;
}

/* Logo size adjusted to fit header */
.logo img {
    height: 100px;
}

/* Added styles for hiding bubbles on mobile */
.bubble {
    display: none;
}

/* Added styles for improving section transitions */
.section-transition-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.section-transition-item {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0;
    transition: transform 1.5s ease-out, opacity 1.5s ease-out;
    z-index: 1000;
}

.section-transition-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Products Hero Section */
.products-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 80px;
    background: #f5f5f5;
}

.products-hero-image {
    width: 100%;
    height: 100%;
    display: block;
}

.products-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .products-hero {
        height: 300px;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .products-hero {
        height: 250px;
    }
}

/* Store Showcase Section */
.store-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.store-showcase .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.store-showcase .section-title {
    margin-bottom: 15px;
}

.store-showcase .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 15px;
}

.store-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.store-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.store-item:hover .store-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .store-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .store-item {
        aspect-ratio: 4/3;
    }
}
