@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');

:root {
    --primary-color: #0d0149;
    --bg-color: #ececf6;
    --text-color: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --border-radius: 4px;
}

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

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    /* overflow-y removed to allow scrolling */
    min-height: 100vh;
}

.landing-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-wrapper.subpage-wrapper {
    height: auto;
    min-height: auto;
    padding-bottom: 0;
}

/* Subpage Header Override */
.subpage-wrapper header {
    background-color: var(--white);
}

.page-name-bar {
    background-color: #ececf6;
    color: var(--primary-color);
    padding: 3rem 4%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-name-bar h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-name-bar {
        padding: 2rem 4%;
        text-align: center;
        justify-content: center;
    }

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.5rem 4rem;
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

/* Header */
header {
    background-color: var(--bg-color);
    padding: 0.5rem 4%;
    /* Reduced padding top/bottom */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
    text-decoration: none;
}

.logo img {
    height: 120px;
    /* Enlarged from 32px */
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-apply-header {
    border: 1px solid var(--text-color);
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-apply-header:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex: 1;
    /* Fills remaining height */
    height: auto;
    min-height: 0;
    /* Allows flex child to shrink properly */
    padding: 0 4%;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    z-index: 2;
    max-width: 800px;
    /* Increased significantly to prevent wrapping */
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    /* Slightly reduced */
    border-bottom: 2px solid #ccc;
    padding-bottom: 2px;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    /* Slightly smaller to fit 100vh with big logo */
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 2rem;
}

h1 span {
    color: var(--primary-color);
    white-space: nowrap;
    /* Forces "Academic Excellence" to stay on one line */
}

.btn-apply-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-apply-hero:hover {
    background-color: #080030;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
}

.hero-img {
    max-width: 120%;
    height: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
    max-height: 108%;
    /* Make sure it doesn't overflow the flex area */
    align-self: flex-end;
    /* Ensure it stays at the bottom */
}

/* Mobile / Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
        height: auto;
    }

    h1 {
        font-size: 2.2rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    h1 span {
        white-space: normal !important;
        display: inline;
    }

    .landing-wrapper {
        height: auto;
        /* Allow full height on mobile */
        min-height: 100vh;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
        /* Ensure content doesn't overlap image if column */
    }

    .hero-image-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        /* max-height: 50vh; REMOVED to show full image */
        align-self: center;
        margin-top: 1rem;
    }

    .hero-label {
        margin: 0 auto 1rem;
    }

    .hero-image-bg {
        width: 300px;
        height: 300px;
    }

    /* Top Bar Mobile */
    .top-bar {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        text-align: center;
        font-size: 0.8rem;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 0.25rem;
    }

    .btn-apply-header {
        display: none;
    }

    .header-actions::after {
        content: "☰";
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.25rem;
        max-width: 100%;
        justify-content: center;
        align-items: stretch;
    }

    .btn-feature {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        min-height: 3.5rem;
        padding: 0.25rem 0.1rem;
        line-height: 1.25;
        white-space: normal;
        word-break: normal;
        font-size: 0.7rem;
        flex: 1;
        min-width: 0;
    }

    /* Ensure br tags work */
    .btn-feature br {
        display: inline;
    }

    .btn-feature:first-child {
        white-space: normal !important;
    }

    .btn-feature:first-child::after {
        content: none;
    }
}

/* Founder Section */
.founder-section {
    padding: 6rem 8%;
    display: flex;
    gap: 4rem;
    background-color: #fff;
    align-items: center;
}

.founder-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-img-wrapper {
    position: relative;
    max-width: 100%;
}

.founder-main-img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.founder-content-col {
    flex: 1;
}

.sec-label {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.founder-content-col h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #111;
    margin-bottom: 2rem;
    font-weight: 700;
}

.founder-content-col h2 span {
    color: var(--primary-color);
}

.founder-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.founder-quote {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    color: #222;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    background: transparent;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.founder-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-role {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.founder-name {
    font-weight: 700;
    color: #111;
}

.founder-signature {
    margin-left: auto;
}

@media (max-width: 768px) {
    .founder-section {
        flex-direction: column;
        padding: 4rem 4%;
    }

    .founder-image-col,
    .founder-content-col {
        width: 100%;
    }

    .founder-content-col h2 {
        font-size: 2.5rem;
    }

    .award-badge {
        right: 0;
        top: -20px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: #0b0033;
    /* Dark blue matching screenshot */
    padding: 6rem 4%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-content {
    max-width: 900px;
}

.why-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.why-choose-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 4%;
    }

    .why-choose-section h2 {
        font-size: 2.5rem;
    }
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    /* Row gap 1rem, Col gap 2rem */
}

