* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f2933;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
}

.logo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(3px);
}

.nav .active {
    background: rgba(255,255,255,0.3);
}

.hero {
    background: url("../images/hero.jpeg") center/cover no-repeat;
    background-size: cover;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
}

.hero p {
    margin-bottom: 30px;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff;
    transition: all 0.3s ease;
}

.primary:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #0d3818 100%);
    box-shadow: 0 5px 15px rgba(46,125,50,0.4);
}

.secondary {
    background: #fff;
    color: #2e7d32;
    margin-right: 10px;
    border: 2px solid #2e7d32;
    transition: all 0.3s ease;
}

.secondary:hover {
    background: #f5f5f5;
}

.section {
    padding: 70px 0;
}

.section h3 {
    color: #2e7d32;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.section.light {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-columns > div:first-child h3,
.two-columns > div:first-child p {
    text-align: right;
}

.two-columns > div:first-child h3 {
    color: #2e7d32;
    font-size: 28px;
    margin-bottom: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46,125,50,0.15);
}

.card-icon {
    font-size: 48px;
    padding-top: 20px;
    display: block;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h4 {
    padding: 15px 15px 5px;
    color: #2e7d32;
    font-weight: 700;
}

.card p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
}

.features {
    list-style: none;
    text-align: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.features li {
    margin: 15px 0;
    font-weight: 600;
    font-size: 16px;
    color: #2e7d32;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.features li:last-child {
    border-bottom: none;
}

.footer {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.center {
    text-align: center;
}

.page-banner {
    background: #2e7d32;
    color: #fff;
    padding: 60px 0;
}

.section-title {
    margin-bottom: 30px;
    color: #2e7d32;
    font-size: 26px;
}

.product-card p {
    padding: 0 15px 15px;
    font-size: 15px;
    color: #555;
}

.product-card .btn {
    margin-bottom: 20px;
}

.nav .active {
    color: #2e7d32;
    border-bottom: 2px solid #2e7d32;
}


.about-text {
    font-size: 18px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .two-columns,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 24px;
    }

    .section {
        padding: 40px 0;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}
