:root {
    --primary: #1E3A8A;
    /* Elite Navy Blue */
    --primary-light: #3B82F6;
    --primary-glow: rgba(30, 58, 138, 0.1);
    --secondary: #e11d48;
    /* Vibrant Crimson */
    --secondary-glow: rgba(225, 29, 72, 0.1);
    --accent: #F59E0B;
    /* Sporty Amber */
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --text: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 900;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo {
    color: var(--primary);
    text-shadow: none;
}

.navbar.scrolled .nav-link {
    color: var(--text-muted);
    text-shadow: none;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.hero-active .navbar:not(.scrolled) .logo {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo i {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.hero-active .navbar:not(.scrolled) .nav-link {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
    border-radius: 50px !important;
    background: var(--secondary) !important;
    border: none !important;
    box-shadow: 0 10px 20px var(--secondary-glow) !important;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--secondary-glow) !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.hero-active .navbar:not(.scrolled) .menu-toggle {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 5;
}

.hero-video {
    position: absolute;
    top: 60%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;

    scale: 1.1;
    /* Scale up slightly to hide blurred edges */
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, var(--bg) 200%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    background: linear-gradient(45deg, var(--secondary), #f43f5e);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
    animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-title span {
    display: block;
    color: var(--secondary);
}

.hero-subtitle {

    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--secondary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Section Styling */
.section {
    padding: 50px 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-tag {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    /* font-size: clamp(2.5rem, 5vw, 3.5rem);*/
    font-size: 40px;
    color: var(--primary);
}

.section-titles {
    /* font-size: clamp(2.5rem, 5vw, 3.5rem);*/
    font-size: 30px;
    color: var(--primary);
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Cards */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: block;
}

/* Project Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
}

.card-content {
    padding: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.08);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

textarea.form-input {
    resize: none;
}

/* Support & FAQ Styling */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.support-image {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.support-image img {
    width: 130%;
    height: 100%;
    object-fit: cover;
}

.faq-page {
    display: none;
}

.faq-page.active {
    display: grid;
    gap: 1.25rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.99rem;

}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;

}

.faq-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-nav-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.faq-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats-bar {
    background: var(--primary);
    padding: 5rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: #0F172A;
    padding: 80px 0 40px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-logo {
    color: white;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: block;
    font-family: var(--font-heading);
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
}

/* Project Panels (Taft School Style) */
.project-panels-section {

    overflow: hidden;
    background: var(--bg);
}

.project-panels-section .section-header {
    margin-bottom: 4rem;
}

.project-panels-grid {
    display: flex;
    height: 600px;
    width: 100%;
}

.project-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.project-panel:last-child {
    border-right: none;
}

.project-panel:hover {
    flex: 2;
}

.panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.project-panel:hover .panel-bg {
    transform: scale(1.1);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: var(--transition);
}

.project-panel:hover .panel-overlay {
    opacity: 0.9;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.panel-content {
    position: absolute;
    inset: 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 10;
}

.panel-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 2rem;
}

.project-panel:hover .panel-details {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 2.5rem;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.project-panel:hover .panel-title {
    transform: translateY(0);
}

.panel-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.project-panel:nth-child(even) .panel-bottom-bar {
    background: var(--secondary);
}

.panel-bottom-bar span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: white;
}

.project-panel:hover .panel-bottom-bar {
    background: transparent !important;
}

@media (max-width: 1024px) {
    .project-panels-grid {
        flex-direction: column;
        height: auto;
    }

    .project-panel {
        height: 400px;
        flex: none;
    }

    .project-panel:hover {
        flex: none;
    }

    .panel-details {
        max-height: 100px;
        opacity: 1;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-container {
        padding: 0 1.5rem;
        max-width: 100%;
        gap: 1rem;
    }

    .nav-actions {
        margin-left: auto;
        gap: 0.8rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem !important;
        font-size: 0.7rem !important;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-link {
        color: white !important;
        font-size: 1.5rem;
        text-shadow: none !important;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Institution Detail Pages */
.inst-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.inst-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.3) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.inst-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.inst-hero h1 {
    color: white;
    font-size: clamp(3.5rem, 10vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-weight: 900;
    line-height: 0.9;
}

.inst-hero h1 span {
    background: linear-gradient(to right, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.class-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.class-number {  
    font-weight: 900;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.class-label {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.fee-container {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.fee-value {
    font-weight: 900;
    color: var(--secondary);
    font-size: 1.25rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.section .section-header {
    margin-bottom: 1.5rem;
}

.section .reveal p {
    margin-bottom: 1.5rem;
}

.media-item {
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.media-item:hover img {
    transform: scale(1.1);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}

.preloader-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 3rem;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.preloader-logo i {
    color: var(--secondary);
    animation: shieldReveal 1s ease-out forwards;
}

.preloader-track {
    position: relative;
    width: 250px;
    margin: 0 auto;
}

.preloader-skate {
    position: absolute;
    top: -35px;
    left: 0;
    font-size: 2rem;
    color: var(--secondary);
    animation: skateGlide 2s infinite ease-in-out;
    z-index: 2;
}

.preloader-bar {
    width: 100%;
    height: 4px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    animation: elegantLoading 2s infinite ease-in-out;
}

@keyframes skateGlide {
    0% {
        left: 0;
        transform: translateX(0) rotate(0);
    }

    45% {
        transform: translateX(210px) rotate(5deg);
    }

    50% {
        left: 0;
        transform: translateX(210px) rotate(5deg);
    }

    95% {
        transform: translateX(0) rotate(-5deg);
    }

    100% {
        left: 0;
        transform: translateX(0) rotate(0);
    }
}

@keyframes shieldReveal {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@keyframes elegantLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Contact Page Enhancements */
.glass-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.glass-pill i {
    color: #10b981;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.premium-contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.premium-contact-card:hover {
    transform: translateY(-15px);
    background: white;
    border-color: var(--primary-light);
    box-shadow: 0 40px 80px rgba(30, 58, 138, 0.12);
}

.premium-contact-card.active {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.25);
}

.premium-contact-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.premium-contact-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.premium-contact-card.active .icon-box {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.premium-contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.premium-contact-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.premium-contact-card.active p {
    color: rgba(255, 255, 255, 0.85);
}

.card-link {
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.premium-contact-card.active .card-link {
    color: var(--secondary);
}

/* Glass Form */
.form-actual-pane {
    padding: 5rem 4rem;
    background: white;
    position: relative;
}

.form-actual-pane::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.03), transparent 70%);
    pointer-events: none;
}

.glass-form-container {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    border: none;
    display: grid;
}

.form-info-pane {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 5rem 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.form-info-pane::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.1;
    filter: blur(80px);
    border-radius: 50%;
}

.form-info-pane h2 span {
    color: var(--secondary);
}

.info-items-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    color: white;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .glass-form-container .grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   V2 Institutional Design System
   Used in: IDEALConvent, SportsAcademy, ForceFitness, SWS
   ========================================================================== */

.elite-v2-section {
    padding: 100px 0;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.split-left,
.split-right {
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {

    .split-left,
    .split-right {
        padding: 4rem 2rem;
    }
}

/* Fee List V2 */
.fee-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fee-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.split-right .fee-row-v2 {
    border-bottom: 1px solid #f1f5f9;
}

.fee-info-v2 h4 {
    margin-bottom: 0.25rem;
}

.fee-price-v2 {
    font-weight: 900;
    font-family: var(--font-display);
}

/* Feature Grid V2 */
.feature-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .feature-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.feature-item-v2 {
    padding: 2rem;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.feature-item-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

/* Media Gallery V2 */
.media-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    height: 600px;
}

@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.media-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.media-item:hover img,
.media-item:hover video {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .media-item {
        height: 400px;
    }
}

/* Contact Page V8: Glass Dashboard */
.contact-infov8-layout {
    background: #f8fafc;
    padding-bottom: 150px;
}

.v8-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .v8-info-row {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
}

.v8-info-pill {
    background: white;
    padding: 2.5rem;
    margin-top: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.v8-info-pill:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-light);
}

.v8-pill-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.v8-info-pill:hover .v8-pill-icon {
    background: var(--primary);
    color: white;
}

/* Founder Card V2 - Cinematic Redesign */
.founder-section-v2 {
    padding: 100px 0;
    background: white;
}

/* Faculty Section */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.faculty-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.faculty-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.faculty-image {
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-info {
    padding: 2.5rem;
    text-align: center;
}

.faculty-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.faculty-role {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 1024px) {
    .faculty-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

.founder-card-v2 {
    background: #0f172a;
    /* Deep Navy */
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 80px;
    color: white;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.founder-card-v2.profile-card {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
    gap: 40px;
}

.founder-card-v2.profile-card .founder-image-portal {
    margin: 0 auto;
}

.founder-card-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.founder-image-portal {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, #06b6d4 100%);
    box-shadow: 0 0 50px rgba(225, 29, 72, 0.3);
}

.founder-image-portal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1e293b;
    border: 5px solid #0f172a;
}

.founder-content-v2 {
    flex-grow: 1;
}

.founder-content-v2 h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.founder-content-v2 p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.founder-content-v2 strong {
    color: white;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-card-v2 {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
        gap: 40px;
    }

    .founder-image-portal {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .founder-content-v2 h2 {
        font-size: 2.5rem;
    }
}

.v8-pill-content h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.v8-pill-content p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.v8-form-portal {
    max-width: 1000px;
    margin: 100px auto 0;
    background: white;
    border-radius: 50px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border: 1px solid #f1f5f9;
}

@media (max-width: 1024px) {
    .v8-form-portal {
        grid-template-columns: 1fr;
    }
}

.v8-form-visual {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.v8-form-visual::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.v8-form-visual h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
}

.v8-form-visual p {
    font-size: 1.15rem;
    opacity: 0.8;
    line-height: 1.8;
}

.v8-form-actual {
    padding: 5rem;
}

.v8-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .v8-input-grid {
        grid-template-columns: 1fr;
    }
}

.v8-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v8-field label {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.v8-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.v8-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.v8-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    border: none;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px var(--primary-glow);
    margin-top: 1rem;
}

.v8-submit:hover {
    background: var(--secondary);
    box-shadow: 0 30px 60px var(--secondary-glow);
    transform: translateY(-5px);
}

/* ==========================================
   PAGE: HOME / INDEX
   ========================================== */
:root {
    --home-glass-bg: rgba(255, 255, 255, 0.78);
    --home-glass-border: rgba(255, 255, 255, 0.5);
    --home-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --home-glass-blur: 15px;
    --home-card-glow: rgba(30, 58, 138, 0.12);
    --home-card-glow-secondary: rgba(225, 29, 72, 0.12);
}

.home-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.home-reveal-left {
    transform: translateX(-50px);
}
.home-reveal-right {
    transform: translateX(50px);
}
.home-reveal-up {
    transform: translateY(50px);
}
.home-reveal-scale {
    transform: scale(0.92);
}
.home-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.aurora-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    opacity: 0.25;
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
}
.blob-1 {
    top: 15%;
    left: 10%;
    animation: float-blob 14s infinite alternate ease-in-out;
}
.blob-2 {
    bottom: 10%;
    right: 10%;
    animation: float-blob 18s infinite alternate-reverse ease-in-out;
}
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(65px, 45px) scale(1.15); }
    100% { transform: translate(-45px, -65px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}
.home-hero-title {
    font-size: clamp(3rem, 9vw, 5.5rem) !important;
    letter-spacing: -0.02em !important;
    line-height: 0.95 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 900 !important;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.text-glow {
    color: var(--secondary) !important;
    text-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
}
.text-glass-sub {
    background: rgba(15, 23, 42, 0.35);
    padding: 1.25rem 2.25rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.home-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}
@keyframes badge-pulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4); }
    100% { transform: scale(1.06); box-shadow: 0 10px 35px rgba(225, 29, 72, 0.75); }
}

.scroll-indicator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
    gap: 0.6rem;
    animation: fadeInDown 1.5s ease-out 0.8s both;
}
.scroll-indicator-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}
.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.8s infinite ease-in-out;
}
.scroll-indicator-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}
@keyframes scroll-wheel-anim {
    0% { top: 7px; opacity: 1; }
    50% { top: 18px; opacity: 0.25; }
    100% { top: 7px; opacity: 1; }
}

.stats-bar {
    background: transparent !important;
    margin-top: -65px;
    position: relative;
    z-index: 15;
    padding: 0 0 50px 0 !important;
}
.stats-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 3rem 2rem !important;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}
.stats-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
    border-color: var(--primary-light);
}
.stat-item {
    color: var(--primary) !important;
    position: relative;
    transition: all 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.05);
}
.stat-value {
    color: var(--secondary) !important;
    font-size: clamp(2.3rem, 4vw, 3.3rem) !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem;
    line-height: 1 !important;
    text-shadow: 0 2px 4px rgba(225, 29, 72, 0.08);
}
.stat-item:nth-child(even) .stat-value {
    color: var(--primary) !important;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.08);
}
.stat-label {
    color: var(--text-muted) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem !important;
}

.support-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    transition: all 0.5s ease;
}
.support-image:hover {
    transform: scale(1.02);
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.18);
}
.support-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.support-image:hover img {
    transform: scale(1.08) rotate(0.5deg);
}

.testimonials-section {
    background: #f8fafc;
    padding: 100px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 28px;
    padding: 3rem 2.5rem !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light) !important;
}
.quote-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    opacity: 0.15;
    position: absolute;
    top: 2rem;
    left: 2rem;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}
.author-info h4 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}
.author-info p {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 2px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-section {
    background: white;
    padding: 100px 0;
}
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.event-row {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 24px;
    padding: 1.75rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.4s ease;
}
.event-row:hover {
    transform: translateX(8px);
    background: white;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-color: rgba(30, 58, 138, 0.15);
}
.event-date-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem;
    border-radius: 18px;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}
.event-date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.event-date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.event-content {
    flex-grow: 1;
    text-align: left;
}
.event-tag {
    background: rgba(225, 29, 72, 0.1);
    color: var(--secondary);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.6rem;
}
.event-content h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 850;
    margin: 0 0 0.5rem 0;
}
.event-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.event-content p i {
    color: var(--secondary);
}
.event-action .btn {
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes coinTossHover {
    0% { transform: rotateY(0deg) translateY(0); }
    35% { transform: rotateY(180deg) translateY(-12px); }
    70% { transform: rotateY(360deg) translateY(0); }
    100% { transform: rotateY(720deg) translateY(0); }
}

.project-panel {
    position: relative;
}
.panel-action-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.4s ease;
    z-index: 12;
    transform-style: preserve-3d;
    perspective: 800px;
}
.project-panel:hover .panel-action-badge {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.5);
    animation: coinTossHover 0.9s ease-in-out;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    height: 480px;
    background: #0f172a;
}
.faq-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.5s ease;
}
.faq-image-wrapper:hover img {
    transform: scale(1.04);
}
.faq-page {
    display: none;
}
.faq-page.active {
    display: grid;
    gap: 1.25rem;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem;
        margin-top: -50px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
    }
    .event-action {
        width: 100%;
    }
    .event-action .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-container {
        grid-template-columns: 1fr !important;
        border-radius: 24px;
        padding: 2.5rem 1.5rem !important;
    }
}

.competition-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 1.5rem;
}
.competition-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.competition-modal-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.22);
    max-width: 650px;
    width: 100%;
    padding: 3.5rem 3rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}