.feature-list li {
    width: 100%;
    /* Single column */
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.feature-list li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}



/* Departments Section */
.departments-section {
    padding: 6rem 15%;
    /* increased side padding for centered look */
    background-color: #fff;
}

.departments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dept-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 4px;
}

.departments-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
}

.departments-header h2 span {
    color: var(--primary-color);
}

.departments-list {
    display: flex;
    flex-direction: column;
}

.dept-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    /* remove link underline */
    position: relative;
    /* for absolute arrow */
    transition: all 0.3s ease;
}

.dept-item:hover {
    background-color: #f9f9fc;
    /* optional: slight bg hover */
    padding-left: 1rem;
    /* optional: slight movement */
}

/* Arrow Arrow */
.dept-item::after {
    content: "→";
    /* Using unicode arrow */
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    right: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.dept-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

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

.dept-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #666;
    /* Outline effect */
    opacity: 0.6;
    font-family: inherit;
    /* Or a specific font if needed */
    line-height: 1;
    transition: all 0.3s ease;
}

.dept-item:hover .dept-number {
    color: var(--primary-color);
    -webkit-text-stroke: 0;
    opacity: 1;
}

.dept-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.dept-info p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .departments-section {
        padding: 4rem 4%;
    }

    .dept-item {
        gap: 1.5rem;
        flex-wrap: wrap;
        /* Allow wrapping on small screens if needed */
    }

    .dept-number {
        font-size: 2.5rem;
    }

    .dept-info h3 {
        font-size: 1.25rem;
    }

    .dept-item:hover {
        padding-left: 0;
        /* Disable movement on mobile if preferred */
    }

    .dept-item::after {
        display: none;
        /* Hide hover arrow on mobile */
    }
}

.dept-footer {
    text-align: center;
    margin-top: 4rem;
}

/* Simulation Section */
.simulation-section {
    width: 100%;
    margin-top: 0;
    /* Adjust as needed */
}

.full-width-img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove bottom space */
}

/* Secondary/Outline Button */
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Arrow Animation */
.btn-apply-hero .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-apply-hero:hover .arrow {
    transform: translate(3px, -3px);
}

/* Testimonial Section */
.testimonial-section {
    background-color: #0b0033;
    /* Dark blue */
    color: #fff;
    padding: 6rem 8%;
    text-align: center;
}

.testimonial-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testi-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.testimonial-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.testi-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testi-card {
    background-color: transparent;
    border: 1px solid rgba(100, 100, 255, 0.3);
    /* Light blue/purple outline */
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    flex: 1;
    position: relative;
    max-width: 400px;
}

