 
/* Bangalore CBSE Tuition - Purple & Neon Theme */

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

:root {
    --primary-purple: #7C3AED;
    --deep-purple: #4C1D95;  /* Darker for better contrast */
    --light-purple: #A855F7;
    --neon-pink: #EC4899;
    --neon-cyan: #06B6D4;
    --neon-yellow: #FBBF24;
    --dark-bg: #1E1B4B;
    
    /* NEW - Better readability colors */
    --text-primary: #FFFFFF;      /* Pure white for main text */
    --text-secondary: #E9D5FF;    /* Light purple for secondary text */
    --text-body: #F3E8FF;         /* Very light purple for body */
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4C1D95 0%, #6B21A8 50%, #7C3AED 100%);
    background-attachment: fixed;
    color: #FFFFFF;  /* Pure white instead of gradient */
    line-height: 1.8;  /* Increased from 1.6 */
    font-size: 18px;   /* Increased from 16px */
}

/* Header */
header {
    /*background: rgba(30, 27, 75, 0.95);
	background: linear-gradient(135deg, 30,70,75,0.99);
	background: linear-gradient(70deg, #FFFFFF 0%, #FFFFFF 30%, rgba(30, 27, 75, 0.95) 30%, rgba(30, 27, 75, 0.95) 100%);*/
	background: linear-gradient(75deg, #ffffff 0%, #ffffff 20%, rgba(168, 85, 247, 0.90) 60%, rgba(79, 29, 149, 0.90) 80%);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--neon-pink);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    /*background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));*/
	background:transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #FFFFFF;  /* Changed from light-text */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;  /* Increased */
}


nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.call-btn {
    background: linear-gradient(135deg, var(--neon-pink), var(--primary-purple));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
    transition: all 0.3s;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.9);
}

/* Hero */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}

/* Hero H1 - Remove animation, use solid color */
.hero h1 {
    font-size: 2.2rem;  /* Slightly larger */
    margin-bottom: 1rem;
    color: #FFFFFF;  /* Solid white instead of gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* Better readability */
    line-height: 1.4;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8)); }
}

/* Subtitle text */
.hero-subtitle {
    font-size: 1.2rem;  /* Increased from 1.1rem */
    color: #FFFFFF;     /* Pure white */
    margin-bottom: 2rem;
    line-height: 1.8;
}
/* All paragraph text */
p {
    color: #F3E8FF;  /* Very light purple - easy to read */
    font-size: 1.1rem;  /* Slightly larger */
    line-height: 1.8;
}

/* Card text */
.card p {
    color: #F3E8FF;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.badge {
    background: rgba(30, 27, 75, 0.7);
    padding: 1.5rem 2rem;  /* More padding */
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-number {
    font-size: 2rem;  /* Larger */
    font-weight: bold;
    color: #FFFFFF;  /* Solid white */
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary {
    background: linear-gradient(135deg, #EC4899, #7C3AED);
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;  /* Bigger */
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;  /* Larger text */
    font-weight: 700;   /* Bolder */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}


.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.9);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);  /* Better contrast */
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.7);
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem 1rem;
}

.section-title {
    font-size: 2.2rem;  /* Larger */
    text-align: center;
    margin-bottom: 2rem;
    color: #FFFFFF;  /* Solid white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.card {
    background: rgba(30, 27, 75, 0.7);  /* Darker background */
    border: 2px solid rgba(255, 255, 255, 0.2);  /* Lighter border */
    border-radius: 20px;
    padding: 2rem;  /* More padding */
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.4);
    border-color: #EC4899;
    background: rgba(30, 27, 75, 0.85);
}