.competition-modal-overlay.active .competition-modal-card {
    transform: scale(1) translateY(0);
}
.competition-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 100;
    transform-style: preserve-3d;
    perspective: 800px;
}
.competition-modal-close:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
    animation: coinTossHover 0.9s ease-in-out;
}
.competition-modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.competition-badge {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
}
.competition-modal-header h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.5px;
}
.accent-text {
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(225, 29, 72, 0.3);
}
.competition-modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin-inline: auto;
}

.competition-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-input-wrapper label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
}
.form-input-wrapper label i {
    color: var(--secondary);
    font-size: 0.9rem;
}
.form-input-wrapper input,
.form-input-wrapper select {
    padding: 0.95rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-input-wrapper input:focus,
.form-input-wrapper select:focus {
    outline: none;
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}
.form-input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
}
.comp-btn {
    padding: 1.1rem 2rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform-style: preserve-3d;
    perspective: 800px;
}
.comp-submit-btn {
    background: var(--secondary);
    color: white;
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.3);
}
.comp-submit-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.35);
    transform: translateY(-4px);
}

.competition-modal-success {
    position: absolute;
    inset: 0;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 50;
}
.competition-modal-success.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    color: #10b981;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}
.competition-modal-success h4 {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
}
.competition-modal-success p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 450px;
}
.success-close-btn {
    background: var(--primary);
    color: white;
    max-width: 200px;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}