.testi-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stars {
    color: #ffaa00;
    /* Orange stars */
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background-color: #6565cf;
    /* Blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.testi-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .testimonial-header h2 {
        font-size: 2.5rem;
    }

    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .testi-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Stats Section */
.stats-section {
    padding: 6rem 4%;
    text-align: center;
    background-color: #fff;
}

.stats-icon {
    margin-bottom: 2rem;
}

.stats-icon svg {
    width: 60px;
    height: 60px;
    color: #800000;
    /* Dark red/maroon from screenshot */
}

.stats-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 4px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.stats-header h2 span {
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    padding: 0 2rem;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #555;
    /* Outlined text style */
    font-family: 'Satoshi', sans-serif;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item:hover .stat-value {
    color: #0d0149;
    -webkit-text-stroke: 0;
}

@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-value {
        font-size: 4rem;
    }
}

/* Footer Section */
.site-footer {
    background: linear-gradient(rgba(11, 0, 51, 0.9), rgba(11, 0, 51, 0.9)), url('footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 10rem 6% 2rem;
    /* Increased top padding for overlap */
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
    /* Slightly wider */
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

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

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

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

.footer-links a:hover {
    color: #fff;
}

.contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo-sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    opacity: 0.8;
}

.footer-bottom p {
    color: #c9c9c9;
    font-size: 0.85rem;
}

@media (max-width: 850px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-col {
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* CTA / Admission Section */
.cta-section {
    position: relative;
    z-index: 10;
    margin-bottom: -6rem;
    /* Overlap footer */
    padding: 0 6%;
    background: linear-gradient(to bottom, #fff calc(100% - 6rem), transparent calc(100% - 6rem));
}

.cta-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image {
    flex: 1;
    min-height: 400px;
}

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

.cta-content {
    flex: 1.2;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ececf6;
    /* Grey content background as requested */
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    color: var(--primary-color);
}

.cta-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-form {
    display: flex;
    background-color: #f2f2f5;
    padding: 0.5rem;
    border-radius: 4px;
    max-width: 500px;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

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

.input-group input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.8rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
}

.cta-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.cta-form button:hover {
    background-color: #1a0b5c;
}

@media (max-width: 900px) {
    .cta-card {
        flex-direction: column;
    }

    .cta-image {
        min-height: 250px;
        max-height: 300px;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-section {
        margin-bottom: -4rem;
        /* Less overlap on mobile */
    }
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0d0149;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
    /* Prevent full width in flex container */
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: #1a0b5c;
    /* Lighter shade/variation for hover */
    box-shadow: 0 4px 12px rgba(13, 1, 73, 0.2);
}

.btn-cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-cta:hover .arrow {
    transform: translate(3px, -3px);
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 6rem 8%;
    background-color: #f8f9fa;
}

.mission-vision-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #f0f0f5;
    /* Light variant of bg */
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
}

.mv-icon {
    width: 36px;
    height: 36px;
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.mv-divider {
    display: none;
    /* Hidden by default, card separation handled by gap */
}

@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-vision-section {
        padding: 4rem 4%;
    }
}


/* Core Values Section */
.core-values-section {
    padding: 6rem 8%;
    background-color: #ffffff;
    text-align: center;
}

.core-values-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    color: #111;
    position: relative;
    display: inline-block;
}

.core-values-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.core-values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .core-values-grid {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        width: 100%;
        justify-content: center;
    }
}


/* Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    /* One column width */
    background-color: #0d0149;
    /* Dark Blue */
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.dropdown-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dropdown-heading {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: block;
}

.dropdown-menu a:hover {
    color: #ececf6;
    /* Updated hover color */
    padding-left: 5px;
    /* Slight movement */
}

/* Ensure no conflict with mobile hiding for now, but if mobile menu existed, we'd style statically */


/* Single Column Dropdown Override */
.dropdown-menu {
    width: 220px;
    /* Narrower for single column */
    padding: 1rem 0;
    /* Vertical padding only */
    gap: 0;
    /* Remove gap */
    background-color: #0d0149;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--primary-color);
    /* Need lighter accent? defaulting to white for now */
    border-left-color: #fff;
    padding-left: 1.8rem;
    /* Slide effect */
}

/* Ensure arrow rotates on hover */
.nav-item-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

.nav-link svg {
    transition: transform 0.3s ease;
}

.nav-link-has-arrow {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Blog Section */
.blog-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 4px;
}

.blog-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.blog-header h2 span {
    color: var(--primary-color);
}

.blog-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 1, 73, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-card-content {
    padding: 2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    background-color: rgba(13, 1, 73, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #999;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 0.6rem;
}

.blog-read-more .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more .arrow {
    transform: translate(3px, -3px);
}

/* Responsive Blog Grid */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 4%;
    }

    .blog-header h2 {
        font-size: 2.5rem;
    }

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

    .blog-card-image {
        height: 200px;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    margin-bottom: 1rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.contact-intro p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background-color: #f0f1f5;
    transform: translateX(5px);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card .icon {
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-info-card strong {
    display: block;
    color: #111;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.working-hours-list .day {
    font-weight: 600;
    color: #111;
}

.working-hours-list .time {
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Form Column */
.contact-form-col {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-col h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.contact-form-col .form-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 1, 73, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a0b5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 1, 73, 0.2);
}

.btn-submit .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-submit:hover .arrow {
    transform: translate(3px, -3px);
}

/* Map Section (Optional) */
.contact-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-col {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 4rem 4%;
    }

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-form-col {
        padding: 2rem 1.5rem;
    }

    .contact-form-col h3 {
        font-size: 1.5rem;
    }

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

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    /* Mobile styles would go here if we had mobile menu implementation, 
       currently menu is hidden on mobile per existing CSS */
}

/* CBSE Board Coaching Styles */
.cbse-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cbse-course-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.cbse-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
}

.course-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.cbse-course-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-desc {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.subjects-list h4,
.streams-container h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.subjects-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.subjects-list li:last-child {
    border-bottom: none;
}

.subjects-list li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.streams-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stream-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stream-item:hover {
    background-color: #f0f1f5;
    transform: translateX(5px);
}

.stream-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stream-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Special Programs Section */
.special-programs-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.special-programs-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.special-programs-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.special-programs-header h2 span {
    color: var(--primary-color);
}

.special-programs-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.special-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1a0b5c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 1, 73, 0.12);
    border-color: var(--primary-color);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for CBSE Sections */
@media (max-width: 1024px) {
    .cbse-courses-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .cbse-course-card {
        padding: 2rem 1.5rem;
    }

    .cbse-course-card h3 {
        font-size: 1.5rem;
    }

    .special-programs-section {
        padding: 4rem 4%;
    }

    .special-programs-header h2 {
        font-size: 2.5rem;
    }

    .program-card {
        padding: 2rem 1.5rem;
    }
}

/* NEET Coaching Styles */
.neet-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.neet-course-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

.neet-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
}

.neet-course-card .course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.neet-course-card:hover .course-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.neet-course-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.neet-course-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Subjects Covered Section */
.subjects-covered-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.subjects-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subjects-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.subjects-header h2 span {
    color: var(--primary-color);
}

.subjects-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.subject-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.subject-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #1a0b5c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.subject-card:hover::before {
    transform: scaleX(1);
}

.subject-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f5 100%);
}

