/* General Styles */

/* ⭐ GLOBAL PAGE CONTAINER FOR CONSISTENT WIDTH */
.container {
    max-width: 1300px;     /* adjust to 1200, 1300, 1400 etc. */
    margin: 0 auto;
    padding: 0 20px;
}


body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f6fff5;
    margin: 0;
    padding: 0;
    color: #2e2e2e;
	font-size: 18px;          /* 🔹 increased from default 16px */
    line-height: 1.8; 
}

/* Header */
header {
    background-color: #1b5e20;
    color: white;
    text-align: center;
    padding: 30px 0;
}
header h1 {
    margin: 0;
    font-size: 2.4em;
    letter-spacing: 1px;
}
header p {
    margin-top: 10px;
    font-size: 1.1em;
}

section {
    padding: 50px 20px;
    max-width: 1400px;   /* <— increase width here */
    margin: 40px auto;
}

/* Doctor Section */
.doctor-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 10px #c9d6c3;
    padding: 40px;
}
.doctor-section img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 40px;
}
.doctor-info {
    flex: 1;
}
.doctor-info h2 {
    color: #2e7d32;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
}
.btn:hover {
    background: #1b5e20;
}

/* Ayurvedic Concepts Section */
/* Ayurvedic Concepts Section 
#ayurveda-topics {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #d0d8d0;
    padding-bottom: 40px;
}*/

#ayurveda-topics {
    background: none;  /* remove full-width white background */
    padding: 0;
}

/* Wrap white card */
.concept-wrapper {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px #d0d8d0;
    padding: 40px;
    margin: 40px 0;
}


#ayurveda-topics h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 25px;
}

/* ⭐ New responsive 3-column layout */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* ⭐ EXACT 3 columns */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}

.concept-card {
    background: #f9fff9;
    border-radius: 10px;
    box-shadow: 0 0 8px #cfd8dc;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.concept-card:hover {
    transform: translateY(-5px);
}

.concept-card img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.concept-card h3 {
    color: #1b5e20;
    margin-bottom: 10px;
}

.concept-card p {
    font-size: 0.95em;
    line-height: 1.5;
}

.link {
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Products Section */
#products {
    text-align: center;
}
#products h2 {
    color: #2e7d32;
}
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.product-card {
    background: white;
    border-radius: 10px;
    width: 300px;
    margin: 15px;
    box-shadow: 0 0 8px #cfd8dc;
    padding: 20px;
}
.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.product-card h3 {
    color: #1b5e20;
    margin-top: 10px;
}
.product-card p {
    font-size: 0.95em;
    line-height: 1.4;
}

/* HEADER AREA */
header {
    background: linear-gradient(180deg, #dcedc8, #a5d6a7);
    text-align: center;
    padding: 20px 0 10px;
}

/* Logo */
header .logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation Bar */
nav {
    background-color: #2e7d32;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c8e6c9;
}

/* Smooth scrolling effect */
html {
    scroll-behavior: smooth;
}



.white-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 8px #cfd8dc;
    padding: 30px;
    margin: 30px 0;
}
.white-card h2 {
    color: #2e7d32;
    margin-bottom: 10px;
}
.white-card ol {
    padding-left: 25px;
}
.white-card li {
    margin-bottom: 15px;
}

.shop-more-btn {
    background: #ffffff;
    border: 2px solid #2e7d32;
    color: #2e7d32;
    padding: 10px 20px;
    margin-right: 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.shop-more-btn:hover {
    background: #2e7d32;
    color: white;
}

/* Tablets — 2 columns */
@media(max-width: 992px) {
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile — 1 column */
@media(max-width: 600px) {
    .concept-grid {
        grid-template-columns: 1fr;
    }
}