.success-close-btn:hover {
    background: var(--secondary);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
    transform: translateY(-4px);
}

/* ==========================================
   PAGE: ABOUT
   ========================================== */
:root {
    --about-glass-bg: rgba(255, 255, 255, 0.75);
    --about-glass-border: rgba(255, 255, 255, 0.45);
    --about-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --about-glass-blur: 15px;
    --about-card-glow: rgba(30, 58, 138, 0.15);
    --about-card-glow-secondary: rgba(225, 29, 72, 0.15);
}

.about-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-reveal-left {
    transform: translateX(-50px);
}
.about-reveal-right {
    transform: translateX(50px);
}
.about-reveal-up {
    transform: translateY(50px);
}
.about-reveal-scale {
    transform: scale(0.92);
}
.about-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.blob-1 {
    top: 10%;
    left: 10%;
    animation: float-blob 14s infinite alternate ease-in-out;
}
.blob-2 {
    bottom: 5%;
    right: 10%;
    animation: float-blob 18s infinite alternate-reverse ease-in-out;
}

.about-hero-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}
.about-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}

.about-grid-who {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5.5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .about-grid-who {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.about-stat-card {
    background: var(--about-glass-bg);
    border: 1px solid var(--about-glass-border);
    backdrop-filter: blur(var(--about-glass-blur));
    -webkit-backdrop-filter: blur(var(--about-glass-blur));
    box-shadow: var(--about-glass-shadow);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.about-stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.about-stat-card:hover .about-stat-glow {
    opacity: 1;
}
.about-stat-value {
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    line-height: 1;
}
.about-stat-label {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-media-wrapper {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    transition: all 0.5s ease;
}
.about-media-wrapper:hover {
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.22);
    transform: scale(1.02);
}
.about-media-glass {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 2;
    pointer-events: none;
}
.about-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.about-media-wrapper:hover .about-media-img {
    transform: scale(1.08) rotate(0.5deg);
}
.float-slow {
    animation: float-slow-anim 6s infinite ease-in-out;
}
@keyframes float-slow-anim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.about-timeline-section {
    position: relative;
    padding: 100px 0;
}
.timeline-decor-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.15;
    top: 40%;
    left: -225px;
    filter: blur(50px);
    pointer-events: none;
}
.about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}
.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border);
    transform: translateX(-50%);
    z-index: 1;
}
.about-timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-timeline-item {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    position: relative;
    padding: 1.5rem 3.5rem;
    box-sizing: border-box;
    z-index: 2;
}
.about-timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: auto;
}
.about-timeline-item:nth-child(odd) {
    margin-right: auto;
}
.about-timeline-badge {
    position: absolute;
    right: -15px;
    top: 2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s ease;
}
.about-timeline-item:nth-child(even) .about-timeline-badge {
    left: -15px;
    right: auto;
}
.timeline-badge-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.4s ease;
}
.about-timeline-item.active .about-timeline-badge {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
    transform: scale(1.15);
}
.about-timeline-item.active .timeline-badge-circle {
    background: var(--secondary);
}
.about-timeline-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.25rem;
    width: 100%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--about-glass-shadow);
    border-color: var(--primary);
}
.about-timeline-item.active .about-timeline-content {
    background: white;
    border-left: 4px solid var(--secondary);
}
.about-timeline-item:nth-child(even).active .about-timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary);
}
.about-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.25);
}
.about-timeline-item:nth-child(even) .about-timeline-year {
    background: linear-gradient(135deg, var(--secondary) 0%, #f43f5e 100%);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25);
}
.about-timeline-content h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.about-timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 768px) {
    .about-timeline-line {
        left: 30px;
    }
    .about-timeline-item {
        width: 100%;
        padding: 1.5rem 0 1.5rem 60px;
        align-self: flex-start;
        justify-content: flex-start;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .about-timeline-badge {
        left: 15px !important;
        right: auto !important;
    }
}

.about-service-card {
    background: var(--surface);
    padding: 2.75rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light);
}
.about-service-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.about-service-card:hover .about-service-glow {
    opacity: 1;
}
.about-service-icon {
    width: 80px;
    height: 80px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.about-service-card:hover .about-service-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
    animation: coinTossHover 0.9s ease-in-out;
}
.about-service-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}
.about-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.about-service-card:hover .icon-pilates i {
    animation: sway-icon 1.2s infinite ease-in-out;
}
.about-service-card:hover .icon-zumba i {
    animation: heartbeat-icon 0.8s infinite ease-in-out;
}
.about-service-card:hover .icon-yoga i {
    animation: breath-icon 1.6s infinite ease-in-out;
}
.about-service-card:hover .icon-bootcamp i {
    animation: lift-icon 1s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-service-card:hover .icon-defense i {
    animation: shield-pulse-icon 1.2s infinite ease-in-out;
}
.about-service-card:hover .icon-drills i {
    animation: run-vibe-icon 0.3s infinite linear;
}
.about-service-card:hover .icon-piloxing i {
    animation: fire-flicker-icon 0.8s infinite ease-in-out;
}
.about-service-card:hover .icon-kids i {
    animation: bounce-icon 0.8s infinite ease-in-out;
}

@keyframes sway-icon {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    50% { transform: rotate(15deg) translateX(5px); }
}
@keyframes heartbeat-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.22); }
}
@keyframes breath-icon {
    0%, 100% { transform: scale(1); filter: opacity(1); }
    50% { transform: scale(1.15); filter: opacity(0.85); }
}
@keyframes lift-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px) rotate(-10deg); }
}
@keyframes shield-pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
@keyframes run-vibe-icon {
    0%, 100% { transform: translate(0, 0) skewX(0); }
    25% { transform: translate(-2px, 1px) skewX(-6deg); }
    75% { transform: translate(2px, -1px) skewX(6deg); }
}
@keyframes fire-flicker-icon {
    0%, 100% { transform: scale(1) rotate(-4deg); filter: brightness(1); }
    50% { transform: scale(1.12) rotate(4deg); filter: brightness(1.25); }
}
@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card-what {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-card-what:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 30px 60px rgba(225, 29, 72, 0.08);
}
.about-card-what-icon {
    width: 80px;
    height: 80px;
    background: #fff1f2;
    color: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.img-icon-wrapper {
    background: #eef2ff;
    padding: 18px;
}
.img-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}
.about-card-what:hover .about-card-what-icon {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
    animation: coinTossHover 0.9s ease-in-out;
}
.about-card-what:hover .img-icon-wrapper {
    background: var(--primary);
}
.about-card-what:hover .img-icon-wrapper img {
    filter: brightness(0) invert(1);
    transform: scale(1.1) rotate(5deg);
}
.about-card-what h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.about-card-what p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
.about-card-glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.about-card-what:hover .about-card-glare {
    transform: translateX(100%);
}