.card h3 {
    color: #FFFFFF;  /* Changed from neon-cyan */
    margin-bottom: 1rem;
    font-size: 1.5rem;  /* Larger */
    font-weight: 600;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

th {
    background: var(--primary-purple);
    color: white;
    padding: 1rem;
    text-align: left;
}

td {
    padding: 1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

tr:hover {
    background: rgba(124, 58, 237, 0.1);
}

/* FAQ */
.faq-section {
    background: rgba(30, 27, 75, 0.4);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.faq-item {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.faq-question {
    color: #FFFFFF;  /* Changed from neon-cyan */
    font-weight: 700;  /* Bolder */
    font-size: 1.2rem;  /* Larger */
}

.faq-answer {
    color: #F3E8FF;  /* Very light purple */
    margin-top: 1rem;
    line-height: 2;  /* More spacing */
    font-size: 1.1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
footer {
    background: rgba(30, 27, 75, 0.95);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 3px solid var(--neon-pink);
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 17px;  /* Larger on mobile */
    }
    
    .hero h1 {
        font-size: 1.8rem;  /* Larger */
        line-height: 1.4;
    }
    
    p {
        font-size: 1.05rem;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.7rem;
    }
}
# Header with Floating Menu

## 1️⃣ ADD THIS CSS TO YOUR styles.css (at the end)

/* ========== FLOATING HEADER MENU ========== */
.main-header {
    /*background: rgba(30, 27, 75, 0.95);*/
	background: linear-gradient(70deg, #ffffff 0%, #ffffff 10%, rgba(30, 27, 75, 0.95) 100%);

    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--neon-pink);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
	margin-bottom: 0;

}

.main-header.scrolled {
    background: rgba(30, 27, 75, 0.98);
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.6);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    object-fit: cover;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;  /* Increased from 1.3rem */
    font-weight: bold;
    color: #000000;  /* Solid white - easier to read */
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.nav-menu a.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-spacer {
   /*height: 80px;*/
	display: none;  /* or set height: 0; */

}

@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(30, 27, 75, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border: 1px solid rgba(124, 58, 237, 0.3);
    }

    .menu-toggle {
        display: flex;
    }
}

/* ========== FOOTER STYLES ========== */
.main-footer {
    background: rgba(30, 27, 75, 0.95);
    border-top: 3px solid var(--neon-pink);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.footer-column h3 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-contact-item a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--light-text);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-footer {
        padding: 2rem 1rem 1rem;
    }
}
/* ========== FEES PAGE ADDITIONAL STYLES ========== */

/* Scholarship Alert Banner */
.scholarship-banner {
   
	 background: linear-gradient(135deg, #EC4899, #7C3AED);
	/* background: linear-gradient(135deg, #EC4899, #7C3AED);
	background: linear-gradient(90deg, #32CD32,#FBBF24,#EC4899);*/br
	/*#D0FE1D,#DFFF00 #32CD32 #FBBF24*/
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    position: relative;
    overflow: hidden;
}

.scholarship-banner-circle-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #FBBF24;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.3;
}

.scholarship-banner-circle-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #06B6D4;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.3;
}

.scholarship-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.scholarship-banner p {
    font-size: 1.5rem;
    font-weight: bold;
}

.scholarship-banner .sub-text {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Individual Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(91, 33, 182, 0.2));
    border: 3px solid #7C3AED;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.pricing-card-popular {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
    border-color: #EC4899;
}

.pricing-card-bestseller {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(124, 58, 237, 0.3));
    border-color: #EC4899;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
}

/* Badge on Pricing Card */
.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pricing-badge-blue {
    background: #06B6D4;
}

.pricing-badge-yellow {
    background: #FBBF24;
    color: #1E1B4B;
}

.pricing-badge-pink {
    background: #EC4899;
}

