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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f4f6;
    color: #0f172a;
    line-height: 1.6;
}

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

header {
    background-color: #ffffff;
    color: #0f172a;
    padding: 0.85rem 2.25rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 100px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.05rem;
    font-weight: 600;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #9ca3af;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: #475569;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: #1d4ed8;
}

main {
    max-width: 1200px;
    margin: 2.5rem auto 3.5rem;
    padding: 0 1.75rem 2.5rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.25rem 2.25rem 2.4rem;
    margin-top: 2.25rem;
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 55%);
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.hero-text h1 {
    font-size: clamp(2.4rem, 3.4vw, 3rem);
    margin-bottom: 0.9rem;
    color: #0b1120;
}

.hero-text p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.4rem;
    max-width: 38rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #374151;
}

.pill {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background-color: rgba(37, 99, 235, 0.06);
    color: #1d4ed8;
    border: 1px solid rgba(129, 140, 248, 0.5);
}

.hero-visual {
    margin-top: 1.6rem;
}

.hero-illustration {
    width: 100%;
    max-width: 440px;
    display: block;
}

.hero-form-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.9rem 1.9rem 2.1rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    max-width: 540px;
    width: 100%;
    margin-left: auto;
}

.hero-form-wrapper h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.hero-form-wrapper p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.form-steps {
    display: flex;
    gap: 0.6rem;
    margin: 0.35rem 0 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.form-step-badge {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
}

.form-step-badge.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.form-body {
    margin-top: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-summary {
    margin-bottom: 0.9rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.75rem;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 0.78rem;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-summary-title {
    font-weight: 600;
    color: #1d4ed8;
}

.form-summary-item {
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid #dbeafe;
}

.form-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}

.hero-form-wrapper[data-current-step="2"] .form-body {
    animation: stepFadeIn 0.55s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}

.form-message.error {
    color: #b91c1c;
}

.form-message.success {
    color: #166534;
}

form {
    display: grid;
    gap: 0.75rem;
}

label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 0.45rem;
    border: 1px solid #d1d5db;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

textarea {
    min-height: 70px;
    resize: vertical;
}

button {
    margin-top: 1.1rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

button:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.section-title {
    margin-top: 3.4rem;
    margin-bottom: 0.4rem;
    font-size: 1.45rem;
    color: #0b1120;
}

.section-subtitle {
    font-size: 0.86rem;
    color: #6b7280;
    margin-bottom: 1.4rem;
}

.college-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.college-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.college-track {
    display: flex;
    transition: transform 0.6s ease;
}

.college-slide {
    min-width: 100%;
}

.college-card {
    background-color: #ffffff;
    border-radius: 0.9rem;
    padding: 1.05rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.college-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.college-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.college-logo {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.college-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.college-location {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
}

.college-specialty {
    font-size: 0.78rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background-color: #eef2ff;
    color: #4338ca;
    display: inline-block;
}

footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
}

footer span {
    color: #6b7280;
}

.masters-highlights {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 1.8rem 1.6rem 2rem;
    border-radius: 1.25rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.masters-headline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.masters-subtitle {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 1.1rem;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.masters-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 0.8rem;
    padding: 0.9rem 0.95rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.masters-stat {
    font-size: 1rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 0.15rem;
}

.masters-label {
    font-size: 0.8rem;
    color: #4b5563;
}

.courses-section {
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 1.6rem 1.5rem 1.9rem;
    border-radius: 1.25rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
}

.courses-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.courses-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.1rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.course-card {
    background: radial-gradient(circle at top left, #0f172a, #020617);
    color: #e5e7eb;
    border-radius: 1rem;
    padding: 1.15rem 1.2rem 1.2rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.course-name {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.course-duration {
    font-size: 0.8rem;
    color: #93c5fd;
    margin-bottom: 0.4rem;
}

.course-focus {
    font-size: 0.8rem;
    color: #d1d5db;
}

.testimonials-section {
    margin-bottom: 3rem;
    padding: 1.6rem 1.5rem 1.9rem;
    border-radius: 1.25rem;
    background-color: #fffbeb;
    border: 1px solid #fed7aa;
}

.testimonials-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.testimonials-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.1rem;
}

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

.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.9rem;
    padding: 1.1rem 1.1rem 1.15rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.testimonial-quote {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 0.7rem;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #4b5563;
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
}

.testimonial-program {
    color: #2563eb;
}

.thankyou-list {
    margin: 0 0 1.4rem;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.thankyou-list li {
    margin-bottom: 0.35rem;
}

.about-section {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    padding: 1.8rem 1.6rem 2rem;
    border-radius: 1.25rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.about-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: #0b1120;
}

.about-section p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.55rem;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.75rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-illustration {
    width: 100%;
    max-width: 380px;
    display: block;
}

.dashboard-section {
    margin-top: 2.5rem;
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #0b1120;
}

.dashboard-subtitle {
    font-size: 0.86rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
}

.dashboard-empty {
    font-size: 0.9rem;
    color: #6b7280;
}

.dashboard-table-wrapper {
    margin-top: 0.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.dashboard-table thead {
    background-color: #f9fafb;
}

.dashboard-table th,
.dashboard-table td {
    padding: 0.65rem 0.9rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    white-space: nowrap;
}

.dashboard-table th {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.dashboard-location-state {
    color: #6b7280;
    font-size: 0.76rem;
}

@media (max-width: 960px) {
    main {
        padding-inline: 1.25rem;
    }

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

    .hero-form-wrapper {
        max-width: 100%;
        margin: 1.5rem 0 0;
    }

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

    .hero-form-wrapper {
        order: -1;
    }

    .courses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .college-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    header {
        padding-inline: 1.25rem;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }

    main {
        padding-inline: 1rem;
    }

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

    .nav-links {
        justify-content: center;
    }

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

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

    .hero {
    padding: 1rem 1rem 1rem;
    }
}