.about-card-serve {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-card-serve:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.08);
}
.about-card-serve-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.about-card-serve:hover .about-card-serve-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25);
    animation: coinTossHover 0.9s ease-in-out;
}
.about-card-serve h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.about-card-serve p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.about-serve-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.about-serve-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s ease;
}
.about-serve-list li i {
    color: var(--secondary);
    font-size: 1rem;
}
.about-card-serve:hover .about-serve-list li {
    transform: translateX(6px);
}

.about-founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}
@media (max-width: 1024px) {
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.about-founder-card-v2 {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 4.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.25rem;
    color: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-founder-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(225, 29, 72, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.about-founder-card-v2:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.about-founder-card-v2:hover::before {
    opacity: 1;
}
.about-founder-image-portal {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    padding: 8px;
    z-index: 1;
}
.about-founder-image-portal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1e293b;
    border: 4px solid #0f172a;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}
.about-founder-card-v2:hover .about-founder-image-portal img {
    transform: scale(1.03);
}
.about-portal-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #06b6d4 100%);
    animation: rotate-portal 8s linear infinite;
    z-index: 1;
}
.about-portal-spinner.spinner-secondary {
    background: linear-gradient(135deg, var(--primary-light) 0%, #a855f7 100%);
}
@keyframes rotate-portal {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.about-founder-content-v2 h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
}
.about-founder-content-v2 h2 span {
    color: var(--secondary);
}
.founder-role-badge {
    display: inline-block;
    padding: 0.45rem 1.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}
.founder-role-badge.badge-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #f43f5e 100%);
}
.founder-role-badge.badge-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.founder-certifications {
    color: #e8d03f;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
.about-founder-content-v2 p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}
.about-founder-content-v2 strong {
    color: white;
}

.about-card-mv {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-card-mv:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.06);
}
.about-card-mv-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: #eff6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.about-card-mv-icon.icon-mission {
    background: #fff1f2;
    color: var(--secondary);
}
.about-card-mv-icon.icon-values {
    background: #fef3c7;
    color: var(--accent);
}
.about-card-mv:hover .about-card-mv-icon {
    animation: coinTossHover 0.9s ease-in-out;
}
.about-card-mv h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.about-card-mv p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   PAGE: IDEAL CONVENT SCHOOL
   ========================================== */
