* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* Book Class बटन को अलग लुक देने के लिए (Optional) */
.nav-menu a.book-btn {
    background-color: #8f9779;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-menu a.book-btn:hover {
    background-color: #2c3e35;
}



.footer {
    background: #1F2937;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo h3 {
    font-size: 26px;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #a5aab5;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a5aab5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: #a5aab5;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #a5aab5;
    font-size: 14px;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    line-height: 1.7;
    background-color: #fcfbfa; /* Soft warm background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #2c3e35; /* Deep Green-Gray */
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
}

p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #666;
}

.subheading {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8f9779; /* Earthy Sage Green */
    font-weight: 600;
    margin-bottom: 5px;
}

/* Grids Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   2. Hero / Header Section
   ========================================================================== */
.about-hero {
    background: linear-gradient(rgba(44, 62, 53, 0.6), rgba(44, 62, 53, 0.4)), 
                url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&q=80&w=1500') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-hero p {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   3. About Yoga Center
   ========================================================================== */
.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ==========================================================================
   4. Mission & Vision Section
   ========================================================================== */
.mission-vision {
    background-color: #f3f4ee; /* Pale Sage Tint */
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.icon-box {
    font-size: 2.5rem;
    color: #8f9779;
    margin-bottom: 20px;
}

/* ==========================================================================
   5. Yoga Benefits Section
   ========================================================================== */
.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 4px solid #e1e4d8;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-bottom-color: #8f9779;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


.about-center {
    margin-top: 50px;
}
.benefit-item i {
    font-size: 2rem;
    color: #8f9779;
    margin-bottom: 15px;
}

/* ==========================================================================
   6. Trainer Introduction Section
   ========================================================================== */
.trainers-section {
    background-color: #fff;
}

.trainer-card {
    background: #fcfbfa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
}

.trainer-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.trainer-info {
    padding: 25px 20px;
}

.trainer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.trainer-info .role {
    font-size: 0.85rem;
    color: #8f9779;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.social-links a {
    color: #aaae9c;
    margin: 0 10px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2c3e35;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}
/* ==========================================================================
   7. Responsive Design (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 50px 0;
    }
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header, .navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    
    z-index: 1000; 
    
    background-color: #ffffff;   
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
    
    padding: 15px 0; 
}
