/* --------------------------------------------------------------
# support.css
# Unified Styles for Support Pages: Anti-Ragging, Discipline, NSS, Grievance, etc.
# Designed for clean academic layout, responsive, and professional feel
-------------------------------------------------------------- */

/* ---------- Root Variables ---------- */
:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --heading: #002147;
    --text: #444;
    --muted: #7b8591;
    --accent: #004aad;
    --accent-light: #e9f0ff;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease-in-out;
}

/* ---------- Global ---------- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--heading);
    margin-top: 0;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

/* ---------- Container ---------- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================
   1. GENERAL SUPPORT PAGE LAYOUT (COMMON FOR ALL CELLS)
========================================================== */
.main {
    padding: 3rem 0;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ==========================================================
   2. TWO-COLUMN LAYOUT (Anti-Ragging Style)
========================================================== */
.ar-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .ar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Sidebar Cards */
.ar-sidebar .ar-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.ar-sidebar .ar-card:hover {
    transform: translateY(-4px);
}

.ar-card.small {
    padding: 1rem;
}

.ar-card .card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.ar-card .card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 0.25rem;
}

.muted {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Info list */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--muted);
}

/* Main Content */
.ar-main .card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Hero */
.hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 1.8rem;
    color: var(--heading);
    margin-bottom: 0.75rem;
}

