/* --- CSS Variables for a Consistent Theme --- */
:root {
    --primary-color: #0077b6;
    /* A professional, deep blue */
    --secondary-color: #ffc300;
    /* A vibrant golden-yellow */
    --text-color: #ffc300;
    /* Dark grey for readability */
    --light-bg: #f6f7fe;
    /* Light grey for the background */
    --card-bg: #ffffff;
    /* White for cards and main content */
    --border-color: #bdc3c7;
}

/* --- Global & Basic Reset --- */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Yahan se aapka poora background set hoga --- */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;

    /* Puraani background image properties ko hata diya gaya hai */
    /* background-image: url('assets/your-background-image.jpg'); */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-attachment: fixed; */
    /* background-position: center center; */

    /* Video background ke liye yeh line zaroori hai */
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--primary-color);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.nav-btn a {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn a:hover {
    background-color: #ffc800;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* --- Main Content Container --- */
.content-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Yahan par main container ka background transparent kiya gaya hai */
.main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: transparent;
}

/* Sections ka background bhi transparent kiya gaya hai */
.main section {
    padding: 80px 20px;
    margin-bottom: 20px;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
    /* Shadow bhi hata diya hai */
}

.main section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    color: rgb(255, 255, 255);
}

.main section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

/* --- Hero Section with Video Background --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    z-index: 1;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-bg);
}

.line {
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 30px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.cta-btn-1,
.cta-btn-2 {
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn-1 {
    color: #fff;
    border: 2px solid #fff;
    background-color: transparent;
}

.cta-btn-1:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-btn-2 {
    color: #fff;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-btn-2:hover {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* --- CSS for the Upward Curve Design at the bottom of the Hero Section --- */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--light-bg);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    transform: translateY(75px);
    z-index: 0;
}

