/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #1976d2;
}
.logo span {
    font-family: 'Madurai Slab W01 Exp Md', 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #6b3fa0;
    text-transform: uppercase;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #1976d2;
}
.hero {
    background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
    color: #fff;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #fff;
    color: #1976d2;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #1976d2;
    color: #fff;
    border: 1px solid #fff;
}
.services, .products, .contact {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.services h2, .products h2, .contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1976d2;
}
.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.products ul.product-list {
    list-style: disc inside;
    padding-left: 0;
    margin: 0 auto;
    max-width: 600px;
}
.products ul.product-list li {
    background: #fff;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.contact-form button,
.contact-form .whatsapp-link {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem auto;
    box-sizing: border-box;
}
.contact-form button {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #1565c0;
}
.contact-form .whatsapp-link {
    font-size: 1rem;
    border-radius: 25px;
    font-weight: bold;
    background: #25d366;
    color: #fff !important;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 0;
}
.contact-form .whatsapp-link:hover {
    background: #128c7e;
    text-decoration: none;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .service-cards {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }
    .logo span {
        font-size: 1rem;
    }
    .nav-links {
        right: 1rem;
        top: 60px;
        padding: 1rem 1.2rem;
        min-width: 140px;
    }
    .hero-content h1 {
        font-size: 1.2rem;
    }
    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    .services {
        text-align: center;
    }
    .service-cards {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .card {
        margin-left: auto;
        margin-right: auto;
    }
}
.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.5rem 1rem 1rem 1rem;
    flex: 1 1 220px;
    max-width: 240px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card img {
    width: 340px;
    height: 340px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #f0f4f8;
    border: 1px solid #e0e0e0;
}
.product-card h3 {
    font-size: 1.05rem;
    color: #1976d2;
    margin-top: 0.5rem;
    font-weight: bold;
}
@media (max-width: 900px) {
    .product-cards {
        gap: 1rem;
    }
    .product-card {
        max-width: 45%;
    }
}
@media (max-width: 600px) {
    .product-cards {
        flex-direction: column;
        gap: 1rem;
    }
    .product-card {
        max-width: 100%;
    }
    .product-card img {
        width: 260px;
        height: 260px;
    }
}
.contact-details {
    background: #f0f4f8;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    font-size: 1rem;
}
.address-block {
    margin-bottom: 1rem;
}
.contact-details p {
    margin-bottom: 0.7rem;
    color: #222;
}
.contact-details a {
    color: #1976d2;
    text-decoration: none;
    word-break: break-all;
}
.contact-details a:hover {
    text-decoration: underline;
}
.whatsapp-link {
    display: inline-block;
    background: #25d366;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.whatsapp-link:hover {
    background: #128c7e;
}
.map-embed {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.map-embed iframe {
    width: 100%;
    height: 350px;
    display: block;
    margin: 0;
    border-radius: 0;
}
/* Hamburger menu styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle .bar {
    width: 26px;
    height: 3px;
    background: #1976d2;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        right: 2rem;
        background: #fff;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 1.5rem 2rem;
        border-radius: 12px;
        min-width: 180px;
        display: none;
        z-index: 1000;
    }
    .nav-links.open {
        display: flex;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }
    .logo span {
        font-size: 1rem;
    }
    .nav-links {
        right: 1rem;
        top: 60px;
        padding: 1rem 1.2rem;
        min-width: 140px;
    }
    .hero-content h1 {
        font-size: 1.2rem;
    }
    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}
.back-to-top {
    display: inline-block;
    margin: 2rem auto 0 auto;
    padding: 0.5rem 1.2rem;
    background: #6b3fa0;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s;
}
.back-to-top:hover {
    background: #4b276d;
}
@media (min-width: 900px) {
    .contact-details {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    .address-block {
        flex: 2 1 0;
        min-width: 250px;
    }
    .map-embed {
        flex: 1 1 0;
        max-width: 400px;
        min-width: 250px;
        margin: 0;
    }
}
.contact-simple {
    background: #f0f4f8;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info h3, .business-hours h4 {
    color: #6b3fa0;
    margin-bottom: 0.5rem;
}
.business-hours {
    margin: 1.5rem 0;
}
.contact-actions {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.map-link {
    display: inline-block;
    background: #1976d2;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.map-link:hover {
    background: #0d47a1;
}
.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem auto;
}
@media (min-width: 900px) {
    .contact-flex {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-form, .map-embed {
        flex: 1 1 0;
        max-width: 50%;
    }
    .map-embed {
        margin: 0 0 0 2rem;
        height: 100%;
    }
    .map-embed iframe {
        height: 100%;
        min-height: 400px;
    }
} 