.subject-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.subject-card:hover .subject-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.15) rotate(10deg);
}

.subject-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.subject-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for NEET Sections */
@media (max-width: 1024px) {
    .neet-courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .neet-course-card {
        padding: 2rem 1.5rem;
    }

    .neet-course-card h3 {
        font-size: 1.3rem;
    }

    .subjects-covered-section {
        padding: 4rem 4%;
    }

    .subjects-header h2 {
        font-size: 2.5rem;
    }

    .subject-card {
        padding: 2.5rem 1.5rem;
    }

    .subject-icon {
        width: 80px;
        height: 80px;
    }
}

/* Competitive Exam Coaching Styles */
.competitive-exams-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.competitive-exams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.competitive-exam-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.competitive-exam-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
}

.exam-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.competitive-exam-card:hover .exam-header {
    border-bottom-color: var(--primary-color);
}

.exam-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.competitive-exam-card:hover .exam-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.exam-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

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

.exam-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.exam-features li:last-child {
    border-bottom: none;
}

.exam-features li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.exam-description {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.exam-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Competitive Exam Sections */
@media (max-width: 1024px) {
    .competitive-exams-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .competitive-exams-section {
        padding: 4rem 4%;
    }

    .competitive-exam-card {
        padding: 2rem 1.5rem;
    }

    .exam-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .exam-icon {
        width: 60px;
        height: 60px;
    }

    .exam-header h3 {
        font-size: 1.3rem;
    }
}

/* Skill Development Centre Styles */
.skill-courses-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.skill-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-course-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.skill-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.skill-course-card:hover .skill-header {
    border-bottom-color: var(--primary-color);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.skill-course-card:hover .skill-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.skill-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

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

.skill-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.skill-features li:last-child {
    border-bottom: none;
}

.skill-features li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Styles for Skill Development Sections */
@media (max-width: 1024px) {
    .skill-courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .skill-courses-section {
        padding: 4rem 4%;
    }

    .skill-course-card {
        padding: 2rem 1.5rem;
    }

    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
    }

    .skill-header h3 {
        font-size: 1.2rem;
    }
}

/* Computer IT Courses Styles */
.it-courses-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.it-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.it-course-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.it-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #1a0b5c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.it-course-card:hover::before {
    transform: scaleX(1);
}

.it-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f5 100%);
}

.it-course-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.it-course-card:hover .it-course-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.15) rotate(10deg);
}

.it-course-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.it-course-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for IT Courses Sections */
@media (max-width: 1200px) {
    .it-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .it-courses-section {
        padding: 4rem 4%;
    }

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

    .it-course-card {
        padding: 2.5rem 1.5rem;
    }

    .it-course-icon {
        width: 80px;
        height: 80px;
    }

    .it-course-card h3 {
        font-size: 1.3rem;
    }
}

/* Scholarships Section Styles */
.scholarships-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.scholarships-section .departments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.scholarships-section .departments-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.scholarship-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.scholarship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #1a0b5c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.scholarship-card:hover::before {
    transform: scaleX(1);
}