:root {
    --school-glass-bg: rgba(255, 255, 255, 0.75);
    --school-glass-border: rgba(255, 255, 255, 0.45);
    --school-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --school-glass-blur: 15px;
    --school-card-glow: rgba(30, 58, 138, 0.15);
    --school-card-glow-secondary: rgba(225, 29, 72, 0.15);
}

.school-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.school-reveal-left {
    transform: translateX(-50px);
}
.school-reveal-right {
    transform: translateX(50px);
}
.school-reveal-up {
    transform: translateY(50px);
}
.school-reveal-scale {
    transform: scale(0.92);
}
.school-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.school-hero-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}
.school-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem 2rem !important;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-light);
}
.contact-info-card:first-child {
    border: 1px solid var(--primary-light);
}
.contact-icon {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    flex-shrink: 0;
    margin: 0 auto !important;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.contact-info-card:first-child .contact-icon {
    background: var(--primary);
    color: white;
}
.contact-info-card:hover .contact-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}
.contact-info-card:hover .contact-icon i {
    color: white !important;
}
.contact-info-card h4 {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.contact-info-card p {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.6;
    font-size: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5.5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}
.school-media-wrapper {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    transition: all 0.5s ease;
}
.school-media-wrapper:hover {
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.22);
    transform: scale(1.02);
}
.school-media-glass {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 2;
    pointer-events: none;
}
.school-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.school-media-wrapper:hover .school-media-img {
    transform: scale(1.08) rotate(0.5deg);
}