/* Pricing Card Title */
.pricing-card h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Monthly Pricing Box */
.pricing-monthly-box {
    background: rgba(30, 27, 75, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.pricing-monthly-box .label {
    font-size: 0.9rem;
    color: #DDD6FE;
    margin-bottom: 0.5rem;
}

.pricing-monthly-box .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.pricing-monthly-box .price span {
    font-size: 1rem;
}

.pricing-monthly-box .period {
    font-size: 0.9rem;
    color: #DDD6FE;
}

/* Annual Scholarship Box */
.pricing-annual-box {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.pricing-annual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing-annual-header .label {
    font-size: 0.9rem;
    color: #FFFFFF;
}

.pricing-discount-badge {
    background: #FBBF24;
    color: #1E1B4B;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-annual-box .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.pricing-annual-box .price span {
    font-size: 1rem;
}

.pricing-annual-box .period {
    font-size: 0.9rem;
    color: #FFFFFF;
}

.pricing-savings {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #FBBF24;
}

/* Big Savings Calculator */
.savings-calculator {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    border: 3px solid #FBBF24;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-calculator-bg-icon {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.1;
}

.savings-calculator h3 {
    color: #FBBF24;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.savings-calculator .subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.savings-calculator-inner {
    background: rgba(30, 27, 75, 0.7);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.savings-calculator-example {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #DDD6FE;
}

.savings-regular-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 10px;
}

.savings-regular-box .label {
    font-size: 1rem;
    color: #DDD6FE;
}

.savings-regular-box .calculation {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.savings-regular-box .price-strike {
    font-size: 2rem;
    text-decoration: line-through;
    color: #EC4899;
}

.savings-vs {
    font-size: 2rem;
    margin: 1rem 0;
    color: #FFFFFF;
}

.savings-annual-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 10px;
}

.savings-annual-box .label {
    font-size: 1rem;
}

.savings-annual-box .calculation {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.savings-annual-box .final-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.savings-total-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    border: 2px dashed #FBBF24;
}

.savings-total-box .label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.savings-total-box .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #FBBF24;
}

.savings-total-box .bonus-text {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .scholarship-banner h2 {
        font-size: 1.8rem;
    }
    
    .scholarship-banner p {
        font-size: 1.2rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .savings-calculator {
        padding: 1.5rem;
    }
    
    .savings-calculator h3 {
        font-size: 1.5rem;
    }
    
    .savings-total-box .amount {
        font-size: 2rem;
    }
}

/* ========== FULL WIDTH IMAGE SLIDER ========== */
/* Remove any max-width constraint */
.hero-slider {
    position: relative;
    width: 100vw;  /* Full viewport width */
    margin-left: calc(-50vw + 50%);  /* Break out of container */
    height: 500px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	margin-top: 0;
    padding-top: 0;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

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

/* Text Overlay on Slider */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 27, 75, 0.85), rgba(30, 27, 75, 0.3));
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slider-text-content {
    max-width: 600px;
    z-index: 5;
}

.slider-text-content h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slider-text-content p {
    font-size: 1.3rem;
    color: #DDD6FE;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-text-content .btn-primary {
    margin-right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: #EC4899;
    width: 35px;
    border-radius: 6px;
    border-color: #FFFFFF;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slider-text-content h2 {
        font-size: 1.8rem;
    }
    
    .slider-text-content p {
        font-size: 1.1rem;
    }
    
    .slider-overlay {
        background: linear-gradient(to right, rgba(30, 27, 75, 0.9), rgba(30, 27, 75, 0.6));
    }
}


/* ========== CONTACT PAGE STYLES ========== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7C3AED;
    border-radius: 20px;
    padding: 2rem;
}

.contact-info-box h2 {
    color: #EC4899;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-detail {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail h3 {
    color: #06B6D4;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    color: #F3E8FF;
    line-height: 1.8;
    margin: 0.3rem 0;
}

.contact-link {
    color: #06B6D4;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #EC4899;
    text-decoration: underline;
}

/* Contact Form Box */
.contact-form-box {
    background: rgba(91, 33, 182, 0.2);
    border: 2px solid #EC4899;
    border-radius: 20px;
    padding: 2rem;
}

.contact-form-box h2 {
    color: #EC4899;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(124, 58, 237, 0.5);
    background: rgba(30, 27, 75, 0.6);
    color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EC4899;
    background: rgba(30, 27, 75, 0.8);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: #DDD6FE;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Map Section */
.map-section {
    background: rgba(30, 27, 75, 0.4);
    border-radius: 20px;
    padding: 2rem;
}

.map-container {
    max-width: 100%;
    margin: 2rem auto;
}

.map-container iframe {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-box h2,
    .contact-form-box h2 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}