/* 
    Sky-High Academy - Premium CSS Design System
    Theme: Yellow + Red + Black + White
*/

:root {
    --primary: #EAB308; /* Yellow-600 */
    --primary-light: #FDE047;
    --accent: #EF4444; /* Red-500 */
    --accent-dark: #B91C1C;
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --text-light: #F8FAFC;
    --text-dim: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #f8fafc;
}

h1, h2, h3, h4, .logo-txt {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid var(--glass-border);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 20px;
    color: var(--primary);
    letter-spacing: 5px;
    font-weight: 800;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Admissions Banner */
.admissions-banner {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.banner-cta {
    background: white;
    color: var(--accent);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Header & Nav */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-txt {
    font-size: 1.5rem;
    color: var(--bg-dark);
    letter-spacing: -1px;
}

.logo-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    margin-top: -5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    gap: 1.5rem;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
    background: var(--bg-dark);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--bg-darker) !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
    transition: var(--transition);
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.5);
}

.btn-outline {
    border: 2px solid var(--bg-dark);
    color: var(--bg-dark);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #fff9e6, #ffffff);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: var(--bg-dark);
}

.badge {
    background: rgba(234, 179, 8, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(234,179,8,0.2);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight-red {
    color: var(--accent);
}

.img-responsive {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 20px;
}

.hero-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

/* Motivational Ticker Belt */
.ticker-belt {
    background: var(--bg-darker);
    color: var(--primary);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ticker-content {
    display: inline-block;
    animation: ticker 40s linear infinite;
    padding-left: 100%;
}

.ticker-content span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Pamphlets Section */
.pamphlets {
    padding: 80px 0;
    background: #f1f5f9;
}

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

.pamphlet-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.pamphlet-item:hover img {
    transform: scale(1.02);
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: var(--shadow-premium);
}

.card-thumb {
    font-weight: 900;
    font-size: 3rem;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.course-card.highlighted {
    border: 2px solid var(--primary);
}

/* Dark BG Sections */
.dark-bg {
    background: var(--bg-darker);
    color: white;
    padding: 100px 0;
}

/* Rankers Section */
.rankers-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
}

.rankers-carousel::-webkit-scrollbar {
    display: none;
}

/* Auto-scroll track support */
.rankers-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.rankers-carousel:hover .rankers-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.success-slide {
    min-width: 450px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
}

.success-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.success-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
    color: white;
    text-align: left;
    transition: var(--transition);
}

.success-slide:hover .slide-caption {
    padding-bottom: 2.5rem;
}

.slide-caption h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-caption p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e2e8f0;
    max-width: 90%;
}

/* Faculty Flip Cards */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.faculty-card {
    height: 350px;
    perspective: 1000px;
}

.faculty-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.faculty-card:hover .faculty-inner {
    transform: rotateY(180deg);
}

.faculty-front, .faculty-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.faculty-front {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.expert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(239, 68, 68, 0.1));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.1);
}

.faculty-back {
    background: var(--primary);
    color: var(--bg-dark);
    transform: rotateY(180deg);
    text-align: center;
}

/* Utilities */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
    bottom: 0;
}

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

/* Facilities Section */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.facility-img {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0;
}

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

.facility-item h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--bg-dark);
    font-weight: 700;
}

/* Fee Section */
.fee-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.fee-card {
    max-width: 400px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

.fee-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.fee-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fee-list li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

/* Dashboard Preview */
.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.add-review-section h3 {
    color: white;
    margin-bottom: 1.5rem;
}

/* Image Lightbox */
.lightbox-modal {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    z-index: 10005;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    text-align: center;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10006;
}

.close-lightbox:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.preview-features {
    list-style: none;
    margin-top: 1.5rem;
}

.preview-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-features li i {
    color: var(--primary);
}

.mockup-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 30px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-body {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(255,255,255,0.05);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-chart {
    height: 100px;
    background: linear-gradient(90deg, var(--primary) 30%, rgba(255,255,255,0.1) 30%);
    border-radius: 8px;
}

.mockup-stats {
    display: flex;
    gap: 10px;
}

.m-stat {
    flex: 1;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--bg-dark);
}

#demoForm {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

#demoForm input, #demoForm select {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #f8fafc;
}

.w-full { width: 100%; }