.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--school-glass-bg) !important;
    backdrop-filter: blur(var(--school-glass-blur));
    -webkit-backdrop-filter: blur(var(--school-glass-blur));
    padding: 2.5rem 2rem !important;
    border-radius: 28px !important;
    border: 1px solid var(--school-glass-border) !important;
    box-shadow: var(--school-glass-shadow) !important;
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    transition: all 0.4s ease;
}
@media (max-width: 768px) {
    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem !important;
    }
}
.stats-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.stat-dashboard-item {
    position: relative;
    text-align: center;
}
.stat-dashboard-value {
    color: var(--secondary) !important;
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}
.stat-dashboard-item:nth-child(odd) .stat-dashboard-value {
    color: var(--primary) !important;
}
.stat-dashboard-label {
    color: var(--text-muted) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
}
.activity-card {
    background: white;
    border-radius: 24px;
    padding: 2.25rem 1.75rem !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light);
}
.activity-icon {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto !important;
    color: var(--primary);
    font-size: 2rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.activity-card:hover .activity-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 12px 25px rgba(225, 29, 72, 0.3);
}
.activity-card:hover .activity-icon i {
    color: white !important;
}
.activity-card h4 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.class-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.class-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.06);
}
.class-number {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}
.class-card:hover .class-number {
    color: var(--secondary);
    transform: scale(1.1);
}
.class-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.fee-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.fee-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fee-info-v2 {
    flex-grow: 1;
}
.fee-price-v2 {
    font-family: var(--font-heading);
    font-weight: 900;
    flex-shrink: 0;
}
.cta-shimmer {
    position: relative;
    overflow: hidden;
}
.cta-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}
.cta-shimmer:hover::after {
    left: 100%;
}

.feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media (max-width: 480px) {
    .feature-grid-v2 {
        grid-template-columns: 1fr;
    }
}
.feature-item-v2 {
    text-align: left !important;
    transition: all 0.3s ease;
}
.feature-item-v2:hover {
    transform: translateY(-5px);
}
.feature-item-v2-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(15,23,42,0.05);
    color: var(--secondary);
    font-size: 1.25rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.feature-item-v2:hover .feature-item-v2-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 10px 20px var(--primary-glow);
}
.feature-item-v2-icon i {
    transition: color 0.4s ease;
}
.feature-item-v2:hover .feature-item-v2-icon i {
    color: white !important;
}
.feature-item-v2 h4 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.feature-item-v2 p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.faculty-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}
.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light);
}
.faculty-image-portal-wrapper {
    width: 100%;
    height: 330px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}
.faculty-image-portal {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    padding: 6px;
    z-index: 1;
}
.faculty-image-portal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1e293b;
    border: 4px solid #0f172a;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}
.faculty-card:hover .faculty-image-portal img {
    transform: scale(1.04);
}
.faculty-portal-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    animation: rotate-portal 9s linear infinite;
    z-index: 1;
}
.faculty-card:nth-child(even) .faculty-portal-spinner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.faculty-info {
    padding: 2.25rem;
    text-align: center;
    flex-grow: 1;
}
.faculty-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.faculty-role {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.faq-layout-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .faq-layout-split {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}
.faq-side-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    height: 480px;
    background: #0f172a;
}
.faq-side-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.faq-side-image-wrapper:hover img {
    transform: scale(1.06);
}

/* ==========================================
   PAGE: FORCE FITNESS INDIA
   ========================================== */
:root {
    --force-glass-bg: rgba(255, 255, 255, 0.75);
    --force-glass-border: rgba(255, 255, 255, 0.45);
    --force-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --force-glass-blur: 15px;
    --force-card-glow: rgba(30, 58, 138, 0.15);
    --force-card-glow-secondary: rgba(225, 29, 72, 0.15);
}

.force-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.force-reveal-left {
    transform: translateX(-50px);
}
.force-reveal-right {
    transform: translateX(50px);
}
.force-reveal-up {
    transform: translateY(50px);
}
.force-reveal-scale {
    transform: scale(0.92);
}
.force-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.force-hero-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}
.force-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}

.force-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5.5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .force-about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}
.force-media-wrapper {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    transition: all 0.5s ease;
}
.force-media-wrapper:hover {
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.22);
    transform: scale(1.02);
}
.force-media-glass {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 2;
    pointer-events: none;
}
.force-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.force-media-wrapper:hover .force-media-img {
    transform: scale(1.08) rotate(0.5deg);
}

