/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #0f2a5a;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
}

.logo-link span {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo-link span:hover {
    color: #0f2a5a;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    background: #f8f9fa;
    color: #0f2a5a;
}

.login-btn {
    background: #0f2a5a;
    color: #fff !important;
    padding: 10px 20px;
}

.login-btn:hover {
    background: #0f2a5a !important;
    color: #fff !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f2f6;
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #0f2a5a !important;
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    /* padding: 100px 0; */
    /* background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)), */
    /* url('Assets/Thiran academy home page.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative; */

    color: var(--white);
    padding: 130px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('../images/Thiran academy home page.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #0f2a5a !important;
}

.hero-description {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 20px;
    opacity: 0.95;
    line-height: 1.8;
    color: #150402 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* GLASS SQUARE / BLUR CARD */
.hero-content {
    max-width: 800px;
    padding: 20px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    color: #3498db;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: #fff;
}

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

.course-item {
    padding: 30px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.course-item:hover {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
}

.course-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.course-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.course-item a:hover {
    transform: translateY(-3px);
}

.course-item a:hover h3 {
    color: #3498db;
}

.course-item p {
    color: #6c757d;
    line-height: 1.7;
}

/* NEET Crash Course Section */
.neet-crash-course-section {
    padding: 0;
    margin: 0;
}

.crash-course-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.crash-course-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.crash-course-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.crash-course-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.crash-course-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
}

.crash-course-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.countdown-timer {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.timer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-block {
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.timer-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.batch-start {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #fff;
    color: #1e3c72;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    color: #28a745;
}

/* Spacing Section */
.spacing-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.white-space-section {
    padding: 60px 0;
    background: #fff;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: #fff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: #3498db;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.map-link {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.map-link::after {
    content: "→";
    font-size: 14px;
}

.contact-details address {
    font-style: normal;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.submit-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Map Section Styles */
.map-section {
    margin-top: 60px;
    text-align: center;
}

.map-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: 400px;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0;
}

.footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #5dade2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-item {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        display: none;
    }

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

    .dropdown-toggle::after {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile About Page Styles */
    .page-header h1 {
        font-size: 32px;
    }

    .about-intro p {
        font-size: 16px;
    }

    .emphasis-section h2 {
        font-size: 28px;
    }

    .emphasis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    /* Mobile Faculty Page Styles */
    .faculty-member {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .faculty-image {
        margin: 0 auto;
    }

    .faculty-intro h2 {
        font-size: 28px;
    }

    .faculty-intro p {
        font-size: 16px;
    }

    .teaching-philosophy {
        padding: 40px 20px;
    }

    .teaching-philosophy h2 {
        font-size: 28px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile Courses Page Styles */
    .courses-intro p {
        font-size: 16px;
    }

    .course-card {
        padding: 30px 20px;
    }

    .course-card h3 {
        font-size: 20px;
    }

    .course-card p {
        font-size: 15px;
        min-height: auto;
    }

    .why-choose-courses {
        padding: 40px 20px;
    }

    .why-choose-courses h2 {
        font-size: 28px;
    }

    /* Mobile Contact Page Styles */
    .contact-intro h2 {
        font-size: 28px;
    }

    .contact-intro p {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .submit-btn {
        width: 100%;
    }

    /* Mobile Map Styles */
    .map-section {
        margin-top: 40px;
    }

    .map-section h3 {
        font-size: 24px;
    }

    .map-container {
        height: 300px;
        border-radius: 8px;
    }

    /* Mobile Crash Course Styles */
    .crash-course-banner {
        min-height: 400px;
    }

    .crash-course-content {
        padding: 30px 15px;
    }

    .crash-course-title {
        font-size: 32px;
    }

    .crash-course-subtitle {
        font-size: 22px;
    }

    .crash-course-description {
        font-size: 16px;
    }

    .countdown-timer {
        padding: 20px;
        margin-bottom: 20px;
    }

    .timer-display {
        gap: 15px;
    }

    .timer-block {
        min-width: 70px;
    }

    .timer-number {
        font-size: 2rem;
        padding: 8px;
    }

    .timer-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .spacing-section {
        padding: 30px 0;
    }

    .white-space-section {
        padding: 40px 0;
    }

    /* Mobile Subject Coverage Styles */
    .subject-coverage {
        margin-bottom: 60px;
    }

    .subject-coverage h2 {
        font-size: 28px;
    }

    .subject-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .subject-item {
        padding: 20px;
    }

    .subject-item h3 {
        font-size: 18px;
    }

    .subject-item li {
        font-size: 14px;
    }
}

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

    .hero-title {
        font-size: 28px;
    }

    .why-choose,
    .courses {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .feature-item,
    .course-item {
        padding: 20px;
    }
}

/* Animation Classes */
.nav-menu.active {
    left: 0;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Page Header Styles */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    text-align: center;
}

/* Course Page Headers with Images */
.neet-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran academy NEET.png') center/cover no-repeat;
}

.jee-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy JEE.png') center/cover no-repeat;
}

.ca-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy CA.png') center/cover no-repeat;
}

.ias-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy IAS.png') center/cover no-repeat;
}

.tnpsc1-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy TNPSE G1.png') center/cover no-repeat;
}

.tnpsc2-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy TNPSE G2.png') center/cover no-repeat;
}

.about-page .page-header {
    background: linear-gradient(rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.7)),
        url('Assets/Thiran Academy About us.png') center/cover no-repeat;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    margin: 0 10px;
}

