:root {
    --primary-color: #0d2c60;
    --primary-dark: #0a1f44;
    --accent-color: #ffb703;
    --accent-dark: #e8a600;
    --text-main: #1d1d1f;
    --text-muted: #5e5e62;
    --bg-main: #ffffff;
    --bg-light: #f8f9fc;
    --bg-dark: #0d2c60;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(13, 44, 96, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: None;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-white {
    color: #fff !important;
}

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

.bg-dark {
    background-color: var(--bg-dark);
}

.section {
    padding: 5rem 0;
}

.mb-4 {
    margin-bottom: 2rem;
}

.flex-gap {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.flex-gap>* {
    flex: 1;
    min-width: 300px;
}

.max-w-lg {
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    background-color: #1C355E;
    border-radius: 1rem;
    margin: 1rem 2rem 4rem;
    padding: 3rem 1rem 3rem 15rem;
    position: relative;
    color: white;
}

.hero-bg-img {
    position: absolute;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-img.desktop-img {
    left: 0;
    width: 314px;
}

.hero-bg-img.mobile-img {
    display: none;
    right: 0;
    width: 180px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-pill {
    display: inline-block;
    background-color: #EAF2FF;
    color: #1C355E;
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-checks {
    margin-bottom: 2rem;
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-checks i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-white {
    background-color: white;
    color: #1C355E;
    border-radius: 12px;
    padding: 10px 24px;
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-yellow {
    background-color: var(--accent-color);
    color: #1C355E;
    border-radius: 12px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-logos {
    display: flex;
    gap: 10px;
}

.hero-logos img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: white;
    padding: 2px;
}

/* Form Box */
.hero-form-col {
    display: flex;
    justify-content: flex-end;
}

.hero-form-box {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    color: #333;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.countdown-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #1C355E;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 1rem;
}

.cd-text {
    font-size: 0.75rem;
    color: #1C355E;
    font-weight: 600;
}

.timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-block {
    background-color: #1C355E;
    color: white;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.colon {
    font-weight: bold;
    color: #1C355E;
}

.hero-form-box h3 {
    color: #1C355E;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.2rem;
}

.hero-form-box p {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.2rem;
    margin-TOP: 0.7rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #475569;
    margin-top: 0.5rem;
}

.checkbox-label input {
    margin-top: 2px;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 3rem 2rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-bg-img.desktop-img {
        display: none;
    }

    .hero-bg-img.mobile-img {
        display: block;
    }

    .hero-form-col {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 1rem;
        padding: 2rem 1rem 10rem 1rem;
    }
}

.badge {
    background-color: rgba(255, 183, 3, 0.2);
    color: #a47600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.glow-badge {
    background: linear-gradient(90deg, #ffb703, #ff8c00);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 183, 3, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 183, 3, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

/* Stats Strip */
.stats-strip {
    background-color: var(--bg-light);
    color: var(--bg-dark);
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Section Common */
.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Specialisations */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    border-left: 4px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.spec-card:hover .spec-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Fees */
.fee-wrapper {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.fee-info {
    flex: 1.5;
    padding: 4rem;
    background-color: var(--bg-light);
}

.fee-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.fh-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.fh-item.highlight {
    border: 2px solid var(--accent-color);
    background: rgba(255, 183, 3, 0.05);
}

.fh-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fh-item.highlight i {
    color: var(--accent-color);
    background: var(--primary-color);
}

.semester-fees {
    flex: 1;
    padding: 4rem;
    background: var(--primary-color);
    color: white;
}

.semester-fees h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.sem-list {
    margin-bottom: 3rem;
}

.sem-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

/* Tabs */
.tabs {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    background: white;
}

.tab-content {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tab-content li {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Eligibility & Why Choose */
.check-list li {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--text-muted);
}

.check-list i {
    color: #22c55e;
    margin-top: 5px;
}

.why-list li {
    padding: 1.2rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: var(--primary-color);
    color: white;
}

/* Recognition Grid */
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rec-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.rec-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.rec-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rec-card p {
    color: #cbd5e1;
}

/* Partners Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee .partner-logo {
    display: inline-block;
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: 0 3.5rem;
    transition: var(--transition);
    filter: grayscale(100%) opacity(0.5);
    vertical-align: middle;
}

.marquee .partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

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

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

/* Accordion */
.accordion {
    margin-top: 3rem;
}

.acc-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.acc-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.acc-header:hover {
    background: var(--bg-light);
}

.acc-header i {
    transition: transform 0.3s ease;
}

.acc-item.active .acc-header i {
    transform: rotate(180deg);
}

.acc-body {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.acc-item.active .acc-body {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f1f5f9;
}

.acc-body p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .fee-wrapper,
    .about-container {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .fee-info,
    .semester-fees {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 2rem;
    }

    .stat-item {
        min-width: 45%;
    }

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