/* ================= GOOGLE FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL SETTINGS & RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: #29926f; /* Default Light Background */
    color: #333;
    line-height: 1.6;
}

/* Agar aapko dark gradient theme chahiye toh ye class body pe laga sakte hain:*/
.dark-theme {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-attachment: fixed;
    color: #b41a1a;
}

/* ================= HEADER & NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: #2bc40d;
    box-shadow: 0 2px 10px rgba(161, 24, 24, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #f7b606;
}

.logo span {
    color: #ffd700;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #ce0909;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    padding-bottom: 5px;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #0f1414;
}

.btn-nav {
    background: #8f1c1c;
    color: #0aaa2d !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* ================= TYPOGRAPHY & BUTTONS ================= */
.heading {
    text-align: center;
    color: #1e7c76;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtext {
    color: #240505;
    margin-bottom: 30px;
}

.btn-primary, .btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: #9cbbb9;
    color: #474646;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(30, 124, 118, 0.3);
}

.btn-primary:hover, .btn-main:hover {
    background: #145e59;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #1687d3;
    color: #1687d3;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #0b30d3;
    color: #631111;
}

/* ================= HERO SECTION ================= */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #b95698;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ================= INTRODUCTION SECTION ================= */
/* 1. Hero Section Fix */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Screen ki 80% height lega */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* Background Image setup */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Scrolling effect ke liye */
    
    margin-bottom: 0; /* Gap khatam karne ke liye */
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #14e459; /* Green color jo aapko pasand hai */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 2. Intro Section Fix (Jo image niche dikh rahi hai) */
.intro-container {
    padding: 80px 8%;
    background: #f7f4f4; /* Isse hero aur ye section alag dikhenge */
    position: relative;
    clear: both; /* Kisi bhi overlap ko rokne ke liye */
}

.intro-content {
    display: flex;
    align-items: center;
     color:#34087a;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-image img {
    width: 300%;
    max-width: 300px;
    align-self: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(168, 11, 11, 0.1);
}
/* ================= FACILITIES SECTION ================= */
/* Facilities Container Refined */
.facilities-container {
    padding: 100px 8% 60px;
    background: #f8fbfd; /* Light professional background */
}

/* Card Improvements */
.facility-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.facility-card:hover {
    transform: translateY(-10px); /* Card thoda upar uthega */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Shadow geheri ho jayegi */
}

.facility-info {
    padding: 25px;
}

.facility-info h3 {
    color: #1e7c76;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Modern Table Look */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* Rows ke beech gap */
    margin-top: 30px;
}

.stats-table th {
    background: #1e7c76;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.stats-table td {
    background: white;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-table tr td:first-child { border-radius: 10px 0 0 10px; border-left: 1px solid #eee; }
.stats-table tr td:last-child { border-radius: 0 10px 10px 0; border-right: 1px solid #eee; }

/* Animation for Heading */
.heading {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(45deg, #1e7c76, #14e459);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* ================= REGISTRATION FORM ================= */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.reg-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.steps-container {
    text-align: left;
    margin-bottom: 30px;
}

.step-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border-left: 4px solid #1e7c76;
}

.step-item:hover {
    background: #e9f5f4;
    transform: translateX(10px);
}

.step-item span {
    background: #1e7c76;
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
}

/* ================= TABLES ================= */
.stats-table {
    width: 100%;
    margin: 50px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stats-table th {
    background-color: #1e7c76;
    color: white;
    padding: 18px;
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
}

.stats-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 40px;
    background: #2c3e50;
    color: #fff;
    margin-top: 20px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .nav-links li { 
        margin: 5px 10px; 
    }
    
    .hero-content h1 { 
        font-size: 2rem; 
    }
    
    .intro-content, .intro-section { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-card.full-width {
        grid-column: 1;
    }
}
/* --- Google Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #1e7c76;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #14e459; /* Neon Green */
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #14e459;
}

.btn-nav {
    background: #14e459;
    color: #1e7c76 !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* --- Common Headings --- */
.heading {
    text-align: center;
    font-size: 2.8rem;
    background: linear-gradient(45deg, #1e7c76, #14e459);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtext {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* --- Container & Grid --- */
.facilities-container, .intro-container {
    padding: 60px 8%;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Modern Card Styling --- */
.facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-info {
    padding: 25px;
}

.facility-info h3 {
    color: #1e7c76;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

/* --- Modern Table Styling --- */
.stats-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
}

.stats-table th {
    background: #1e7c76;
    color: white;
    padding: 15px;
    text-align: left;
    border-radius: 8px;
}

.stats-table td {
    background: white;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.stats-table tr td:first-child { border-radius: 10px 0 0 10px; }
.stats-table tr td:last-child { border-radius: 0 10px 10px 0; }

/* --- Buttons --- */
.btn-main {
    display: inline-block;
    background: #f7810b; /* Orange */
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover {
    background: #1e7c76;
    transform: scale(1.05);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px;
    background: #1e7c76;
    color: rgb(19, 2, 2);
    margin-top: 50px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile menu ki zaroorat padegi */
    .heading { font-size: 2rem; }
    .full-width { grid-template-columns: 1fr !important; }
}
/* --- Membership Page Specific Styles --- */

/* Pricing Card Layout */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Ensures the middle card looks bigger if scaled */
    padding-top: 20px;
}

/* Card Styling */
.facility-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Plan Titles & Pricing */
.facility-info h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.facility-info p {
    font-family: 'Poppins', sans-serif;
    color: #1e7c76;
}

/* Feature List Styling */
.facility-info ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.facility-info ul li {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Gold Plan Highlight (The Best Value Card) */
.facility-card[style*="border: 3px solid #14e459"] {
    box-shadow: 0 15px 40px rgba(20, 228, 89, 0.15);
}

/* Badge for Best Value */
.facility-card div[style*="position: absolute"] {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(20, 228, 89, 0.2);
}

/* Plan Selection Buttons */
.facility-info .btn-main {
    width: 100%;
    display: block;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
    .facility-card[style*="transform: scale(1.05)"] {
        transform: scale(1) !important; /* Mobile par scale hatana behtar hai */
        margin: 20px 0;
    }
    
    .facility-grid {
        gap: 20px;
    }
}