:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent-color: #00d4ff;
    --text-main: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #0f172a;
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2001;
    /* Must be top-most */
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #00d4ff, #00ffaa);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* NAVBAR STYLING */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 50px;
    border-radius: 5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.school-name {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.location {
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-portal {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-portal:hover {
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-only-header,
.mobile-only-btn {
    display: none;
}

/* ++++++++++ Main-Section +++++++++ */
/* Hero Slider Section */
.hero-slider {
    height: 95vh;
    /* Leaves 5vh for the next section hint */
    width: 100%;
    position: relative;
    margin-top: 0;
    /* Starts under the transparent nav */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0.8) contrast(1);
}

/* Dark overlay to make images look premium and text pop */
.slide-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0 10%;
}

/* The Glass Card inside the slide */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    max-width: 600px;
    color: white;
    animation: fadeInUp 7s ease forwards infinite;
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: #0f172a;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.glass-card h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.glass-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-premium {
    padding: 15px 35px;
    background: white;
    color: #0f172a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-premium:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    scale: 1.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ++++++++++ About-Section +++++++++ */
.about-section {
    padding: 100px 0;
    background: #0f172a;
    color: white;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
}

.main-img-container {
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(-2deg);
    /* Slight tilt for premium vibe */
    border: 1px solid var(--glass-border);
}

.about-main-img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

/* The Floating Glass Stat */
.floating-glass-stat {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content Styling */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Mini Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #0f172a;
}

/* Animation for Floating */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ++++++++++ Vission-Section +++++++++ */
.vision-mission-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.vmv-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.07);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: 0.3s;
}

.vmv-card:hover .vmv-icon {
    background: var(--accent-color);
    color: #0f172a;
    transform: rotateY(360deg);
}

.vmv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
}

.vmv-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Values List Styling */
.values-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.values-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.values-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* The Hover Glow Effect */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0;
    transition: 0.6s;
    z-index: -1;
}

.vmv-card:hover .card-glow {
    width: 200px;
    height: 200px;
    opacity: 0.2;
}

/* ++++++++++ Academic-Section +++++++++ */
/* Academics Section */
.academics-section {
    padding: 100px 0;
    background: #0f172a;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Bento Grid Logic */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.bento-item {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Specific Bento Sizes */
.teaching-quality {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.legacy-trust {
    grid-column: span 1;
}

.bento-content i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Subtle Animated Background for the large item */
.bento-glass-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotateLiquid 10s linear infinite;
    pointer-events: none;
}

@keyframes rotateLiquid {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ++++++++++ Gallery-Section +++++++++ */
.gallery-section {
    padding: 100px 0;
    background: #0f172a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: blur(3px)brightness(0.5);
}

/* Gallery Overlay Effect */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: 0.4s;
    display: flex;
    justify-content: center;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Masonry Layout Rules */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* ++++++++++ Admission-Section +++++++++ */
.admissions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.admission-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    position: relative;
}

/* Admission Steps */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.step-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.2);
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
}

.step-card h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.admission-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Pulse Glow Effect for the whole section */
.admission-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

/* ++++++++++ AdmissionForm-Section +++++++++ */
/* Modal Backdrop */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Glass Modal Box */
.glass-modal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    color: white;
}

/* Header & Progress */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.form-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.form-progress-bar {
    height: 100%;
    width: 20%;
    background: var(--accent-color);
    border-radius: 10px;
    transition: 0.4s;
    box-shadow: 0 0 15px var(--accent-color);
}

.step-indicator {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Form Fields */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.input-group.full {
    grid-column: span 2;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    outline: none;
}

.input-group select option {
    color: #0f172a;
}

.input-group input:focus {
    border-color: var(--accent-color);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.seats-badge {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6464;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    background: rgba(255, 77, 77, 0.1) !important;
}

.error-msg {
    color: #ff4d4d;
    font-size: 0.7rem;
    display: block;
    margin-top: 4px;
    height: 12px;
}
/* ++++++++++ Founder-Section +++++++++ */
/* Leadership & Founder Section */
.leadership-section {
    padding: 100px 0;
    background: #0f172a;
}

.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 40px;
    margin-bottom: 80px;
}

.founder-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.founder-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin: 20px 0;
}