.breadcrumb .current {
    opacity: 0.7;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.emphasis-section {
    margin-bottom: 80px;
}

.emphasis-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.emphasis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.emphasis-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.emphasis-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.emphasis-icon {
    margin-bottom: 20px;
    color: #3498db;
}

.emphasis-icon svg {
    width: 40px;
    height: 40px;
}

.emphasis-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.emphasis-item p {
    color: #6c757d;
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card,
.vision-card {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    text-align: center;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Faculty Page Styles */
.faculty-content {
    padding: 80px 0;
    background: #fff;
}

.faculty-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faculty-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.faculty-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.faculty-member {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faculty-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faculty-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.faculty-image svg {
    width: 60px;
    height: 60px;
}

.faculty-info {
    flex: 1;
}

.faculty-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.faculty-role {
    font-size: 16px;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 15px;
}

.faculty-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

.teaching-philosophy {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

.teaching-philosophy h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.philosophy-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

/* Active navigation state */
.nav-link.active {
    color: #3498db !important;
    background: #f8f9fa;
}

/* Courses Page Styles */
.courses-content {
    padding: 80px 0;
    background: #fff;
}

.courses-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.courses-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.course-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.course-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    transform: translateY(-5px);
}

.course-icon {
    margin-bottom: 25px;
    color: #3498db;
}

.course-icon svg {
    width: 60px;
    height: 60px;
}

.course-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.course-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 25px;
    min-height: 80px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.why-choose-courses {
    margin-top: 80px;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.why-choose-courses h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Course Detail Page Styles */
.course-content {
    padding: 80px 0;
    background: #fff;
}

.course-intro {
    text-align: center;
    margin-bottom: 60px;
}

.course-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.course-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.program-highlights {
    margin-bottom: 80px;
}

.program-highlights h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.highlight-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    margin-bottom: 20px;
    color: #3498db;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
}

.highlight-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

.exam-info {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.exam-info h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.exam-section {
    margin-bottom: 40px;
}

.exam-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.exam-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.subject-breakdown {
    margin-bottom: 40px;
}

.subject-breakdown h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.subject-breakdown ul {
    list-style: none;
    padding: 0;
}

.subject-breakdown li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.subject-breakdown li:last-child {
    border-bottom: none;
}

.exam-structure {
    margin-bottom: 40px;
}

.exam-structure h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.structure-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.structure-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.marking-scheme h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.marking-scheme ul {
    list-style: none;
    padding: 0;
}

.marking-scheme li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}

.course-features {
    margin-bottom: 40px;
}

.course-features h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Subject Coverage Styles */
.subject-coverage {
    margin-bottom: 80px;
}

.subject-coverage h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.subject-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.subject-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subject-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.subject-item ul {
    list-style: none;
    padding: 0;
}

.subject-item li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 20px;
}

.subject-item li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.subject-item li:last-child {
    border-bottom: none;
}

/* ===================================
   NEET CRASH COURSE STYLES - INSERTED
   =================================== */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    color: #ffd700;
    font-weight: 600;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px !important;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-block {
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #764ba2;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges .badge {
    font-size: 0.9rem;
    padding: 10px 15px;
    margin: 5px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(45deg, #e6a800, #d4a017) !important;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.urgency-bar i {
    margin-right: 8px;
    color: #d32f2f;
}

/* Urgency Bar Animation */
.urgency-slider {
    display: flex;
    animation: scrollText 15s linear infinite;
    white-space: nowrap;
}

.urgency-slide {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    animation: oscillate 1s ease-in-out infinite !important;
}

/* Specific targeting for the three cards */
section.py-5 .card {
    animation: oscillate 2.5s ease-in-out infinite !important;
}

@keyframes oscillate {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card i {
    margin-bottom: 15px;
}

/* Register Banner */
.register-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px !important;
}

/* Course Features Centering */
section.bg-light .d-flex {
    justify-content: center;
}

/* Ideal Points Centering */
.ideal-points div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.ideal-points {
    max-width: 400px;
    margin: 0 auto;
}

/* Learning Kit */
.learning-kit {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    border-radius: 15px;
}

.learning-kit i {
    margin-right: 10px;
}

/* Assessment Points */
.assessment-points .d-flex {
    padding: 15px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.assessment-points .d-flex:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

/* Scholarship Section */
.scholarship-section {
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    border-radius: 15px;
}

/* Table */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

.table td:first-child {
    font-weight: 600;
}

/* Alternate row highlighting with gray and white */
.table tbody tr:nth-child(odd) td {
    background: #f8f9fa;
}

.table tbody tr:nth-child(even) td {
    background: #ffffff;
}

/* Ideal Points */
.ideal-points div {
    padding: 15px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ideal-points div:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border-radius: 15px;
}

/* Final Urgency Section */
.bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.accordion-item {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.sticky-whatsapp {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.sticky-assessment {
    display: block;
    width: auto;
    min-width: 150px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sticky-assessment:hover {
    transform: scale(1.05);
    color: white;
}

/* NEET Crash Course Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }

    .timer-display {
        gap: 10px;
    }

    .timer-block {
        min-width: 60px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .cta-buttons {
        margin-top: 1.5rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .sticky-buttons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-whatsapp {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

    .sticky-assessment {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* NEET Crash Course Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* NEET Crash Course Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #007bff !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* NEET Crash Course Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff !important;
}

/* NEET Crash Course Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.swal2-input[disabled] {
    background-color: #e9ecef !important;
}

body.is-loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: url('/images/loading.svg');
    background-repeat: no-repeat;
    background-size: 5rem;
    background-position: center;
    z-index: 1;
}
