/* General Body and HTML Reset */
:root {
    --golden: #B8860B; /* DarkGoldenrod, elegant gold */
    --brown: #8B4513; /* SaddleBrown, rich brown */
    --beige: #F5DEB3; /* Wheat, soft beige */
    --light-beige: #FFF8DC; /* Cornsilk, very light beige */
    --dark-grey: #333;
    --light-grey: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--light-beige);
    /* Subtle rice grain/paddy field texture using SVG pattern */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPgogICAgICAgIDxwYXR0ZXJuIGlkPSJyaWNlUGF0dGVybiIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTEwIDExLjMzMSBTMTMuNiAxMy42IDE4IDEzLjZDNDIuNiAxMy42IDQ1LjYgMTAuNiA0NS42IDYuNUM0NS42IDIuNCA0Mi40IC0wLjYgMzggLTAuNkMzMy42IC0wLjYgMzAgMTEuMzMxIDMwIDExLjMzMVpNMzguNiAtMy4yNjRDMzMuMiAtMS41IDMwLjcgOS4zMzEgMzAuNyA5LjMzMVMxOS43IDAuOSAxOC4xIDAuOUMxNi4yIDAuOSAxNS42IDQuMCAxNS42IDYuNEwxNisuNiA2LjRDMTUuNiA4LjggMTYuMiAxMiAxOC4xIDEyQzE5LjcgMTIgMjEuNiAyLjkgMjQuNiAxLjZDMjcuOSAwLjMgMzEuNSAwLjMgMzMuOCAxLjRDMzYuMSAyLjUgNzEuMSA5LjMgMTAuNyA5LjMxMUMxMy41IDkuMzExIDE2LjYgMS40IDE4LjYgLTMuMjY0WiIgZmlsbD0iI0RCQjk4NyIvPgogICAgICAgICAgICA8cGF0aCBkPSJNMTAgMzEuMzMxIFNEMTMuNiAzMy42IDE4IDMzLjZDNDIuNiAzMy42IDQ1LjYgMzAuNiA0NS42IDI2LjVDNDUuNiAyMi40IDQyLjQgMTkuNCAzOCAxOS40QzMzLjYgMTkuNCAzMCAzMS4zMzEgMzAgMzEuMzMxWk0zOC42IDE4Ljc2NEMzMy4yIDIwLjUgMzAuNyAzMS4zMzEgMzAuNyAzMS4zMzFTMTkuNyAyNi45IDE4LjEgMjYuOUMxNi4yIDI2LjkgMTUuNiAzMCAxNS42IDMyLjRMMTUuNiAzMi40QzE1LjYgMzQuOCAxNi4yIDM4IDE4LjEgMzhDMTkuNyAzOCAyMS42IDI4LjkgMjQuNiAyNy42QzI3LjkgMjYuMyAzMS41IDI2LjMgMzMuOCAyNy40QzM2LjEgMjguNSA3LjEgMzUuMyAxMC43IDM1LjMxMUMxMy41IDM1LjMxMSAxNi42IDI3LjQgMTguNiAyMi43NjRaIiBmaWxsPSIjRjJERUMxIi8+CiAgICAgICAgPC9wYXR0ZXJuPgogICAgPC9kZWZzPgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNyaWNlUGF0dGVybikiLz4KPC9zdmc+');
    background-size: 60px;
    background-repeat: repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    margin-bottom: 15px;
}

h2.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--golden);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

a {
    text-decoration: none;
    color: var(--brown);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--golden);
}

.btn {
    display: inline-block;
    background-color: var(--golden);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none; /* Ensure no default button border */
    cursor: pointer;
}

.btn:hover {
    background-color: var(--brown);
}

/* Header */
header {
    background-color: var(--light-beige);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--brown);
    color: white;
    padding: 8px 0;
    font-size: 0.9em;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.header-top .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px; /* Increased margin to separate from nav */
}

.logo img {
    height: 60px; /* Adjust as needed */
    width: auto;
}

.logo h1.business-name { /* Specific class for the business name h1 */
    font-size: 1.8em;
    margin: 0;
    color: var(--golden);
    white-space: nowrap; /* Prevents text wrapping */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--brown);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--golden);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8em;
    background: none;
    border: none;
    color: var(--brown);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('im/mill.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: white;
}

