/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth Load Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hero Section Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --primary-green: #1a472a;
    --light-green: #2e7d32;
    --logo-green: #17A74B;
    --dark-green: #0d2e1a;
    --gold: #d4af37;
    --light-gold: #f4e5c2;
    --light-beige: #f8f5f0;
    --medium-beige: #f0ebe5;
    --dark-brown: #3e2723;
    --light-brown: #8d6e63;
    --white: #ffffff;
    --gray: #f9f9f9;
    --dark-gray: #222222;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.12);
    --header-height: 110px;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 0;
    /* avoid white gap above hero; main handles offset */
}

main {
    padding-top: var(--header-height);
    /* offsets fixed header for all content */
}

h1,
h2,
h3,
h4 {
    color: var(--dark-green);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1.2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 3px;
}

.section-title-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-green);
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.btn-gold {
    background-color: var(--gold);
    color: white;
}

.btn-gold:hover {
    background-color: #c19b2e;
}

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

.btn-outline:hover {
    background-color: var(--primary-green);
    color: white;
}

section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: calc(var(--header-height) + 20px);
    /* clean anchor jumps under fixed header */
}

.section-light {
    background-color: var(--white);
}

.section-beige {
    background-color: var(--medium-beige);
}

.section-pattern {
    background-color: var(--light-beige);
    position: relative;
    overflow: hidden;
}

.section-pattern:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e7d32' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-title-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-center p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s;
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    transition: all 0.4s;
}

header.scrolled .header-container {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
    margin-left: -100px;
}

.logo-image {
    height: 260x;
    width: 260px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    font-size: 1.05rem;
}

nav ul li a:hover {
    color: var(--primary-green);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: width 0.3s;
    border-radius: 2px;
}

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

nav ul li a.active {
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-green);
    cursor: pointer;
    z-index: 1001;
}

