/* ===== ROOT VARIABLES ===== */
:root {
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f0;

    /* Neon Accent Colors (same as dark theme for consistency) */
    --accent: #2a9d90;
    --accent-rgb: 0, 245, 212;
    --accent-hover: #2a9d90;
    --accent-glow: #2a9d9070;

    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    /* Border Colors */
    --border-color: rgba(0, 0, 0, 0.1);
    --border-accent: #2a9d9070;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px var(--accent-glow);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.text-accent {
    color: var(--accent) !important;
}
.breadcrumb-item.active {
    color: var(--text-primary) !important;
}
.text-muted {
    color: var(--text-secondary) !important;
}
.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }
    50% {
        box-shadow:
            0 0 40px var(--accent-glow),
            0 0 60px var(--accent-glow);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-up:nth-child(1) {
    animation-delay: 0s;
}
.animate-fade-up:nth-child(2) {
    animation-delay: 0.1s;
}
.animate-fade-up:nth-child(3) {
    animation-delay: 0.2s;
}
.animate-fade-up:nth-child(4) {
    animation-delay: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: var(--bg-primary);
    box-shadow: 0 6px 25px var(--accent-glow);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-link {
    color: var(--text-secondary);
    padding: 0;
}

.btn-link:hover {
    color: var(--accent);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.navbar {
    padding: 0.75rem 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.1rem;
}

.navbar-brand {
    font-size: 1.25rem;
    color: var(--text-primary) !important;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
    background-color: #2a9d901a;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%
    );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -150px;
    left: -100px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== COLLEGE CARDS ===== */
.college-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.college-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
}

.college-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.college-card:hover .college-image img {
    transform: scale(1.05);
}

.college-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.college-badges {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    justify-content: space-between;
}

.college-badges .badge {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

.college-content {
    padding: 1.25rem;
}

.college-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3rem;
}

.college-card:hover .college-name {
    color: var(--accent);
}

.college-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.college-location i {
    margin-right: 0.25rem;
}

.college-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

.college-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.college-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.college-stats .stat-value {
    font-size: 0.875rem;
    font-weight: 600;
}

.college-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.ranking {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== STEP CARDS ===== */
.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-icon {
    width: 56px;
    height: 56px;
    background-color: #2a9d901a;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.feature-item i {
    font-size: 1.25rem;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
}

.stat-card.accent {
    background-color: #2a9d901a;
    border-color: var(--border-accent);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-card.accent .stat-number {
    color: var(--accent);
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-card .stars i {
    margin-right: 0.125rem;
}

.testimonial-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-info {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
}

.blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 0.25rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p,
.footer-bottom span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: none;
}

.sticky-cta.show {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 0.3s ease;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.sticky-cta-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.sticky-cta-close:hover {
    background-color: var(--bg-card-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--bg-secondary);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-color);
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .navbar-collapse .btn-accent {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .college-name {
        height: auto;
    }
}
/* ===== COLLEGE LISTING & FILTERS ===== */
.filter-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-control,
.form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-md);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Ensure uniform card heights */
#collegesGrid .col-md-6,
#collegesGrid .col-md-6 .college-card-wrapper {
    display: flex;
}

.college-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.college-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.college-footer {
    margin-top: auto;
}

@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}
.content-section p {
    line-height: 1.6;
}
.content-section ul li {
    margin-bottom: 0.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: #2a9d901a;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 128px;
    height: 128px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.team-card .desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}
.nav-tabs .nav-link.active {
    color: var(--accent);
    background: transparent;
    border-bottom-color: var(--accent);
}
.nav-tabs .nav-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--border-color);
}
.bg-accent-glow {
    background: rgba(0, 255, 255, 0.1);
}
.timeline {
    border-color: var(--border-color) !important;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #2a9d901a;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.why-list .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-input {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #2a9d901a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon i {
    font-size: 2rem;
    color: var(--accent);
}
/* Logo Styles */
.brand-logo {
    height: 55px;
    /* filter: brightness(0) invert(0); */
    transition: filter 0.3s ease;
}

/* .brand-logo:hover {
    filter: brightness(0) invert(0.8);
} */

/* ===== BOOTSTRAP CLASS OVERRIDES FOR WHITE THEME ===== */
/* Override Bootstrap 5 classes that cause dark theme issues in white theme */
.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
}

.text-white {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-white-50 {
    color: rgba(31, 41, 55, 0.5) !important;
}

.text-black-50 {
    color: rgba(31, 41, 55, 0.5) !important;
}

.bg-light {
    background-color: var(--bg-secondary) !important;
}

.bg-light-subtle {
    background-color: var(--bg-secondary) !important;
}

.border-dark {
    border-color: var(--border-color) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

/* Override specific elements that need white text in dark backgrounds */
.college-hero .text-white {
    color: var(--bg-primary) !important;
}

.college-hero .text-white-50 {
    color: var(--bg-secondary) !important;
}

/* Override for stat cards that use bg-dark-subtle */
.stat-card.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Override for elements that need dark text on light backgrounds */
.stat-card.bg-dark-subtle .stat-value.text-white {
    color: var(--text-primary) !important;
}

/* Override for badges that use bg-dark-subtle */
.badge.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Override for timeline elements */
.timeline {
    border-color: var(--border-color) !important;
}

.timeline .text-white {
    color: var(--text-primary) !important;
}

/* Override for form-card which uses bg-dark-subtle */
.form-card.bg-dark-subtle {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* Override for elements with bg-dark-subtle in college details */
.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

.bg-dark-subtle .text-white {
    color: var(--text-primary) !important;
}

.bg-dark-subtle .stat-value.text-white {
    color: var(--text-primary) !important;
}

.bg-dark-subtle .text-muted {
    color: var(--text-secondary) !important;
}

/* Override for breadcrumb section */
.breadcrumb-section.bg-dark-subtle {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

.breadcrumb-section .text-muted {
    color: var(--text-secondary) !important;
}

.breadcrumb-section .text-decoration-none.text-muted {
    color: var(--text-secondary) !important;
}

.breadcrumb-item.active {
    color: var(--text-primary) !important;
}

/* Override for nav tabs */
.nav-tabs .nav-link {
    color: var(--text-secondary) !important;
}

.nav-tabs .nav-link.active {
    color: var(--accent) !important;
    background: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: var(--text-primary) !important;
}

/* Override for timeline elements */
.timeline .bg-accent-glow {
    background: #2a9d901a !important;
    color: var(--accent) !important;
}

/* Override for timeline dots */
.timeline .bg-accent {
    background-color: var(--accent) !important;
    color: var(--bg-primary) !important;
}

/* Override for bg-light in college details */
.bg-light.text-dark {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}
