/*
Theme Name: Herbal Shahi Dawakhana
Theme URI: https://example.com
Author: Custom Converted Theme
Description: Custom WordPress theme converted from HTML without any design changes.
Version: 1.0
*/

:root {
    --primary-color: #2d5a27;
    --secondary-color: #f4f1ea;
    --accent-color: #d4a373;
    --text-dark: #333;
}

body {
    font-family: 'Poppins', 'Hind', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

header {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 100px 20px 60px;
    border-bottom: 2px solid var(--accent-color);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

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

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cta-box {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
    border-radius: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float span {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    bottom: -22px;
    color: #333;
    white-space: nowrap;
}

footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: #ccc;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}