.scholarship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 1, 73, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f5 100%);
}

.scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.scholarship-card:hover .scholarship-icon {
    background: linear-gradient(135deg, var(--primary-color), #1a0b5c);
    color: #fff;
    transform: scale(1.15) rotate(10deg);
}

.scholarship-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.scholarship-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Scholarships Section */
@media (max-width: 1200px) {
    .scholarships-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .scholarships-section {
        padding: 4rem 4%;
    }

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

    .scholarship-card {
        padding: 2.5rem 1.5rem;
    }

    .scholarship-icon {
        width: 70px;
        height: 70px;
    }

    .scholarship-card h3 {
        font-size: 1.3rem;
    }
}

/* Home Hero Section Re-implementation */
.home-hero {
    background-color: var(--white);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-top: 0;
    /* Override any body/wrapper padding if necessary */
}

/* Ensure no global padding interferes */
.landing-wrapper.home-hero {
    padding: 0;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically overall */
    height: 100%;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    z-index: 10;
    max-width: 50%;
}

.logo-headline-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Increased breathing space */
    margin-bottom: 3.5rem;
}

.main-logo {
    width: 260px;
    /* Adjusted size */
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Satoshi', sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0;
    white-space: nowrap;
    /* Keep it tight like the image */
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    padding-left: 0.5rem;
}

.btn-feature {
    background: #0b0136;
    /* Solid dark blue as per image dark areas */
    background: linear-gradient(180deg, #100244 0%, #06001a 100%);
    /* Slight subtle gradient */
    color: var(--white);
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 1, 54, 0.25);
    background: linear-gradient(180deg, #150355 0%, #0a0129 100%);
}

.hero-right {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.hero-student-img {
    height: 85vh;
    /* Large height */
    width: auto;
    object-fit: contain;
    margin-bottom: -2vh;
    /* Anchor to bottom */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 2.5rem;
        white-space: normal;
    }

    .logo-headline-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-logo {
        width: 180px;
    }
}

@media (max-width: 992px) {
    .home-hero {
        height: auto;
        min-height: 100vh;
        padding: 0;
        /* Let top bar sit naturally */
    }

    .hero-container {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        /* Space above logo on mobile */
    }

    .hero-left {
        max-width: 100%;
        width: 100%;
        align-items: center;
        text-align: center;
        padding-bottom: 2rem;
    }

    .logo-headline-group {
        align-items: center;
        margin-bottom: 2.5rem;
        gap: 1.5rem;
        /* Reduce gap on mobile back to normal */
    }

    .hero-headline {
        text-align: center;
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
        /* FORCE SINGLE ROW */
        gap: 0.8rem;
        /* Tighter gap for small screens */
    }

    .btn-feature {
        min-width: auto;
        /* Allow shrinking */
        padding: 0.85rem 1.5rem;
        /* Slightly smaller padding */
        font-size: 1rem;
    }

    .hero-right {
        width: 100%;
        justify-content: center;
        align-items: flex-end;
        margin-top: 2rem;
    }

    .hero-student-img {
        height: auto;
        max-height: 60vh;
        max-width: 100%;
        margin-bottom: 0;
    }
}

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

    .main-logo {
        width: 150px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn-feature {
        padding: 0.75rem 1.5rem;
        width: 100%;
        /* Stack buttons on very small screens? Or keep row */
        max-width: 200px;
    }
}

/* Coming Soon Page Styles */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.coming-soon-container {
    max-width: 600px;
    width: 100%;
    margin-top: 2rem;
}

.logo-group-center {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.main-logo-small {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.coming-soon-title {
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Satoshi', sans-serif;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.coming-soon-actions {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .main-logo-small {
        width: 140px;
    }
}


.coming-soon-subtitle {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
}

@media (max-width: 768px) {
    .coming-soon-subtitle {
        font-size: 1.8rem;
    }

    .top-bar.mobile-visible {
        display: flex;
    }
}

/* Blog Details Page */
.blog-details-section {
    padding: 6rem 8%;
    /* Matched with other sections */
    background-color: #fff;
    min-height: 60vh;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: 3rem;
    text-align: center;
}

.blog-category-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(13, 1, 73, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    color: #666;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1.2rem 0;
    margin-bottom: 3rem;
}

.blog-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #444;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .blog-details-section {
        padding: 4rem 4%;
    }

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

    .blog-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}