.hero {
    margin-top: calc(-1 * var(--header-height));
    /* pull hero up under header */
    padding-top: calc(90px + var(--header-height));
    /* tighter spacing under header */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    transition: padding 0.35s ease;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1,
.hero p {
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h1.hero-title-animated {
    opacity: 1;
    transform: translateY(0);
    animation: heroFadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero p.hero-text-animated {
    opacity: 0.9;
    transform: translateY(0);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-btns.hero-btns-animated {
    opacity: 1;
    transform: translateY(0);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.hero-btns .btn {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btns.hero-btns-animated .btn:nth-child(1) {
    animation: heroScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.hero-btns.hero-btns-animated .btn:nth-child(2) {
    animation: heroScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.hero-btns .btn:hover {
    transform: translateY(-5px) scale(1.02);
}

/* First section spacing for non-hero pages */
main>section:first-of-type:not(.hero) {
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(10px + var(--header-height));
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(248, 245, 240, 0.9), rgba(248, 245, 240, 0.9)), url('https://images.unsplash.com/photo-1591288497594-42d1f277d3dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Reduce top padding on small screens to keep spacing tight */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    body {
        padding-top: 0;
    }

    main {
        padding-top: var(--header-height);
    }

    section {
        padding: 60px 0;
        scroll-margin-top: calc(var(--header-height) + 10px);
    }

    .hero {
        margin-top: 0;
        padding-top: calc(var(--header-height) + 80px);
        min-height: 100vh;
    }

    main>section:first-of-type:not(.hero) {
        padding-top: calc(8px + var(--header-height));
    }

    /* Ensure service card headers fill width on mobile */
    .service-type-card {
        padding: 0;
    }

    .service-type-content {
        padding: 12px 16px 16px;
    }

    /* Fix logo visibility on mobile */
    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .logo {
        margin-left: -50px !important;
        padding-left: 0 !important;
    }

    .logo-image {
        height: 220px;
        width: auto;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px;
    background: url('images/who.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-image:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 15px;
    z-index: -1;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.about-card:nth-child(1) {
    animation-delay: 0.2s;
}

.about-card:nth-child(2) {
    animation-delay: 0.4s;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--primary-green));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.about-card i {
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.about-card h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.about-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    transition: all 0.4s ease;
}

/* Updated Services Section - Full Width Container Cards */
.services-section {
    background: linear-gradient(135deg, #f8fdf5 0%, #ffffff 50%, #fdfbf5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 30%, rgba(24, 167, 75, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Full Width Container Card */
.service-full-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    position: relative;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.service-full-card:last-child {
    margin-bottom: 0;
}

.service-full-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Full Card Header */
.full-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    position: relative;
}

.full-header-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.full-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.full-header-text h3::after {
    display: none;
}

.full-header-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Buyer Card Styling */
.buyer-full-card {
    border: 2px solid rgba(24, 167, 75, 0.3);
}

.buyer-full-card .full-card-header {
    background: linear-gradient(135deg, rgba(24, 167, 75, 0.06) 0%, rgba(24, 167, 75, 0.02) 100%);
    border-bottom: 1px solid rgba(24, 167, 75, 0.1);
}

.buyer-full-card .full-header-icon {
    background: linear-gradient(135deg, #18a74b 0%, #15903f 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(24, 167, 75, 0.25);
}

.buyer-full-card .full-header-text h3 {
    color: #1a472a;
}

.buyer-full-card .full-header-text p {
    color: #2d5a3f;
}

/* Seller Card Styling - Light Brown/Amber Theme */
.seller-full-card {
    border: 2px solid rgba(180, 83, 9, 0.3);
}

.seller-full-card .full-card-header {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.08) 0%, rgba(180, 83, 9, 0.02) 100%);
    border-bottom: 1px solid rgba(180, 83, 9, 0.12);
}

.seller-full-card .full-header-icon {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.3);
}

.seller-full-card .full-header-text h3 {
    color: #92400e;
}

.seller-full-card .full-header-text p {
    color: #b45309;
}

/* Inner Services Row - 4 Cards in a Row */
.inner-services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px 28px;
}

@media (max-width: 1100px) {
    .inner-services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .inner-services-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }

    .full-card-header {
        padding: 20px;
        gap: 14px;
    }

    .full-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .full-header-text h3 {
        font-size: 1.3rem;
    }
}

/* Inner Service Card */
.inner-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.inner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Inner Card Icon - No animation on hover */
.inner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

/* Buyer Icon */
.buyer-icon {
    background: linear-gradient(135deg, rgba(24, 167, 75, 0.1) 0%, rgba(24, 167, 75, 0.05) 100%);
    color: #18a74b;
    border: 1px solid rgba(24, 167, 75, 0.12);
}

/* Seller Icon - Light Brown/Amber */
.seller-icon {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.12) 0%, rgba(180, 83, 9, 0.05) 100%);
    color: #b45309;
    border: 1px solid rgba(180, 83, 9, 0.15);
}

/* Inner Card Content */
.inner-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.buyer-full-card .inner-card:hover h4 {
    color: #18a74b;
}

.seller-full-card .inner-card:hover h4 {
    color: #b45309;
}

.inner-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Visible borders for inner cards */
.buyer-full-card .inner-card {
    border: 2px solid rgba(24, 167, 75, 0.2);
}

.buyer-full-card .inner-card:hover {
    border-color: #18a74b;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(24, 167, 75, 0.15);
}

.seller-full-card .inner-card {
    border: 2px solid rgba(180, 83, 9, 0.2);
}

.seller-full-card .inner-card:hover {
    border-color: #b45309;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.15);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.service-type-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s ease-out forwards;
}

.service-type-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-type-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.service-type-card:hover::before {
    left: 100%;
}

.service-type-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-type-header {
    background: #18a74b;
    /* Fallback */
    background: linear-gradient(135deg, #18a74b 0%, #15903f 100%);
    color: white;
    padding: 14px 20px;
    /* Reduced vertical padding by 2px */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-type-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -20px);
    }
}

.service-type-card.sellers .service-type-header {
    background: #c19b2e;
    /* Fallback */
    background: linear-gradient(135deg, var(--gold) 0%, #c19b2e 100%);
    color: var(--dark-green);
}

.service-type-header i {
    font-size: 2rem;
    margin-bottom: 5px;
    /* Reduced margin */
    animation: iconBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-type-header h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2px;
    /* Reduced margin */
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.service-type-card.sellers .service-type-header h3 {
    color: white;
}

.service-type-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.service-type-card.sellers .service-type-header p {
    color: white;
}

.service-type-content {
    padding: 8px 20px 18px;
    /* Reduced vertical padding by 2px */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-features li {
    padding: 8px 0;
    /* Reduced list item padding by 2px */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 90px 1fr;
    /* Reduced width for tighter title mapping */
    gap: 15px;
    align-items: start;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    animation: itemSlideIn 0.6s ease-out forwards;
    transition: all 0.3s ease;
    /* Smooth transition for hover */
    border-radius: 6px;
    /* Rounded corners for hover highlight */
    padding-left: 5px;
    /* Initial padding for hover shift */
    padding-right: 5px;
}

.service-features li:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    /* Premium Glass Tint */
    transform: translateY(-4px) scale(1.02);
    /* Lift and Scale */
    box-shadow: 0 10px 25px rgba(24, 167, 75, 0.15);
    /* Soft colored glow */
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    border-bottom-color: transparent;
}

.feature-title {
    text-align: left;
    font-weight: 700;
    color: var(--dark-green);
    display: block;
    line-height: 1.3;
}

.service-features li:nth-child(1) {
    animation-delay: 0.5s;
}

.service-features li:nth-child(2) {
    animation-delay: 0.6s;
}

.service-features li:nth-child(3) {
    animation-delay: 0.7s;
}

.service-features li:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes itemSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.feature-title {
    font-weight: 700;
    color: #18a74b;
    line-height: 1.4;
}

.feature-desc {
    color: var(--text-color);
    text-align: left;
    display: flex;
}

.feature-desc::before {
    content: "\2013";
    /* En dash */
    margin-right: 12px;
    flex-shrink: 0;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Mini cards for services grid */
.service-mini-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.service-mini-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.service-mini-head .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(23, 167, 75, 0.12);
    color: #0d2e1a;
    font-size: 16px;
}

.service-mini-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0d2e1a;
    background: rgba(23, 167, 75, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
}

.service-mini-card.seller .service-mini-head .icon-circle,
.service-mini-card.seller .service-mini-badge {
    background: rgba(212, 175, 55, 0.18);
    color: #7a5a10;
}

.service-mini-card h4 {
    margin: 2px 0 4px;
    font-size: 1rem;
    color: #1a472a;
}

.service-mini-desc {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Service Section Headers */
.service-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-section-header:first-of-type {
    margin-top: 0;
}

.service-section-header i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-section-header h3 {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
}

.service-section-header h3::after {
    display: none;
}

.buyer-header {
    background: linear-gradient(135deg, rgba(24, 167, 75, 0.1) 0%, rgba(24, 167, 75, 0.05) 100%);
    border-left: 4px solid #18a74b;
}

.buyer-header i {
    color: #18a74b;
}

.buyer-header h3 {
    color: #1a472a;
}

.seller-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #d4af37;
}

.seller-header i {
    color: #d4af37;
}

.seller-header h3 {
    color: #7a5a10;
}

/* Seller card icon styling */
.service-mini-card.seller .icon-circle {
    background: rgba(212, 175, 55, 0.18);
    color: #7a5a10;
}



/* Updated Products Section - Product Cards with Proper Sizes */
.products-section {
    background: linear-gradient(rgba(240, 235, 229, 0.95), rgba(240, 235, 229, 0.95)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.products-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.products-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.product-category {
    color: white;
    background-color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.product-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-green);
    line-height: 1.3;
}

.product-description {
    margin-bottom: 15px;
    color: #666;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.product-item-tag {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--dark-brown);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.carousel-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--dark-green);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

/* Team Section */
.team-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #f0f0f0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.anil-member-img {
    height: 260px !important;
}

/* Name and Designation below image */
.team-info-box {
    padding: 24px 25px 10px;
}

.team-info-box h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.team-info-box .designation {
    color: #18a74b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.team-member-content {
    padding: 0 25px 25px;
}

.team-member-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
}

.team-member-content p:last-child {
    margin-bottom: 0;
}

/* Updated Contact Section - Compact Design with Proper Sizes */
/* Modern Contact Section */
.contact-section-modern {
    padding: 30px 0;
    background: #f7f9f6;
    /* Very light subtle green/gray */
    position: relative;
    overflow: hidden;
}

.contact-section-modern .section-title-center h2 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

.contact-section-modern .section-title-center p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.modern-contact-wrapper {
    display: flex;
    max-width: 1350px;
    margin: 10px auto 0;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft large shadow */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Left Side: Info */
.contact-info-side {
    background: var(--dark-green);
    color: white;
    padding: 15px 25px 20px;
    flex: 0 0 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.contact-info-side h3 {
    display: none;
    margin-bottom: 0px;
    font-size: 1.8rem;
    font-weight: 700;
}

.info-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: all 0.3s;
}

.c-item:hover .icon-circle {
    background: var(--gold);
    color: var(--dark-green);
    transform: scale(1.1);
}

.c-text span {
    display: block;
    font-size: 0.8rem;
    color: white;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c-text p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    color: white;
}

.side-socials {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.side-socials a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.side-socials a:hover {
    background: white;
    color: var(--dark-green);
    border-color: white;
    transform: translateY(-3px);
}

/* Decorative background elements */
.big-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    /* very subtle */
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    /* gold tint */
    top: -40px;
    right: 20px;
    pointer-events: none;
}


/* Right Side: Form */
.contact-form-side {
    flex: 1;
    padding: 20px 30px;
    background: white;
}

.contact-form-side form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-side label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 4px 12px rgba(24, 167, 75, 0.08);
    /* Greenish glow */
}

.contact-form-side textarea {
    resize: vertical;
    min-height: 70px;
}

.send-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    align-self: flex-start;
    box-shadow: 0 8px 20px rgba(24, 167, 75, 0.25);
}

.send-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(24, 167, 75, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .modern-contact-wrapper {
        flex-direction: column;
        margin: 20px;
        border-radius: 15px;
    }

    .contact-info-side {
        padding: 40px 30px;
    }

    .contact-form-side {
        padding: 40px 30px;
    }

    .input-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--gold);
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about .logo-image {
    height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    margin-top: -20px;
    margin-bottom: 10px;
}

.footer-about p {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        height: 400px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-card {
        flex: 0 0 calc(50% - 15px);
        min-height: 420px;
    }

    .contact-container-compact {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 25px 25px;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0 0 20px 0;
    }

    nav ul li a {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 0;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 30px;
        font-size: 1.05rem;
    }

    .product-card {
        flex: 0 0 100%;
        min-height: 360px;
    }

    .contact-info-compact,
    .contact-form-compact {
        padding: 30px 25px;
    }

    .service-type-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    h1 {
        font-size: 2.0rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Keep service headers edge-to-edge on small screens */
    .service-type-card {
        padding: 0;
    }

    .service-type-content {
        padding: 12px 14px 14px;
    }

    .section-title-center {
        margin-bottom: 40px;
    }

    .service-type-header {
        padding: 11px 15px;
    }

    .service-type-header i {
        font-size: 1.8rem;
    }

    .service-type-header h3 {
        font-size: 1.2rem;
    }

    .service-type-content {
        padding: 6px 12px 15px;
    }

    .service-features li {
        font-size: 0.8rem;
        padding: 6px 0;
        grid-template-columns: 75px 1fr;
        gap: 10px;
    }

    .product-card {
        min-height: 340px;
    }

    .product-image {
        height: 120px;
    }

    .product-content {
        padding: 15px;
    }

    .product-content h3 {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .product-item-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .logo {
        margin-left: -50px !important;
        padding-left: 0 !important;
    }

    .logo-image {
        height: 200px;
        width: auto;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    section {
        padding: 30px 0;
    }

    .carousel-controls {
        margin-top: 25px;
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .team-member-content p {
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .logo {
        margin-left: -50px !important;
        padding-left: 0 !important;
    }

    .logo-image {
        height: 180px;
        width: auto;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .service-type-card {
        padding: 0;
    }

    .service-type-header h3 {
        font-size: 1.1rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* Shared Product Grid Styles (from Spices page) */
.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.item-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.item-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

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

.item-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.item-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
}