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

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.logo img {
    width: 85px;
    height: 36px;
}

.nav-menu li a {
    color: black;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6600;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    /* background: linear-gradient(135deg, #ff6600, #ff8533); */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    /* box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3); */
}

.brand-name {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 25px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.login-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ffaa66);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* NEET Banner */
.neet-banner {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 2rem 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rc-logo {
    background: #fff;
    color: #ff6600;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.banner-left h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.banner-center {
    flex: 1;
    text-align: center;
}

.result-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.result-hindi {
    background: linear-gradient(45deg, #fff, #ffeecc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.students-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.student-card {
    text-align: center;
    min-width: 100px;
}

.rank {
    background: #fff;
    color: #ff6600;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.student-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #ffeecc);
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.student-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.congratulations {
    font-style: italic;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-right {
    text-align: center;
}

.seats-left {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.seats-left h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff, #fff8f0);
    color: #333;
}

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

.hero-left h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #333;
}

.highlight {
    color: #ff6600;
    text-shadow: 0 2px 4px rgba(255, 102, 0, 0.2);
}

.hero-left p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.cta-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ffaa66);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.teacher-img {
    overflow: hidden;
}

.teacher-img img {
    width: 205px;
    height: auto;
    position: relative;
    left: -29.6px;
    top: 3px;
}

.student-img img {
    width: 317.5px;
    height: auto;
    position: relative;
    left: -92.2px;
    top: -52px;
}

.student-img {
    overflow: hidden;
}

.secondary-btn {
    background: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.secondary-btn:hover {
    background: #ff6600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.hero-right {
    position: relative;
}

.hero-images {
    position: relative;
    height: 400px;
}

.teacher-img,
.student-img {
    width: 150px;
    height: 200px;
    border-radius: 15px;
    position: absolute;
    border: 3px solid #ff6600;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.teacher-img {
    left: 0;
    top: 50px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.student-img {
    right: 0;
    top: 0;
    background: linear-gradient(135deg, #fff, #fff8f0);
}

.chat-bubble,
.chat-bubble-2 {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    max-width: 200px;
    border: 2px solid #ff6600;
}

.chat-bubble {
    top: 20px;
    left: 120px;
}

.chat-bubble-2 {
    bottom: 80px;
    right: 120px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6600;
    text-shadow: 0 2px 4px rgba(255, 102, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.feature-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #fff;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.stat-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.live-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ff6600;
}

.stat-card p {
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 4rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.2rem;
    color: #fff;
}

/* Courses Section */
.courses-section {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

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

.course-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.course-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

.course-card.featured {
    border-color: #ff6600;
    background: linear-gradient(135deg, #fff, #fff8f0);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-header h3 {
    font-size: 1.5rem;
    color: #ff6600;
}

.course-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.course-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-content li {
    padding: 0.5rem 0;
    color: #666;
}

.course-duration,
.course-target {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.course-duration {
    color: #ff6600;
}

.course-target {
    color: #666;
}

.course-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.course-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ffaa66);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Course Features */
.course-features {
    padding: 4rem 0;
    background: #fff;
    color: #333;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.1);
}

.feature-item:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* About Content */
.about-content {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #ff6600;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image .image-placeholder {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ff6600;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.about-image h4 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.about-image p {
    color: #666;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #fff;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.value-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Achievements */
.achievements {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.achievement-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 102, 0, 0.2);
}

.achievement-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

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

.contact-info h2 {
    color: #ff6600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.1);
}

.contact-item:hover {
    border-color: #ff6600;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    color: #ff6600;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #ff6600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.1);
}

.contact-form h3 {
    color: #ff6600;
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff8533, #ffaa66);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #fff;
    color: #333;
}

.map-placeholder {
    background: #fff8f0;
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff6600;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.map-content {
    text-align: center;
}

.map-content h3 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 1rem;
}

.directions-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #fff8f0;
    color: #333;
}

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

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.faq-item:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.faq-item h4 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 4px solid #ff6600;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
}

.footer-section h4 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    background: #555;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1001;
}

.theme-toggle-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.theme-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 120px;
    border: 2px solid var(--primary-color);
}

.theme-options.active {
    display: flex;
}

.theme-option {
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.theme-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-option.active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.theme-option.active::after {
    content: "✓";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

/* CSS Variables for Theme Colors */
:root {
    --primary-color: #ff6600;
    --secondary-color: #ff8533;
    --light-bg: #fff8f0;
    --shadow-color: rgba(255, 102, 0, 0.2);
    --hover-shadow: rgba(255, 102, 0, 0.3);
}

/* Blue Theme */
[data-theme="blue"] {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --light-bg: #eff6ff;
    --shadow-color: rgba(37, 99, 235, 0.2);
    --hover-shadow: rgba(37, 99, 235, 0.3);
}

/* Green Theme */
[data-theme="green"] {
    --primary-color: #059669;
    --secondary-color: #10b981;
    --light-bg: #ecfdf5;
    --shadow-color: rgba(5, 150, 105, 0.2);
    --hover-shadow: rgba(5, 150, 105, 0.3);
}

/* Purple Theme */
[data-theme="purple"] {
    --primary-color: #7c3aed;
    --secondary-color: #8b5cf6;
    --light-bg: #f3e8ff;
    --shadow-color: rgba(124, 58, 237, 0.2);
    --hover-shadow: rgba(124, 58, 237, 0.3);
}

/* Red Theme */
[data-theme="red"] {
    --primary-color: #dc2626;
    --secondary-color: #ef4444;
    --light-bg: #fef2f2;
    --shadow-color: rgba(220, 38, 38, 0.2);
    --hover-shadow: rgba(220, 38, 38, 0.3);
}

/* Black Theme */
[data-theme="black"] {
    --primary-color: #1f2937;
    --secondary-color: #374151;
    --light-bg: #f9fafb;
    --shadow-color: rgba(31, 41, 55, 0.2);
    --hover-shadow: rgba(31, 41, 55, 0.3);
}

/* Special styling for black theme to ensure good contrast */
[data-theme="black"] .header {
    background: #fff;
    border-bottom: 2px solid #1f2937;
}

[data-theme="black"] .nav-menu a {
    color: #333;
}

[data-theme="black"] .nav-menu a:hover,
[data-theme="black"] .nav-menu a.active {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
}

[data-theme="black"] .brand-name {
    color: #1f2937;
}

[data-theme="black"] .hero {
    background: linear-gradient(135deg, #fff, #f9fafb);
}

[data-theme="black"] .hero-left h1 {
    color: #1f2937;
}

[data-theme="black"] .highlight {
    color: #1f2937;
}

[data-theme="black"] .section-title {
    color: #1f2937;
}

[data-theme="black"] .rc-logo {
    color: #1f2937;
}

[data-theme="black"] .rank {
    color: #1f2937;
    background: #fff;
}

[data-theme="black"] .footer {
    background: #1f2937;
    border-top: 4px solid #374151;
}

[data-theme="black"] .footer-section h4 {
    color: #9ca3af;
}

[data-theme="black"] .footer-section a:hover {
    color: #d1d5db;
}

[data-theme="black"] .footer-logo span {
    color: #9ca3af;
}

[data-theme="black"] .social-links a:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
}

/* Update existing styles to use CSS variables */
.header {
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
}

/* .logo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px var(--shadow-color);
} */

.brand-name {
    color: var(--primary-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.login-btn:hover {
    box-shadow: 0 6px 20px var(--hover-shadow);
}

.neet-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.rc-logo {
    color: var(--primary-color);
}

.rank {
    color: var(--primary-color);
}

.student-img {
    border: 3px solid var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, #fff, var(--light-bg));
}

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

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.cta-btn:hover {
    box-shadow: 0 6px 20px var(--hover-shadow);
}

.secondary-btn {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.teacher-img,
.student-img {
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.teacher-img {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.chat-bubble,
.chat-bubble-2 {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.features {
    background: var(--light-bg);
}

.section-title {
    color: var(--primary-color);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.feature-card h3 {
    color: var(--primary-color);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.live-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px var(--shadow-color);
}

.stat-card h3 {
    color: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.courses-section {
    background: var(--light-bg);
}

.course-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.course-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff, var(--light-bg));
    box-shadow: 0 8px 25px var(--shadow-color);
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px var(--shadow-color);
}

.course-header h3 {
    color: var(--primary-color);
}

.course-duration {
    color: var(--primary-color);
}

.course-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.course-btn:hover {
    box-shadow: 0 6px 20px var(--hover-shadow);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.feature-item h4 {
    color: var(--primary-color);
}

.about-content {
    background: var(--light-bg);
}

.about-text h2,
.about-text h3 {
    color: var(--primary-color);
}

.about-image .image-placeholder {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.about-image h4 {
    color: var(--primary-color);
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.value-card h3 {
    color: var(--primary-color);
}

.achievements {
    background: var(--light-bg);
}

.achievement-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px var(--shadow-color);
}

.achievement-number {
    color: var(--primary-color);
}

.contact-section {
    background: var(--light-bg);
}

.contact-info h2 {
    color: var(--primary-color);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.contact-icon {
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--primary-color);
}

.contact-form h3 {
    color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

.submit-btn:hover {
    box-shadow: 0 6px 20px var(--hover-shadow);
}

.map-placeholder {
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.map-content h3 {
    color: var(--primary-color);
}

.directions-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px var(--shadow-color);
}

.directions-btn:hover {
    box-shadow: 0 4px 15px var(--hover-shadow);
}

.faq-section {
    background: var(--light-bg);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.faq-item h4 {
    color: var(--primary-color);
}

.footer {
    border-top: 4px solid var(--primary-color);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-section h4 {
    color: var(--primary-color);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-switcher {
        position: fixed;
        top: 33px;
        right: 19px;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        left: -210px;
        top: -20px;
    }

    .logo {
        position: relative;
        left: 28.9px;
    }

    .brand-name {
        display: none;
    }

    .login-btn {
        position: relative;
        left: -73.9px;
        top: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
        border-top: 2px solid #ff6600;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .students-grid {
        justify-content: center;
        gap: 0.5rem;
    }

    .student-card {
        min-width: 80px;
    }

    .student-img {
        width: 40px;
        height: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        height: 300px;
    }

    .teacher-img,
    .student-img {
        width: 100px;
        height: 150px;
    }

    .chat-bubble,
    .chat-bubble-2 {
        max-width: 150px;
        font-size: 0.9rem;
    }

    .features-grid,
    .stats-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-text {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .banner-left h2 {
        font-size: 1.5rem;
    }

    .result-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-width: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }
}