.force-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.force-stat-card {
    background: var(--force-glass-bg);
    border: 1px solid var(--force-glass-border);
    backdrop-filter: blur(var(--force-glass-blur));
    -webkit-backdrop-filter: blur(var(--force-glass-blur));
    box-shadow: var(--force-glass-shadow);
    padding: 2.25rem 1.75rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.force-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.force-stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.force-stat-card:hover .force-stat-glow {
    opacity: 1;
}
.force-stat-value {
    color: var(--secondary);
    font-size: 2.8rem;
    margin-bottom: 0.4rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    line-height: 1;
}
.force-stat-card:nth-child(2) .force-stat-value {
    color: var(--primary);
}
.force-stat-label {
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.force-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.force-service-card {
    background: white;
    border-radius: 24px;
    padding: 2.75rem 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15,23,42,0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.force-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-light);
}
.force-service-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.force-service-card:hover .force-service-glow {
    opacity: 1;
}
.force-service-icon {
    width: 80px;
    height: 80px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.6rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.force-service-card:hover .force-service-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
}
.force-service-card:hover .force-service-icon i {
    color: white !important;
}
.force-service-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}
.force-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.premium-activity-card {
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,23,42,0.04) !important;
    transition: all 0.4s ease !important;
}
.premium-activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1) !important;
    border-color: var(--primary);
}
.card-img-container {
    position: relative;
    overflow: hidden;
}
.card-img-container img {
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
}
.premium-activity-card:hover .card-img-container img {
    transform: scale(1.08);
}
.premium-activity-card .card-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}
.premium-activity-card .card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.client-box {
    background: white !important;
    border-radius: 24px !important;
    padding: 2.5rem 2.25rem !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    border: 1px solid var(--border) !important;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.client-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: var(--secondary);
}
.client-box h4 {
    color: var(--primary) !important;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.client-box h4 i {
    color: var(--secondary);
    font-size: 1.25rem;
}
.client-box p {
    color: var(--text-muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    font-size: 0.95rem;
}

.force-service-img-box {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
    background: #f8fafc;
    padding: 10px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.force-service-card:hover .force-service-img-box {
    background: white;
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(225,29,72,0.1);
}
.force-service-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.force-service-card:hover .force-service-img {
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }
    .force-service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .force-service-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   PAGE: GURUKUL SPORTS ACADEMY
   ========================================== */
:root {
    --sports-glass-bg: rgba(255, 255, 255, 0.75);
    --sports-glass-border: rgba(255, 255, 255, 0.45);
    --sports-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --sports-glass-blur: 15px;
    --sports-card-glow: rgba(30, 58, 138, 0.15);
    --sports-card-glow-secondary: rgba(225, 29, 72, 0.15);
}

.sports-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sports-reveal-left {
    transform: translateX(-50px);
}
.sports-reveal-right {
    transform: translateX(50px);
}
.sports-reveal-up {
    transform: translateY(50px);
}
.sports-reveal-scale {
    transform: scale(0.92);
}
.sports-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.sports-hero-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}
.sports-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}

.sports-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5.5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .sports-about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}
.sports-media-wrapper {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    transition: all 0.5s ease;
}
.sports-media-wrapper:hover {
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.22);
    transform: scale(1.02);
}
.sports-media-glass {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 2;
    pointer-events: none;
}
.sports-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.sports-media-wrapper:hover .sports-media-img {
    transform: scale(1.08) rotate(0.5deg);
}

.sports-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.sports-stat-card {
    background: var(--sports-glass-bg);
    border: 1px solid var(--sports-glass-border);
    border-left: 5px solid var(--secondary) !important;
    backdrop-filter: blur(var(--sports-glass-blur));
    -webkit-backdrop-filter: blur(var(--sports-glass-blur));
    box-shadow: var(--sports-glass-shadow);
    padding: 2.25rem 1.75rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sports-stat-card:nth-child(2) {
    border-left-color: var(--primary) !important;
}
.sports-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.sports-stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sports-stat-card:hover .sports-stat-glow {
    opacity: 1;
}
.sports-stat-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
}
.sports-stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.sports-list {
    margin: 1.5rem 0 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
}
.sports-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s ease;
}
.sports-list li i {
    color: var(--secondary);
    font-size: 1rem;
}
.premium-activity-card:hover .sports-list li {
    transform: translateX(5px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15,23,42,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: var(--secondary);
}
.why-icon {
    width: 75px;
    height: 75px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2rem auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.why-card:hover .why-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
}
.why-card:hover .why-icon i {
    color: white !important;
}
.why-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   PAGE: SWS INDIA
   ========================================== */
:root {
    --sws-glass-bg: rgba(255, 255, 255, 0.78);
    --sws-glass-border: rgba(255, 255, 255, 0.5);
    --sws-glass-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    --sws-glass-blur: 15px;
    --sws-card-glow: rgba(30, 58, 138, 0.12);
    --sws-card-glow-secondary: rgba(225, 29, 72, 0.12);
}

.sws-reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sws-reveal-left {
    transform: translateX(-50px);
}
.sws-reveal-right {
    transform: translateX(50px);
}
.sws-reveal-up {
    transform: translateY(50px);
}
.sws-reveal-scale {
    transform: scale(0.92);
}
.sws-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.sws-hero-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}
.sws-badge-pulse {
    animation: badge-pulse 2s infinite alternate ease-in-out;
}