/* --- Inner Page Hero Section --- */
.page-hero {
    height: 30vh;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-hero-content h1 {
    font-size: 2.5rem;
    color: white;
}

.page-hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Content Section --- */
.section-content {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- Target Full Cards --- */
.target-card-full {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #f7f7f7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.target-card-full.reversed {
    flex-direction: row-reverse;
}

.card-content {
    flex: 1;
    text-align: left;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.card-image {
    flex: 0 0 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: -20px;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transform: translateY(-50%);
}

.card-content h3 {
    margin-top: 0;
}

/* --- Committee Grid --- */
.committee-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Yahan par cards ka background thoda transparent kiya gaya hai */
.committee-card-full {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.committee-card-full img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    margin-bottom: 20px;
}

.committee-card-full .designation {
    color: #84023c;
    font-weight: 600;
    margin-bottom: 10px;
}

.committee-card-full .bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.social-links-card {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-card a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links-card a:hover {
    color: var(--primary-color);
}

/* --- New Slider CSS for Meet Our Leaders Section --- */
.committee-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.committee-slider-track {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.committee-card-slider {
    min-width: calc(33.33% - 20px);
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.committee-card-slider img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    margin-bottom: 20px;
}

.committee-card-slider h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.committee-card-slider .designation {
    color: #84023c;
    font-weight: 600;
    margin-bottom: 10px;
}

.committee-card-slider .bio {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

/* --- Section Hero (for inner pages) --- */
.section-hero {
    height: 80vh;
    position: relative;
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: none;
    border-radius: 10px;
}

.section-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 1;
}

.section-hero .hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-hero .hero-content h1 {
    font-size: 4rem;
    color: white;
    font-weight: 700;
}

.section-hero .hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button-hero {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-hero:hover {
    background-color: #ffc800;
}

/* --- Grid Layouts (Target, Committee, Events) --- */
.target-grid,
.committee-cards,
.event-cards,
.events-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.target-item,
.committee-card,
.event-card-v2,
.event-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.target-item:hover,
.committee-card:hover,
.event-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.target-item img,
.committee-card img,
.event-card-v2 img,
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.committee-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    object-fit: cover;
}

.committee-card h3 {
    margin-top: 10px;
}

/* --- Rules Section --- */
.section-rules .rules-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.rules-visual img {
    width: 100%;
    border-radius: 8px;
}

.rules-list-container ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.rules-list-container li {
    background-color: #f0f8ff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-rules .cta-button {
    margin-top: 20px;
}

/* --- Join Section --- */
.section-join {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: #ffc300;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.join-content {
    max-width: 600px;
    text-align: left;
}

.join-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-join h2 {
    color: #0077b6(0, 0, 0);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-join h2::after {
    display: none;
}

.section-join p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button-join {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button-join:hover {
    background-color: #ffc800;
    transform: scale(1.05);
}

/* Button animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* --- CTA Buttons (View All Members, Events, Rules) --- */
.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffc800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- Rules Grid --- */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid var(--secondary-color);
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rule-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rule-card h3 {
    margin-top: 0;
}

/* --- Event Grid --- */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.detail-item i {
    color: var(--primary-color);
}

.event-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
}

.event-card p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

.event-card .cta-button {
    margin: 20px;
    text-align: center;
}

/* --- Join Form Section --- */
.join-form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 60px 20px;
}

.join-benefits {
    flex: 1;
    max-width: 500px;
    padding: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.join-benefits h2 {
    color: white;
    margin-top: 0;
}

.join-benefits ul {
    list-style: none;
    padding: 0;
}

.join-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.join-benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.form-container {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    text-align: center;
    margin-top: 0;
}

.form-container p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-group-checkbox input {
    width: auto;
}

.form-group-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-group-checkbox label a:hover {
    text-decoration: underline;
}

/* Button style is already defined in cta-button-join in main styles */
.cta-button-join {
    width: 100%;
}

/* --- New Slider CSS for Meet Our Leaders Section --- */
.committee-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.committee-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.committee-card-slider {
    min-width: 300px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 15px;
}

.committee-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.committee-card-slider img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    margin-bottom: 20px;
}

.committee-card-slider h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.committee-card-slider .designation {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.committee-card-slider .bio {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

/* Active card styling for the 'pop-up' effect */
.committee-card-slider.active-card {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================================================= */
/* --- RESPONSIVE STYLES (for Mobile & Tablet) --- */
/* ========================================================================= */

/* --- Tablet Devices (<= 1024px) --- */
@media (max-width: 1024px) {
    .main {
        padding: 0 15px;
    }

    .main section {
        padding: 60px 15px;
    }

    .main section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    /* Inner Page Hero */
    .page-hero {
        height: 25vh;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    /* Target Cards */
    .target-card-full {
        gap: 20px;
        padding: 25px;
    }

    .card-image {
        flex: 0 0 200px;
        height: 200px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    /* Rules Section */
    .section-rules .rules-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Join Section */
    .section-join {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .join-content {
        max-width: 100%;
        text-align: center;
    }

    .join-image img {
        width: 100%;
        max-width: 300px;
    }
}

/* --- Mobile Devices (<= 768px) --- */
@media (max-width: 768px) {

    /* Header & Navigation (Hamburger Menu) */
    header {
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    nav {
        flex-direction: column;
        width: 100%;
        height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
        transition: height 0.3s ease-in-out;
    }

    nav.nav-active {
        height: 280px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        gap: 15px;
    }

    nav ul li a {
        padding: 10px;
    }

    .nav-btn a {
        padding: 10px 20px;
        display: inline-block;
    }

    /* === FIX: Homepage Hero Section === */
    .hero-section {
        min-height: 70vh;
        padding: 0 10px;
    }

    .hero-video {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .hero-content {
        text-align: center;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .line {
        margin: 0 auto 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn-1,
    .cta-btn-2 {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }

    .hero-section::after {
        height: 100px;
        transform: translateY(50px);
    }

    /* Main Content */
    .main {
        padding: 0 10px;
    }

    .main section {
        padding: 40px 10px;
        margin-bottom: 10px;
    }

    .main section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Grid Layouts */
    .target-grid,
    .committee-cards,
    .event-cards,
    .events-card-grid,
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Target Cards */
    .target-card-full,
    .target-card-full.reversed {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .card-content {
        padding-left: 0;
        border-left: none;
    }

    .card-icon {
        position: static;
        margin-bottom: 10px;
        transform: translateY(0);
    }

    .card-image {
        flex: auto;
        width: 100%;
        height: auto;
    }

    /* Rules Section */
    .rules-list-container li {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Join Form Section */
    .join-form-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 10px;
        gap: 20px;
    }

    .join-benefits,
    .form-container {
        max-width: 100%;
        padding: 25px;
    }

    .join-benefits ul li {
        font-size: 1rem;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-container p {
        font-size: 0.9rem;
    }

    /* FIX: Join Page Register Button */
    .cta-button-join {
        width: auto;
        display: inline-block;
        margin: 0 auto;
        padding: 12px 30px;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 1.2rem;
    }
}

/* --- Yahan se video background ka naya code shuru hota hai --- */
.video-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    /* Video ko sabse peeche rakhega */
    background: transparent;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}