/* --- Modern Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: var(--transition);
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card:hover .icon-box {
    background: var(--primary);
    color: #ffffff;
}

.info-card h4 {
    color: var(--bg-darker);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.info-card p {
    font-size: 1rem;
    color: #475569;
    margin: 0;
    font-weight: 600;
}

.phone-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 800;
}

.phone-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* WhatsApp Contact Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Modern Form */
.contact-form {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.modern-form label {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: #94a3b8;
    transition: var(--transition);
    pointer-events: none;
}

.modern-form input:focus ~ label,
.modern-form input:not(:placeholder-shown) ~ label,
.modern-form textarea:focus ~ label,
.modern-form textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: var(--bg-darker);
    padding: 0 0.4rem;
    color: var(--primary);
}

.modern-form select {
    color: #94a3b8;
}
.modern-form select option {
    background: var(--bg-darker);
    color: white;
}

.mt-4 { margin-top: 1rem; }
.ml-2 { margin-left: 0.5rem; }

/* Consistently Stylized Interactive Elements */
.cursor-dot, .cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000;
    transition: transform 0.1s ease-out, background-color 0.3s ease, border-color 0.3s ease;
    opacity: 0;
}

.cursor-dot { width: 8px; height: 8px; background-color: var(--primary); }
.cursor-outline { width: 40px; height: 40px; border: 2px solid var(--primary); }

body:hover .cursor-dot, body:hover .cursor-outline { opacity: 1; }

.cursor-hover .cursor-dot { transform: scale(1.5); background-color: var(--accent); }
.cursor-hover .cursor-outline { transform: scale(1.5); border-color: var(--accent); background: rgba(239, 68, 68, 0.1); }

/* Exit Intent Modal Special Styling */
.modal-content.exit-intent { border-top: 8px solid var(--accent); }

.offer-badge {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 5px;
    font-weight: 800;
    margin-bottom: 1rem;
}
/* --- Student Reviews Section --- */
.reviews {
    padding: 80px 0;
    background: #f8fafc;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
}

.review-info h4 {
    margin: 0;
    color: var(--bg-darker);
    font-size: 1.1rem;
}

.review-stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    color: #475569;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.add-review-section {
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-radius: 20px;
}

/* Batch Section Styles - Enhanced Visibility */
.batch-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, #1e293b, #0f172a); /* Dark gradient background */
}

.batch-container {
    padding: 4rem 2rem;
    color: white !important;
    border: 1px solid rgba(234, 179, 8, 0.2) !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(234, 179, 8, 0.05);
}

.batch-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.batch-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
}

.batch-quote {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    font-style: italic;
    font-weight: 300;
}

.limited-msg {
    margin: 0;
    font-weight: 700;
    color: var(--accent); /* Red for urgency */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Full Responsiveness & Polish Audit */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-text h1 { font-size: 3.5rem; }
    .preview-container { grid-template-columns: 1fr; gap: 2rem; }
    .success-slide { min-width: 380px; height: 300px; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; margin: 1rem 0; }
    .hero-sub { font-size: 1rem; padding: 0 1rem; }
    .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-visual { display: none; }
    
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; cursor: pointer; }
    
    .section-header h2 { font-size: 2.2rem; }
    .success-slide { min-width: 85vw; height: 280px; }
    .slide-caption h3 { font-size: 1.2rem; }
    .slide-caption p { font-size: 0.9rem; }
    
    .faculty-grid { grid-template-columns: 1fr; }
    .course-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .facility-grid { grid-template-columns: 1fr; }
    .pamphlet-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; }
    .info-card { flex-direction: column; text-align: center; gap: 1rem; }
    
    .batch-container { padding: 3rem 1.5rem; }
    .batch-title { font-size: 2rem; }
    .batch-quote { font-size: 1rem; margin-bottom: 1.5rem; }
    
    .ticker-content span { font-size: 0.75rem; letter-spacing: 1px; }
    
    .cursor-dot, .cursor-outline { display: none !important; }
    .rankers-track { animation-duration: 30s; }
    
    .modal-content { padding: 2rem; margin: 20% auto; width: 95%; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    .logo-txt { font-size: 1.2rem; }
    .btn-glow, .btn-outline { width: 100%; text-align: center; }
    .stat-card { padding: 1.5rem; }
    .stat-card h3 { font-size: 2rem; }
    .admissions-banner { font-size: 0.8rem; }
}

/* Fixes for Image presentation */
.img-responsive {
    transition: var(--transition);
}

.success-slide:hover .img-responsive {
    transform: scale(1.05);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    text-decoration: none;
}

