* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.9rem;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd966;
}

.btn-call {
    background: #ffb347;
    color: #1e3c72;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-call:hover {
    background: #ff9f1c;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 140px 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto -60px;
}

.btn-big {
    background: #ffb347;
    color: #1e3c72;
    padding: 16px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-big:hover {
    background: #ff9f1c;
    transform: scale(1.03);
}

/* Quick Cards */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 30px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

.card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card p {
    color: #334155;
}

/* College Table / List */
.filter-bar {
    background: white;
    padding: 25px;
    border-radius: 30px;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.filter-bar select, .filter-bar button {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 60px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
}

.filter-bar button {
    background: #2a5298;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.college-list {
    display: grid;
    gap: 25px;
    margin-bottom: 60px;
}

.college-item {
    background: white;
    padding: 25px;
    border-radius: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.college-info h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.college-info p {
    color: #475569;
    margin: 5px 0;
}

.contact-btn {
    background: #ffb347;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    color: #1e3c72;
}

/* Contact Form */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
}

.contact-form button {
    background: #2a5298;
    color: white;
    padding: 14px 35px;
    font-size: 1.2rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffb347;
    padding: 14px 28px;
    border-radius: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
}

.sticky-contact a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 800px) {
    .hero h2 { font-size: 2.2rem; }
    .contact-wrap { grid-template-columns: 1fr; }
    nav ul { gap: 15px; }
    .header-flex { flex-direction: column; }
}
/* Enhanced Index Page Styles */

/* Hero Section - Massive */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0px 0;
}

.hero-badge {
    margin-bottom: 30px;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffb347;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #ffb347;
    color: #1e3c72;
}

.btn-primary:hover {
    background: #ff9f1c;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
}

.hero-trust {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trusted Section */
.trusted-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-title {
    text-align: center;
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logos span {
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
}

/* Quick Enquiry Bar */
.quick-enquiry-bar {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 99;
}

.quick-enquiry-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.enquiry-btn {
    background: #ffb347;
    color: #1e3c72;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #e0e7ff;
    color: #1e3c72;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Courses Grid */
.courses-section {
    padding: 80px 0;
    background: #f8fafc;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.course-icon i {
    font-size: 2rem;
    color: white;
}

.course-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.course-stats {
    color: #ffb347;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-list {
    list-style: none;
    margin: 20px 0;
}

.course-list li {
    padding: 8px 0;
    color: #475569;
}

.course-list i {
    color: #10b981;
    margin-right: 10px;
}

.course-link {
    display: inline-block;
    color: #1e3c72;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
}

/* States Grid */
.states-section {
    padding: 80px 0;
    background: white;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.state-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.state-card:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    transform: translateY(-5px);
}

.state-icon i {
    font-size: 2.5rem;
    color: #ffb347;
    margin-bottom: 15px;
}

.state-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.state-card p {
    color: #64748b;
    margin-bottom: 10px;
}

.state-card:hover p {
    color: rgba(255,255,255,0.9);
}

.college-count {
    display: inline-block;
    background: #e0e7ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 10px 0;
}

.state-card:hover .college-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.state-link {
    display: inline-block;
    margin-top: 15px;
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
}

.state-card:hover .state-link {
    color: #ffb347;
}

.view-all-states {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #1e3c72;
    border-radius: 40px;
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1e3c72;
    color: white;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #ffb347;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.student-info strong {
    display: block;
    color: #1e3c72;
}

.student-info span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    width: 220px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #ffb347;
    color: #1e3c72;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 10px;
}

.step-arrow i {
    font-size: 2rem;
    color: #cbd5e1;
}

/* Updates Section */
.updates-section {
    padding: 80px 0;
    background: white;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.update-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    border-left: 4px solid #ffb347;
}

.update-date {
    color: #ffb347;
    font-weight: 600;
    margin-bottom: 10px;
}

.update-card h3 {
    margin-bottom: 10px;
}

.update-card p {
    color: #64748b;
    margin-bottom: 15px;
}

.update-link {
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-primary {
    background: #ffb347;
    color: #1e3c72;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
}

.faq-item h3 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #ffb347;
}

.faq-item p {
    color: #475569;
    padding-left: 30px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-call, .float-whatsapp {
    background: #1e3c72;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
}

.float-whatsapp {
    background: #25D366;
}

.float-call:hover, .float-whatsapp:hover {
    transform: scale(1.1);
    width: auto;
    border-radius: 40px;
    padding: 0 18px;
}

.float-call:hover .float-text,
.float-whatsapp:hover .float-text {
    display: inline;
    margin-left: 8px;
}

.float-text {
    display: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { gap: 30px; }
    .section-title { font-size: 1.8rem; }
    .courses-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .faq-grid { grid-template-columns: 1fr; }
}