.sws-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5.5rem;
    align-items: center;
}
.sws-media-wrapper {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    transition: all 0.5s ease;
}
.sws-media-wrapper:hover {
    box-shadow: 0 45px 85px rgba(15, 23, 42, 0.22);
    transform: scale(1.02);
}
.sws-media-glass {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 2;
    pointer-events: none;
}
.sws-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.sws-media-wrapper:hover .sws-media-img {
    transform: scale(1.08) rotate(0.5deg);
}

.sws-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.sws-stat-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 2rem 1.5rem !important;
    border-radius: 22px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    text-align: center;
    transition: all 0.4s ease;
}
.sws-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: var(--secondary) !important;
}
.sws-stat-card h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}
.sws-stat-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sws-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.sws-activity-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.sws-activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(225, 29, 72, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.sws-activity-card:hover::before {
    opacity: 1;
}
.sws-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.15);
}
.sws-activity-icon {
    width: 75px;
    height: 75px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 800px;
}
.sws-activity-card:hover .sws-activity-icon {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35);
}
.sws-activity-card:hover .sws-activity-icon i {
    color: white !important;
}
.sws-activity-card h4 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

.premium-activity-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 350px;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 32px !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05) !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-activity-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1) !important;
    border-color: rgba(30, 58, 138, 0.2) !important;
}
.card-img-container {
    width: 45%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
    padding: 2.5rem;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.premium-activity-card:hover .card-img-container img {
    transform: scale(1.08) rotate(-1.5deg);
}
.card-content {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elite-v2-section {
    padding: 120px 0;
    background: #f8fafc;
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.split-left {
    border-radius: 40px;
    padding: 4.5rem 4rem !important;
    background: linear-gradient(135deg, #0b0f19 0%, #151d30 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
    color: white;
}
.fee-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}
.fee-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.fee-row-v2:hover {
    padding-left: 10px;
    border-bottom-color: var(--secondary);
}
.fee-info-v2 h4 {
    margin: 0 0 5px 0;
}
.fee-info-v2 p {
    margin: 0;
}
.fee-price-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
}
.fee-row-v2:hover .fee-price-v2 {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.45);
}
.shimmer-btn {
    position: relative;
    overflow: hidden;
}
.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: all 0.8s ease;
    opacity: 0;
}
.shimmer-btn:hover::after {
    left: 130%;
    opacity: 1;
    transition: all 0.8s ease;
}

.feature-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.feature-item-v2 {
    background: white;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.feature-item-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: rgba(30, 58, 138, 0.15);
}
.feature-item-v2 > div {
    width: 55px;
    height: 55px;
    background: #eef2ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem !important;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 800px;
}
.feature-item-v2:hover > div {
    animation: coinTossHover 0.9s ease-in-out;
    background: var(--secondary) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}
.feature-item-v2:hover > div i {
    color: white !important;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.faculty-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}
.faculty-image-portal-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.faculty-image-portal {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: relative;
    padding: 6px;
    z-index: 1;
}
.faculty-image-portal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1e293b;
    border: 4px solid #0f172a;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}
.faculty-card:hover .faculty-image-portal img {
    transform: scale(1.04);
}
.faculty-portal-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    animation: rotate-portal 9s linear infinite;
    z-index: 1;
}
.faculty-card:nth-child(even) .faculty-portal-spinner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}
.faculty-info {
    padding: 2.25rem;
    text-align: center;
    flex-grow: 1;
}
.faculty-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.faculty-role {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.faq-layout-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}
.faq-side-image-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    height: 400px; /* Adjusted for better proportion */
    background: #0f172a;
}
.faq-side-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.faq-page {
    display: none;
}
.faq-page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .sws-about-grid {
        grid-template-columns: 1fr !important;
        gap: 3.5rem;
    }
    .sws-activity-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .split-layout {
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }
    .faq-layout-split {
        grid-template-columns: 1fr !important;
        gap: 3.5rem;
    }
    .faq-side-image-wrapper {
        height: 350px;
    }
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: 1fr !important;
    }
    .premium-activity-card {
        flex-direction: column !important;
        height: auto;
    }
    .card-img-container {
        width: 100%;
        height: 250px;
    }
    .card-content {
        width: 100%;
        padding: 2rem;
    }
    .split-left {
        padding: 3rem 2rem !important;
    }
    .feature-grid-v2 {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 576px) {
    .sws-activity-grid {
        grid-template-columns: 1fr !important;
    }
    .sws-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
.media-item {
    height: 300px; /* original size */
    overflow: hidden;
}

.sws-media-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
    height: 350px; /* Adjusted for better proportion */
    background: #0f172a;
}

}


.about-card-what-icons {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: #fff0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;


    overflow: hidden;
}

  

    .about-card-what-icons img {
        width: 38px !important;
        height: 38px !important;
        object-fit: contain !important;
        display: block;
    }

.coin-icon {
    perspective: 800px;
    cursor: pointer;
    display: inline-block;
    width: 80px; height: 80px;
    border-radius: 24px;
    background: #fff0f3;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.coin-icon img {
    width: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-out;
}
.coin-icon.flip-heads img {
    transform: rotateY(1800deg);
}
.coin-icon.flip-tails img {
    transform: rotateY(1620deg);
}
     