.hero-section p {
    font-size: 1.5em;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--beige);
}

.about-content-wrapper {
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    gap: 50px; /* Space between the two main about parts */
}

.about-section-part {
    display: flex;
    align-items: flex-start; /* Align content to the top */
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    padding: 20px;
    background-color: white; /* Give distinct background for clarity */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    color: var(--golden);
    font-size: 1.8em;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Kanchan Jaiswal specific styling */
.about-kanchan {
    flex-direction: row; /* Keep Kanchan's photo and text side-by-side */
    align-items: center;
}

.kanchan-bio {
    text-align: center;
    flex-basis: 300px; /* Fixed width for bio section */
    flex-shrink: 0; /* Don't shrink */
}

.kanchan-bio img {
    width: 200px; /* Adjust size for Kanchan's photo */
    height: 200px;
    object-fit: cover;
    border-radius: 50%; /* Make it round */
    border: 5px solid var(--golden);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.kanchan-bio h3 {
    margin-bottom: 5px;
    font-size: 1.6em;
}

.kanchan-bio .designation {
    font-style: italic;
    color: var(--brown);
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: 20px;
}

.kanchan-commitment {
    flex-grow: 1;
    min-width: 300px;
}

.kanchan-commitment h3 {
    color: var(--golden);
    font-size: 1.8em;
}

/* Products Section (now Services) */
.products-section {
    padding: 80px 0;
    background-color: var(--light-beige);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for the one service */
    gap: 30px;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-item.full-width-item { /* Specific style for the single item */
    grid-column: 1 / -1; /* Make it span full width */
    max-width: 800px; /* Limit its max width */
    margin: 0 auto; /* Center it */
    padding: 30px; /* More padding for a single, prominent item */
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 300px; /* Make image larger for single service */
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
}

.product-item h3 {
    color: var(--brown);
    font-size: 2em; /* Larger font for service title */
    margin-top: 10px;
    padding: 0 15px;
}

.product-item p {
    color: var(--dark-grey);
    padding: 0 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--beige);
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form, .contact-map {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3, .contact-map h3 {
    color: var(--golden);
    margin-bottom: 25px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-grey);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group small {
    color: #666;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

.form-group textarea {
    resize: vertical;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-map p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: var(--dark-grey);
}

/* Footer */
footer {
    background-color: var(--brown);
    color: white;
    padding-top: 50px;
    font-size: 0.95em;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links, .social-media, .address-pin {
    flex: 1;
    min-width: 250px;
}

footer h3 {
    color: var(--golden);
    margin-bottom: 20px;
    font-size: 1.4em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--golden);
}

.social-media a {
    color: white;
    font-size: 1.8em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--golden);
}

.address-pin p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-pin i {
    font-size: 1.2em;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #6a340b; /* Slightly darker brown */
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85em;
    color: rgba(255,255,255,0.8);
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1DA851; /* Slightly darker green on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-right: 0; /* Remove margin on small screens */
        width: 100%; /* Take full width */
        justify-content: center; /* Center logo and text */
    }

    .logo h1.business-name {
        white-space: normal; /* Allow text to wrap on small screens */
        text-align: center;
    }

    nav {
        width: 100%;
        margin-top: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        display: none; /* Hidden by default for mobile */
        width: 100%;
        background-color: var(--light-beige);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .hamburger {
        display: block;
        align-self: flex-end; /* Pushes hamburger to the right */
    }

    .hero-section h2 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .about-content-wrapper {
        gap: 30px; /* Reduce gap on smaller screens */
    }

    .about-section-part {
        flex-direction: column; /* Stack image and text */
        text-align: center;
    }

    .about-image img, .kanchan-bio img {
        margin-bottom: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
    }

    .social-media a {
        margin: 0 10px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .logo h1.business-name {
        font-size: 1.5em;
    }

    .hero-section {
        padding: 70px 15px;
    }

    .hero-section h2 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .product-item.full-width-item {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .product-item img {
        height: 250px; /* Slightly smaller image on mobile */
    }
}