.lead-text {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-media img {
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.25);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #ccc;
    background: transparent;
    color: var(--heading);
    margin-left: 0.6rem;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ==========================================================
   3. CONTENT FEATURES / GRID SECTIONS
========================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h5 {
    margin: 0 0 0.5rem;
    color: var(--accent);
}

.feature p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ==========================================================
   4. GALLERY SECTION
========================================================== */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.gallery figure {
    flex: 1 1 30%;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery figure:hover {
    transform: scale(1.03);
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery figcaption {
    text-align: center;
    padding: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery figure {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        flex: 1 1 100%;
    }
}

/* ==========================================================
   5. HIGHLIGHT BOX
========================================================== */
.highlight-box {
    background: var(--accent-light);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: var(--text);
}

/* ==========================================================
   6. INFO GRID / CARDS
========================================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.info-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid #eef2f7;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ==========================================================
   7. CONTACT BOX
========================================================== */
.contact-box {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
}

.contact-box p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.contact-box a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ===== Inner Banner ===== */
.inner-banner {
    position: relative;
    height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.inner-banner .banner-content {
    position: relative;
    z-index: 2;
}

.inner-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Breadcrumb Container */
.breadcrumb {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    flex-wrap: wrap;
    /* Wrap on small screens */
    font-size: 0.95rem;
    color: #f5f5f5;
    padding: 15px 10px;

}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb span {
    margin: 0 6px;
    color: #ccc;
}

/* ===== General Section Styling ===== */
.section-header {
    text-align: center;
}

.section-badge {
    background: #005b96;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.highlight-box {
    background: #f3f8ff;
    border-left: 4px solid #005b96;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.contact-box {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
}

.contact-box a {
    color: #005b96;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}




/* ==========================================================
   2. SUPPORT PAGES (Discipline, NSS, Grievance, etc.)
========================================================== */

.support-section {
    padding: 80px 0;
    background: var(--bg);
}

.support-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--accent), transparent 85%);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
}

/* Content Wrapper */
.content-wrapper {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2.5rem 3rem;
}

.support-section h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.support-section h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.support-section p {
    color: var(--default-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.8;
}

/* Lists */
.support-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.support-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.support-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Highlight box */
.highlight-box {
    background: color-mix(in srgb, var(--accent), transparent 92%);
    border-left: 5px solid var(--accent);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-style: italic;
}

/* Info cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--accent), transparent 85%);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 0.6rem;
}

.info-card p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Responsive */
@media(max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.8rem;
    }

    .hero-left h1 {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.9rem;
    }
}

@media(max-width: 480px) {
    .hero {
        padding: 0.8rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* End of support.css */
/* --------------------------------------------------------------
# alumni.css
# Page: Alumni Association
-------------------------------------------------------------- */

/* ---------- Variables ---------- */
/* :root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --heading: #003366;
    --text: #444;
    --muted: #6b7280;
    --accent: #0056d6;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
} */

/* ---------- Section ---------- */
.alumni-section {
    padding: 80px 0;
    background: var(--bg);
}

.alumni-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    background: color-mix(in srgb, var(--accent), transparent 85%);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--heading);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Content ---------- */
.content-wrapper {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem 3rem;
}

.content-wrapper p {
    color: var(--text);
    line-height: 1.8;
    text-align: justify;
}

.alumni-section h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.alumni-section h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* ---------- List ---------- */
.alumni-section ul {
    list-style: none;
    padding: 0;
}

.alumni-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.8rem;
}

.alumni-section ul li::before {
    content: "✔";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
    background: color-mix(in srgb, var(--accent), transparent 92%);
    border-left: 5px solid var(--accent);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    font-style: italic;
    margin: 2rem 0;
}

/* ---------- Info Cards ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--accent), transparent 85%);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: var(--heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery figure {
    width: 32%;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery figcaption {
    text-align: center;
    padding: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        width: 100%;
    }

    .content-wrapper {
        padding: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ---------- Contact Box ---------- */
.contact-box {
    background: color-mix(in srgb, var(--accent), transparent 93%);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.contact-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* End of alumni.css */
/* ==========================================================
   IKS CELL PAGE STYLES
   File: iks.css
   Author: Sahil Design
   Description: Modern layout for Indian Knowledge System (IKS) Cell page
========================================================== */

/* ---------- Root Variables ---------- */
:root {
    --bg: #f5f8fc;
    --surface: #ffffff;
    --accent: #004aad;
    --accent-light: #e0ecff;
    --heading: #002147;
    --text: #444;
    --muted: #7c8ca1;
    --radius: 14px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ---------- Global Styles ---------- */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    color: var(--heading);
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================
   IKS PAGE BASE
========================================================== */
.iks-page {
    background: linear-gradient(180deg, #f9fafc 0%, #f0f6ff 100%);
    padding: 3rem 0;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    margin-top: 0.75rem;
    font-size: 2rem;
    color: var(--heading);
}

.section-header p {
    color: var(--muted);
    max-width: 800px;
    margin: 0.75rem auto 0;
}

/* ==========================================================
   LAYOUT STRUCTURE
========================================================== */
.iks-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .iks-layout {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sidebar ---------- */
.iks-sidebar .iks-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.iks-sidebar .iks-card:hover {
    transform: translateY(-5px);
}

.iks-sidebar .card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.info-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* ==========================================================
   MAIN CONTENT
========================================================== */
.iks-main .card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.iks-main .card:hover {
    transform: translateY(-3px);
}

/* ---------- Hero Section ---------- */
.hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero h2 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero .lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-media img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ---------- Buttons ---------- */
.btn-group {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #003688;
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    margin-left: 0.5rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    background: #fdfefe;
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.feature h4 {
    color: var(--heading);
    margin-bottom: 0.5rem;
}

/* ---------- Gallery ---------- */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery figure {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: var(--transition);
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        width: 100%;
    }
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-media img {
        max-width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .btn-outline {
        margin-left: 0;
    }
}

/* End of iks.css */
/* ==========================================================
   SC/ST CELL PAGE STYLES
   Author: Sahil Design
========================================================== */

/* Root Colors */
:root {
    --bg: #f6f9fc;
    --surface: #ffffff;
    --accent: #006b3f;
    /* greenish tone for inclusion theme */
    --accent-light: #dff7e7;
    --heading: #002147;
    --text: #444;
    --muted: #7c8ca1;
    --radius: 14px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Page Base */
.scst-page {
    background: linear-gradient(180deg, #f9fafb 0%, #eaf7ef 100%);
    padding: 3rem 0;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    margin-top: 0.75rem;
    font-size: 2rem;
    color: var(--heading);
}

.section-header p {
    color: var(--muted);
    max-width: 800px;
    margin: 0.75rem auto 0;
}

/* Layout */
.scst-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .scst-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.scst-sidebar .scst-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.scst-sidebar .scst-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--muted);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.info-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Main Content */
.scst-main .card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.scst-main .card:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero h2 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero .lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-media img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn-group {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #005934;
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    margin-left: 0.5rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery figure {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: var(--transition);
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: left;
    }
}

.hero-media img {
    max-width: 100%;
}

.btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.btn-outline {
    margin-left: 0;
}

/* End of scst.css */
/* ==========================================================
   NSS CELL PAGE STYLES
   Author: Sahil Design
========================================================== */

:root {
    --bg: #f9fbff;
    --surface: #ffffff;
    --accent: #1e73be;
    /* Blue tone for NSS theme */
    --accent-alt: #ff9800;
    /* Orange tone for energy */
    --accent-light: #e8f2ff;
    --heading: #002147;
    --text: #444;
    --muted: #7c8ca1;
    --radius: 14px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Page Base */
.nss-page {
    background: linear-gradient(180deg, #f9fbff 0%, #eef6ff 100%);
    padding: 3rem 0;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    margin-top: 0.75rem;
    font-size: 2rem;
    color: var(--heading);
}

.section-header p {
    color: var(--muted);
    max-width: 800px;
    margin: 0.75rem auto 0;
}

/* Layout */
.nss-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .nss-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.nss-sidebar .nss-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.nss-sidebar .nss-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--muted);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.info-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Main Content */
.nss-main .card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.nss-main .card:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero h2 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero .lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-media img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn-group {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #185b98;
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    margin-left: 0.5rem;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery figure {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: var(--transition);
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: left;
    }
}

.hero-media img {
    max-width: 100%;
}

.btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.btn-outline {
    margin-left: 0;
}

/* End of nss.css */
/* ==========================================================
   NCC CELL PAGE STYLES
   Author: Sahil Design
========================================================== */

:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --accent: #002b5b;
    /* Navy blue - discipline */
    --accent-alt: #c62828;
    /* Deep red - courage */
    --accent-light: #e8eef9;
    --heading: #002147;
    --text: #444;
    --muted: #7c8ca1;
    --radius: 14px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Page Base */
.ncc-page {
    background: linear-gradient(180deg, #f6f8fc 0%, #e9f0ff 100%);
    padding: 3rem 0;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--accent-light);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    margin-top: 0.75rem;
    font-size: 2rem;
    color: var(--heading);
}

.section-header p {
    color: var(--muted);
    max-width: 800px;
    margin: 0.75rem auto 0;
}

/* Layout */
.ncc-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .ncc-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.ncc-sidebar .ncc-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border-top: 5px solid var(--accent-alt);
}

.ncc-sidebar .ncc-card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--muted);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.info-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Main Content */
.ncc-main .card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.ncc-main .card:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero h2 {
    color: var(--accent-alt);
    margin-bottom: 0.75rem;
}

.hero .lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.hero-media img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn-group {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-alt);
    color: #fff;
}

.btn-primary:hover {
    background: #a92323;
}

.btn-outline {
    border: 1px solid var(--accent-alt);
    color: var(--accent-alt);
    margin-left: 0.5rem;
}

.btn-outline:hover {
    background: var(--accent-alt);
    color: #fff;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery figure {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: var(--transition);
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery figure {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: left;
    }
}

.hero-media img {
    max-width: 100%;
}

.btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.btn-outline {
    margin-left: 0;
}

/* End of ncc.css */
/* ============================
   SPORTS CLUB PAGE
   Modern Premium Design
============================ */

:root {
    --green: #009879;
    --blue: #0077ff;
    --bg: #f8fbff;
    --text: #333;
    --muted: #667;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Page Base */
.sports-page {
    background: linear-gradient(180deg, #f4fff9 0%, #e9f3ff 100%);
    padding: 3rem 0;
    color: var(--text);
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    background: var(--green);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.3rem;
    color: var(--blue);
    margin-top: 0.8rem;
    font-weight: 800;
}

.section-header p {
    color: var(--muted);
    max-width: 700px;
    margin: 0.5rem auto;
    font-size: 1rem;
}

/* Layout */
.sports-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .sports-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
.coach-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.coach-card:hover {
    transform: translateY(-5px);
}

.coach-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.coach-info {
    padding: 1rem;
}

.coach-info h3 {
    color: var(--green);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.coach-info p {
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.coach-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Cards */
.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    color: var(--green);
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.hero-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-img img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 0.8rem;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: #005fd6;
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
}

/* Facilities */
.facility-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.facility {
    flex: 1;
    min-width: 250px;
    background: #f9fbff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.facility img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.facility h4 {
    margin: 0.8rem 0 0.4rem;
    color: var(--green);
    font-weight: 700;
}

.facility p {
    color: var(--muted);
    padding: 0 1rem 1rem;
}

/* Gallery */
.gallery {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery figure {
    width: 32%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    text-align: center;
    transition: var(--transition);
}

.gallery figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    padding: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery figure {
        width: 48%;
    }
}

@media (max-width: 500px) {
    .gallery figure {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-img img {
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* End of sports.css */