/* ===================================
   Aman Satvik Farms - Main Stylesheet
   Modern Professional Design
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-green: #539300;
    --primary-orange: #a45417;
    --dark-green: #3d6b00;
    --light-green: #e8f5d4;
    --dark-orange: #7a3d10;
    --light-orange: #f5e6d3;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

section {
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.container {
    max-width: 1200px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
    transition: var(--transition);
}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

/* Mobile menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23539300' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(83, 147, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

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

.hero-subtitle {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-green);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align:justify;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Buttons ===== */
.btn-custom {
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(83, 147, 0, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(83, 147, 0, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    box-shadow: none;
}

.btn-secondary-custom:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(164, 84, 23, 0.3);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== About Section ===== */
#about {
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align:justify;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge h4 {
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0;
}

.about-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* We Serve Section */
.we-serve-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.we-serve-section h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 3rem;
}

.serve-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.serve-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.serve-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

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

.serve-card h5 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 15px 0;
    padding-left: 40px;
    font-size: 1.1rem;
    position: relative;
    border-bottom: 1px solid var(--gray-medium);
    transition: var(--transition);
}

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

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.about-features li:hover {
    padding-left: 50px;
    color: var(--primary-green);
}

/* ===== Services Section ===== */
#services {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--light-green), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align:justify;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ===== Main Services Highlight ===== */
.main-services {
    margin-top: 60px;
    /* padding: 60px 0; */
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.main-service-card {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.main-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main-service-image {
    width: 100%;
    height: 365px;
    object-fit: cover;
}

.main-service-content {
    padding: 35px;
}

.main-service-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.main-service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align:justify;
}

.main-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.feature-badge {
    background: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* ===== Peeled Onions Highlight ===== */
.peeled-onions-highlight {
    background: linear-gradient(135deg, rgba(164, 84, 23, 0.95), rgba(122, 61, 16, 0.95));
                /*url('../images/peeled-onions-real.svg') center/cover;*/
    color: var(--white);
    border-radius: 25px;
    padding: 50px;
    padding-bottom: 5px !important;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.peeled-onions-highlight::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.peeled-onions-highlight::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.peeled-onions-content {
    position: relative;
    z-index: 2;
}

.peeled-onions-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.peeled-onions-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-align:justify;
}

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

.onion-feature-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.onion-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.onion-feature-item h5 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.onion-feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== Clients Section ===== */
/* #clients {
    background: var(--white);
}

.client-card {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.client-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    transition: var(--transition);
}

.client-card:hover .client-logo {
    transform: rotate(360deg);
}

.client-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
} */


#clients {
    background: var(--white);
}

.client-card {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    align-items: center;
}

.client-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    transition: var(--transition);
}

.client-card:hover .client-logo {
    transform: rotate(360deg);
}

.client-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

/* ===== Why Us Section ===== */
#why-us {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
}

#why-us .section-subtitle {
    color: var(--primary-orange);
}

#why-us .section-title {
    color: var(--white);
}

#why-us .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.why-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    text-align:justify;
}

/* ===== Contact Section ===== */
#contact {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-orange) 100%);
    padding: 60px 0;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 250px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: -0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.contact-value:hover {
    color: var(--primary-orange);
}

/* ===== Footer ===== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .we-serve-section {
        padding: 40px 20px;
    }
    
    .we-serve-section h3 {
        font-size: 1.8rem;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .peeled-onions-highlight {
        padding: 30px 20px;
    }
    
    .main-service-content {
        padding: 25px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .we-serve-section {
        padding: 30px 15px;
    }
    
    .we-serve-section h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .serve-card {
        padding: 30px 20px;
    }
    
    .serve-icon {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 767px) {
    .navbar-brand span {
        display: none;
    }
    .btn-custom{
        padding: 14px ;
        margin-bottom: 10px;
    }
}