.signature strong { display: block; color: white; font-size: 1.3rem; }
.signature span { color: var(--accent-color); font-size: 0.9rem; text-transform: uppercase; }

/* Faculty Gallery - The Dynamic Part */
.faculty-header { text-align: center; margin-bottom: 40px; }
.sub-title { color: white; font-size: 2rem; }

.faculty-gallery {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to new lines */
    gap: 20px;
    justify-content: center;
}

.teacher-card {
    flex: 1 1 300px; /* Flex-grow, Flex-shrink, Base-width */
    max-width: 850px; /* Prevents 1 photo from becoming TOO huge */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--glass-border);
}

.teacher-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.mobl{
    display: none;
}

.teacher-card:hover img { transform: scale(1.1); }

.teacher-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}
/* ++++++++++ Excellence-Section +++++++++ */
/* Excellence Grid */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.excellence-card {
    animation: fadeInUp 3s ease forwards ;
    padding: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.excellence-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.excellence-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ++++++++++ Stats-Section +++++++++ */
/* Stats / Achievements Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ++++++++++ Testiminial-Section +++++++++ */
/* SECTION */
#testimonials {
    padding: 100px 0;
    background: #0f172a;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: #fff;
}

.badge {
    font-size: 14px;
}

/* SWIPER */
.testimonial-swiper {
    width: 100%;
    padding-bottom: 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    transition: 0.5s;
}

/*  DEFAULT (SIDE CARDS) */
.swiper-slide .testimonial-card {
    transform: scale(0.8);
    opacity: 0.4;
    filter: blur(3px);
    transition: 0.5s;
}

/* ACTIVE CENTER CARD */
.swiper-slide-active .testimonial-card {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

/* NEIGHBOR CARDS */
.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
    transform: scale(0.9);
    opacity: 0.7;
    filter: blur(1px);
}

/* CARD */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    max-width: 350px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    color: #00d4ff;
    margin-bottom: 15px;
}

.feedback {
    font-style: italic;
    margin-bottom: 20px;
}

.user-details strong {
    display: block;
}

.user-details span {
    font-size: 12px;
    color: #00d4ff;
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet-active {
    background: #00d4ff;
    width: 20px;
    border-radius: 5px;
}

/* ++++++++++ Contact-Section +++++++++ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

.info-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.info-glass-card:hover {
    transform: scale(1.03);
    border-color: var(--accent-color);
}

.info-glass-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 400px;
    filter: grayscale(0.5) contrast(1.2);
    /* Premium Map Look */
}

/* Footer */
.glass-footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.social-links a {
    color: white;
    margin-left: 20px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* FLOATING BUTTONS */
.floating-actions {
    position: fixed;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    /* Allows clicking things behind the container */
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-btn {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(37, 211, 102, 0.5);
    left: 30px;
}

.call-btn {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
    right: 30px;
}

.fab:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

/* YouTube Card Styling */
.youtube-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.yt-channel-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Footer Polish */
.glass-footer {
    border-top: 1px solid var(--glass-border);
    background: #0a0f1d;
}

.footer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
    text-align: center;
    font-size: 25px;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.6;
    color: white;
    margin-bottom: 5px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: white;
    margin-top: 5px;
}

.footer-copyright p {
    margin-top: 5px;
}

.atlier a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* FAB Positioning Fix */
.fab {
    position: fixed;
    bottom: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.wa-floating {
    left: 10px;
    background: rgba(37, 211, 102, 0.4);
}

.call-floating {
    right: 10px;
    background: rgba(0, 212, 255, 0.4);
}

.fab:hover {
    transform: scale(1.1);
}

/* Unique Styles for Portal Modal */
.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-color));
}

.status-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

#portalModal .modal-content {
    max-width: 450px; /* Smaller than the admission form */
    text-align: center;
    animation: none;
}