:root {
    --primary-color: #800080;
    --secondary-color: #800080;
    --accent-color: #f39c12;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.w-100 {
    width: 100%;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand i {
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(128, 0, 128, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.brand-sub {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #444;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-btn .btn-secondary {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 8px;
    background: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Refined */
.hero {
    padding: 80px 0;
    background-color: #fbfcff;
    background-image:
        linear-gradient(rgba(128, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 0, 128, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.badge-new {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(128, 0, 128, 0.1);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    transition: font-size 0.3s ease;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-features-new {
    margin-bottom: 40px;
}

.hero-features-new li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-new {
    width: 44px;
    height: 44px;
    background: rgba(128, 0, 128, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.hero-btns-new {
    display: flex;
    gap: 20px;
}

.hero-btns-new .btn-primary {
    padding: 14px 35px;
    border-radius: 8px;
}

.hero-btns-new .btn-outline {
    padding: 14px 35px;
    border-radius: 8px;
    border-width: 1px;
    border-color: var(--primary-color);
}

.hero-btns-new .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Eligibility Funnel Card - Refined */
.eligibility-card-refined {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(128, 0, 128, 0.08);
    min-height: 580px;
    border: 1px solid rgba(128, 0, 128, 0.05);
    display: flex;
    flex-direction: column;
}

.input-step-refined {
    margin-top: 10px;
}

.funnel-input-refined {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    background: #fcfaff;
}

.funnel-input-refined:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(128, 0, 128, 0.05);
}

.funnel-header-refined {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.step-counter {
    font-size: 12px;
    font-weight: 600;
    color: #888;
}

.funnel-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.progress-track {
    height: 4px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 60px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-main-icon {
    width: 70px;
    height: 70px;
    background: rgba(128, 0, 128, 0.05);
    color: var(--primary-color);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.funnel-step h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 800;
}

.step-subtext {
    text-align: center;
    color: #777;
    font-size: 12px;
    margin-bottom: 35px;
}

.funnel-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.option-grid-refined {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-item {
    padding: 18px 24px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
    opacity: 0.8;
}

.option-item span {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.option-item:hover {
    background: #f8f4ff;
    border-color: rgba(128, 0, 128, 0.2);
}

/* Trust Bar - New */
.trust-bar-new {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 20px;
    color: var(--primary-color);
    background: rgba(128, 0, 128, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 12px;
    color: #888;
}

.trust-more {
    text-align: center;
    margin-top: 40px;
}

.trust-more a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Training Grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.training-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.training-img {
    height: 200px;
    background: rgba(128, 0, 128, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-img i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.5;
}

.training-content {
    padding: 30px;
}

.training-content h4 {
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #eee;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-num {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 12px;
    margin-bottom: 5px;
}

/* Infrastructure */
.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.infra-img {
    position: relative;
}

.infra-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.infra-floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.infra-floating-badge span {
    display: block;
    font-weight: 700;
    font-size: 20px;
}

.infra-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.infra-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.infra-list i {
    color: var(--primary-color);
}

.infra-stats {
    display: flex;
    gap: 40px;
}

.infra-stat h4 {
    font-size: 24px;
}

.infra-stat p {
    font-size: 14px;
    color: var(--text-light);
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.leader-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leader-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.leader-mission {
    margin-bottom: 30px;
}

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.mission-item h4 {
    margin-bottom: 5px;
}

.leader-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Faculty Section */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faculty-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.faculty-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.faculty-info {
    padding: 25px;
}

.faculty-info h4 {
    margin-bottom: 5px;
}

.faculty-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.faculty-social a {
    color: var(--text-light);
    font-size: 18px;
}

.faculty-social a:hover {
    color: var(--primary-color);
}

/* Certifications */
.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-list {
    margin-top: 30px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.cert-item i {
    color: #27ae60;
}

.cert-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cert-badges img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.cert-badges img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-author h5 {
    font-size: 16px;
    color: var(--primary-color);
}

.review-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.info-list {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #1a0524;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 30px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--white);
    flex: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-features-new {
        display: inline-block;
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .hero-btns-new {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 23px !important;
    }

    .infrastructure-grid,
    .leadership-grid,
    .certification-grid,
    .cert-grid-layout,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .infra-floating-badge {
        right: 10px;
    }

    .leader-img {
        order: -1;
    }

    .cert-item {
        justify-content: center;
    }

    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cert-badges {
        margin-top: 40px;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-flex {
        flex-direction: column;
        align-items: center;
    }
}

/* Academic Overview Section */
.academic-overview {
    padding: 100px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.badge-purple {
    font-size: 13px;
    font-weight: 700;
    color: #800080;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.overview-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.emphasis-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.emphasis-box h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.emphasis-box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.emphasis-box ul li i {
    color: #800080;
}

.institute-note {
    background: #f8f4ff;
    padding: 20px;
    border-left: 4px solid #800080;
    color: #444;
    font-weight: 500;
    margin-bottom: 30px;
    border-radius: 4px;
}

.btn-primary-dark {
    background: #800080;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-dark:hover {
    background: #561472;
    color: #fff;
}

/* Modules Card */
.modules-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.module-item:last-child {
    border-bottom: none;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: #800080;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.module-info h4 {
    margin: 0;
    color: #333;
    font-size: 17px;
}

.module-label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

@media (max-width: 992px) {

    .overview-grid,
    .institute-grid,
    .leadership-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .profile-img-wrapper {
        order: -1;
        max-width: 450px;
    }

    .vision-card,
    .qualifications-box,
    .overview-content,
    .institute-content-col {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .leadership-grid h4,
    .overview-grid h2 {
        font-size: 24px;
    }

    .vision-card,
    .emphasis-box,
    .modules-card {
        padding: 20px;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .curriculum-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-card {
        padding: 30px;
    }
}

/* Accreditations Section */
.accreditations-section {
    padding: 80px 0;
    background-color: #fbfcff;
}

.accreditations-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #551455;
    /* Slightly darker purple to match screenshot */
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.accreditation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.accreditation-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.accreditation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(128, 0, 128, 0.08);
}

.accreditation-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.accreditation-placeholder {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .accreditation-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .accreditation-card {
        width: calc(33.33% - 20px);
        min-width: 180px;
        height: 130px;
    }
}

@media (max-width: 992px) {
    .accreditations-section .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .accreditations-section {
        padding: 60px 0;
    }

    .accreditations-section .section-header h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .accreditation-card {
        width: calc(50% - 15px);
        min-width: 140px;
        height: 120px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .accreditation-card {
        width: 100%;
        height: 130px;
    }
}

.mt-50 {
    margin-top: 50px;
}

/* Methodology Section */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-row {
    display: flex;
    justify-content: flex-end;
    padding-left: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-row.left {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 50%;
}

.timeline-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 90%;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #f5f5f5;
}

.timeline-row.left .timeline-card {
    margin-left: auto;
    margin-right: 40px;
    flex-direction: row;
}

.timeline-row.right .timeline-card {
    margin-left: 40px;
    margin-right: auto;
    flex-direction: row;
}

.timeline-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border: 4px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    /* Center relative to container */
    margin-left: -15px;
    /* Offset by half width to center exactly */
    z-index: 2;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 4px rgba(128, 0, 128, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(128, 0, 128, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .timeline-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .timeline-container::after {
        left: 20px;
    }

    .timeline-row {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
        margin-bottom: 40px;
    }

    .timeline-row.left {
        padding-right: 0;
        padding-left: 50px;
    }

    .timeline-row.left .timeline-card,
    .timeline-row.right .timeline-card {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        flex-direction: row;
        /* Icon always on left */
        gap: 15px;
        padding: 20px;
    }

    .timeline-card {
        flex-direction: row !important;
    }

    .timeline-marker {
        left: 20px;
        margin-left: -15px;
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Institute Section */
.institute-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.institute-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* Allow floating badge overflow */
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-stat-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f0f0f0;
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 24px;
    color: #333;
    line-height: 1;
}

.stat-text span {
    font-size: 13px;
    color: #666;
}

.focus-areas-box {
    background: #f8f4ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.focus-areas-box h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.focus-item i {
    background: var(--primary-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.focus-item h5 {
    font-size: 15px;
    margin-bottom: 3px;
    color: #333;
    font-weight: 700;
}

.focus-item span {
    font-size: 12px;
    color: #777;
    display: block;
    line-height: 1.4;
}

.institute-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 13px;
    color: #666;
}

@media (max-width: 992px) {
    .institute-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .institute-image-col {
        max-width: 600px;
        margin: 0 auto;
    }

    .floating-stat-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 25px;
    }

    .institute-stats {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .floating-stat-badge {
        position: static;
        margin: 20px auto 0;
        justify-content: center;
        width: fit-content;
    }
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal columns to give image more space */
    gap: 40px;
    /* Reduced gap from 80px */
    align-items: center;
    /* Changed from start to center for better alignment */
}

.profile-img-wrapper {
    position: relative;
    padding: 10px;
    /* Reduced padding from 20px */
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    /* Increased to be significantly larger */
    margin: 0 auto;
    /* Center in its column */
}

/* Simulate the double border/layered look if needed, or just keep simple */
.profile-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.profile-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.vision-card {
    background: #fff;
    padding: 30px;
    /* Reduced padding slightly to fit better if content is long */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f9f9f9;
    margin-bottom: 30px;
}

.vision-card h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.vision-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.vision-card p:last-child {
    margin-bottom: 0;
}

.qualifications-box {
    background: #fcfaff;
    /* Very light purple tint */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 128, 0.05);
}

.qualifications-box h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.check-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

@media (max-width: 968px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Faculty Section */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faculty-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.faculty-card:hover {
    transform: translateY(-5px);
}

.faculty-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-content {
    padding: 25px;
}

.role-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(128, 0, 128, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faculty-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.faculty-qual {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    font-weight: 500;
}

.faculty-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faculty-stats li {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faculty-stats li i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

@media (max-width: 968px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
}

/* Academic Support Subsection */
.academic-support-box {
    background: #fcfaff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(128, 0, 128, 0.05);
}

.support-content {
    flex: 1;
}

.support-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.support-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ratio-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 300px;
    border: 1px solid #f0f0f0;
}

.ratio-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.ratio-card h4 {
    font-size: 32px;
    color: #333;
    margin-bottom: 5px;
}

.ratio-label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px !important;
}

.ratio-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .academic-support-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .ratio-card {
        width: 100%;
        min-width: 0;
    }

    .check-list {
        text-align: left;
        display: inline-block;
    }
}

/* Certification Details Section - New Design */
.cert-details-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cert-header {
    text-align: center;
    margin-bottom: 60px;
}

.cert-header .badge-sm {
    color: #800080;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.cert-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.cert-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cert-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Side: Certificate Preview */
.cert-preview-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
}

.cert-preview-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(128, 0, 128, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.cert-content-inner {
    position: relative;
    z-index: 1;
    border: 2px solid #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.cert-badge-icon {
    width: 60px;
    height: 60px;
    background: #800080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.cert-title {
    font-family: serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cert-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-body {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin: 20px 0;
}

.cert-recipient {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 10px 0;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.cert-sig {
    text-align: center;
}

.cert-sig span {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
    border-top: 1px solid #ddd;
    padding-top: 5px;
    width: 100px;
}

.cert-seal-icon {
    font-size: 30px;
    color: #800080;
    opacity: 0.2;
}

.cert-id {
    font-size: 10px;
    color: #aaa;
    margin-top: 20px;
}

/* Right Side: Process */
.cert-process-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    position: relative;
}

.help-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6200ea;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.process-list {
    margin-top: 20px;
}

.process-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.process-num {
    width: 32px;
    height: 32px;
    background: #800080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.process-text h4 {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 3px;
}

.process-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Right Side: Features */
.cert-features-box {
    background: #fcf5ff;
    border-radius: 12px;
    padding: 30px;
}

.cert-features-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-list-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

.feature-list-check li i {
    color: #800080;
    font-size: 14px;
}

.btn-full-width {
    width: 100%;
    background: #800080;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-full-width:hover {
    background: #600060;
}

/* Premium Faculty Section - New Design */
.premium-faculty-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.section-head-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-head-flex h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-head-flex p {
    color: #666;
}

.faculty-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faculty-card-premium {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.15);
}

.f-img-container {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.f-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card-premium:hover .f-img-container img {
    transform: scale(1.05);
    /* Zoom effect */
}

.f-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.faculty-card-premium:hover .f-overlay {
    transform: translateY(0);
}

.f-social a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.f-content {
    padding: 25px;
    text-align: center;
}

.f-role {
    font-size: 12px;
    text-transform: uppercase;
    color: #800080;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.f-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.f-desig {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.f-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.f-stat-item {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.f-stat-item i {
    color: #800080;
}

@media (max-width: 768px) {
    .cert-grid-layout {
        grid-template-columns: 1fr;
    }

    .section-head-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.stories-header {
    text-align: center;
    margin-bottom: 60px;
}

.stories-header .badge-sm {
    color: #800080;
    /* Primary purple */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.stories-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.stories-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testi-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: #777;
}

.testi-rating {
    color: #f39c12;
    /* Star color */
    font-size: 14px;
    margin-bottom: 15px;
}

.testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testi-batch {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Gallery Strip */
.gallery-container-box {
    background: #fcfcfc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.gallery-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.btn-feedback {
    background: #800080;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-feedback:hover {
    background: #600060;
}

@media (max-width: 992px) {
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-strip {
        grid-template-columns: 1fr;
    }
}

/* Eligibility & Admission Section */
.eligibility-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column */
.eligibility-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-icon-circle {
    width: 50px;
    height: 50px;
    background: #800080;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-header-flex h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.criteria-item {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s;
}

.criteria-item:hover {
    transform: translateX(5px);
    border-color: #f0e0f0;
}

.criteria-icon {
    font-size: 20px;
    color: #800080;
    margin-top: 2px;
}

.criteria-text h4 {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 5px;
}

.criteria-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.special-note-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.special-note-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.note-list li i {
    color: #800080;
    margin-top: 3px;
    font-size: 12px;
}

/* Right Column */
.admission-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.admission-timeline {
    position: relative;
    padding-left: 10px;
    margin-top: 10px;
}

.admission-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    height: 85%;
    width: 2px;
    background: #f0f0f0;
}

.timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    background: #800080;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    border: 4px solid #fff;
    /* Gap effect */
    box-shadow: 0 0 0 1px #f0f0f0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.apply-cta-box {
    background: #800080;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(128, 0, 128, 0.2);
}

.apply-cta-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.apply-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-white-block {
    background: #fff;
    color: #800080;
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s box-shadow 0.3s;
    font-size: 16px;
    text-decoration: none;
}

.btn-white-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

/* Upcoming Batch Section */
.upcoming-batch-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.batch-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.batch-card:hover {
    transform: translateY(-5px);
}

.batch-card.highlight {
    border: 2px solid #800080;
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.batch-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.batch-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.batch-badge.next {
    background: #800080;
    color: #fff;
}

.batch-badge.upcoming {
    background: #f0f0f0;
    color: #666;
}

.batch-location {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.batch-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.batch-stats {
    width: 100%;
    margin-bottom: 30px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.stat-row:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
}

.status-badge.filling {
    background: #e6fffa;
    color: #00b894;
}

.status-badge.open {
    background: #eef2ff;
    color: #4a69bd;
}

.btn-reserve {
    background: #800080;
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-reserve:hover {
    background: #600060;
}

.btn-interest {
    background: #fff;
    color: #800080;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #800080;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-interest:hover {
    background: #fcf5ff;
}

@media (max-width: 992px) {
    .batch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .batch-card.highlight {
        transform: none;
        order: -1;
    }
}

@media (max-width: 600px) {
    .batch-grid {
        grid-template-columns: 1fr;
    }
}

/* Limited Seats Banner */
/* Container to give some spacing before the floating effect if needed, 
   or just part of the flow. */
.limited-seats-section {
    background: #fff;
    padding-bottom: 80px;
    /* Space for the floating card overlap if desired, or just spacing */
    position: relative;
    z-index: 2;
}

.limited-seats-card {
    background: linear-gradient(135deg, #800080 0%, #600060 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(128, 0, 128, 0.2);
}

.limited-seats-card .badge-sm {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.limited-seats-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    /* Explicitly white */
}

.limited-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: inline-block;
    text-align: left;
}

.limited-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.limited-benefits li i {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.btn-white-action {
    background: #fff;
    color: #800080;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-white-action:hover {
    transform: translateY(-2px);
}

/* Application Section */
.application-section {
    background: #800080;
    padding: 60px 0 40px;
    /* Reduced bottom padding for footer integration */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative circle background */
.application-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    /* Larger */
    height: 600px;
    /* Larger */
    background: rgba(255, 255, 255, 0.05);
    /* Subtle overlay */
    border-radius: 50%;
    z-index: 0;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Increased gap */
    align-items: center;
    position: relative;
    z-index: 1;
    /* Above decorative background */
}

.app-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    /* Reduced from 56px */
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
    color: #ffffff !important;
    /* Force white color */
}

.app-content p {
    font-size: 16px;
    /* Reduced from 20px */
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.app-benefits-list {
    list-style: none;
    padding: 0;
}

.app-benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    font-size: 16px;
    /* Reduced from 18px */
}

.app-benefits-list li i {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

/* Form Card */
.app-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    color: #1a1a1a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.progress-bar-container {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 15%;
    /* Step 1 width */
    background: #800080;
    border-radius: 3px;
}

.step-indicator {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.form-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 18px 25px;
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}


.option-btn:hover {
    border-color: #800080;
    background: #fdf5ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.05);
}

.form-step {
    display: none;
}


.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-note {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-note.warning {
    background: #fff9db;
    color: #856404;
    border: 1px solid #ffeeba;
}

.form-note.blocking {
    background: #fff5f5;
    color: #e03131;
    border: 1px solid #ffc9c9;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #555;
}

.radio-group input[type="radio"] {
    accent-color: #800080;
    width: 18px;
    height: 18px;
}

.contact-inputs .input-group {
    margin-bottom: 18px;
    text-align: left;
}

.contact-inputs input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.contact-inputs input:focus {
    border-color: #800080;
}

.helper-text {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 4px;
    line-height: 1.3;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-content h2 {
        font-size: 40px;
    }

    /* Header Mobile Styles */
    .menu-toggle {
        display: block;
        color: var(--primary-color);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Modal Content */
.modal-content {
    background: #fff;
    width: 95%;
    max-width: 900px;
    /* Increased for split layout */
    border-radius: 24px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow: hidden;
    /* Changed from auto to hide overflow in split view */
    display: flex;
    /* Flex for side-by-side */
    padding: 0;
    /* Remove internal padding */
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 10;
}

.modal-close:hover {
    color: #800080;
}

.modal-content.split-layout {
    display: flex;
}

/* Modal Image Side */
.modal-image-side {
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #800080;
    overflow: hidden;
}

.modal-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.modal-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(128, 0, 128, 0.9), transparent);
    color: #fff;
}

.modal-image-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.modal-image-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.modal-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-badges span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Modal Form Side */
.modal-form-side {
    width: 55%;
    padding: 50px 40px;
    overflow-y: auto;
    background: #fff;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Modal Responsiveness */
@media (max-width: 850px) {
    .modal-content {
        max-width: 500px;
        flex-direction: column;
    }

    .modal-image-side {
        display: none;
        /* Hide image on smaller screens */
    }

    .modal-form-side {
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        border-radius: 20px;
    }
}

/* YouTube Shorts Gallery */
.success-stories-section {
    padding: 0;
}

.shorts-video-section {
    padding-top: 20px;
    margin-top: 0;
}

.video-stories-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.video-stories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #800080;
    border-radius: 2px;
}

.shorts-video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.short-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.15);
}

.short-aspect-ratio {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
}

.short-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}


@media (max-width: 768px) {
    .shorts-video-gallery {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* --- Curriculum Section --- */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.curriculum-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f5f5f5;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(128, 0, 128, 0.08);
}

.curr-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 30px;
    box-shadow: 0 8px 15px rgba(128, 0, 128, 0.15);
}

.curriculum-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-color) !important;
    margin-bottom: 15px;
    font-weight: 700;
}

.curriculum-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

#curriculum .section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

#curriculum .section-header .badge-purple {
    margin-bottom: 10px;
}

/* Utilities */
.mt-50 {
    margin-top: 50px;
}

.badge-purple {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(128, 0, 128, 0.08);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary-dark {
    background: #800080;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(128, 0, 128, 0.2);
}

.btn-primary-dark:hover {
    background: #600060;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(128, 0, 128, 0.3);
    color: #fff !important;
}

/* Curriculum Responsive */
@media (max-width: 992px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #curriculum .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-card {
        padding: 30px;
    }
}

/* Accreditations Section */
.accreditations-section {
    padding: 80px 0;
    background-color: #fbfcff;
}

.accreditations-section .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    color: #551455;
    /* Slightly darker purple to match screenshot */
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.accreditation-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.accreditation-track {
    display: flex;
    width: max-content;
    gap: 0;
    /* Using margin on cards for spacing to ensure perfect -50% loop */
    animation: scroll 30s linear infinite;
}

.accreditation-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Perfect half-width shift */
    }
}

.accreditation-card {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-width: 180px;
    height: 140px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
    margin-right: 30px;
    /* Spacing for infinite scroll */
}

.accreditation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(128, 0, 128, 0.08);
}

.accreditation-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.accreditation-placeholder {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .accreditation-card {
        width: 180px;
        height: 130px;
    }
}

@media (max-width: 992px) {
    .accreditations-section .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .accreditations-section {
        padding: 60px 0;
    }

    .accreditations-section .section-header h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .accreditation-card {
        width: 160px;
        height: 120px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .accreditation-card {
        width: 140px;
        height: 110px;
    }
}

/* =========================================
   New Popup Form Styles
   ========================================= */

/* =========================================
   New Popup Form Styles (Split & Compact)
   ========================================= */

.modal-content.single-form-layout {
    display: flex;
    flex-direction: row;
    max-width: 950px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    min-height: 500px;
}

/* Left Side: Image */
.modal-image-side {
    flex: 0 0 42%;
    position: relative;
    background-color: #2c0e37;
    /* Fallback color */
    overflow: hidden;
}

.modal-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Increased opacity */
    /* mix-blend-mode: overlay; Removed to ensure visibility */
    position: absolute;
    top: 0;
    left: 0;
}

.modal-image-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: #fff;
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.9) 0%, rgba(128, 0, 128, 0.7) 100%);
}

.modal-image-overlay h4 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-image-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.modal-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Right Side: Form */
.modal-form-side {
    flex: 1;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-form-header {
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.popup-form-header h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

.popup-form-header p {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 10px;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-input,
.popup-select,
.popup-textarea {
    width: 100%;
    padding: 6px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    transition: all 0.2s;
    color: #333;
}

.popup-input:focus,
.popup-select:focus,
.popup-textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

/* Compact Select */
.popup-select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0px bottom 4px;
    padding-right: 20px;
}

/* Phone Group */
.phone-input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.phone-input-group:focus-within {
    border-bottom-color: var(--primary-color);
}

.country-code-select {
    width: auto;
    min-width: 75px;
    padding: 6px 5px 6px 0;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: #444;
}

.phone-input-group .popup-input {
    border: none;
    padding-left: 5px;
    border-bottom: none;
    /* Removed double border */
}

/* Submit Button */
.popup-submit-btn {
    background-color: #800080;
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-submit-btn:hover {
    background-color: #6a1b6e;
    transform: translateY(-1px);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    line-height: 1;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content.single-form-layout {
        flex-direction: column;
        max-width: 95%;
        padding: 0;
        min-height: auto;
    }

    .modal-image-side {
        flex: 0 0 120px;
        /* Short header on mobile */
        order: 0;
    }

    .modal-image-overlay {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .modal-image-overlay h4 {
        font-size: 18px;
        margin: 0;
    }

    .modal-image-overlay p,
    .modal-badges {
        display: none;
    }

    .modal-form-side {
        padding: 20px;
        order: 1;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .popup-form-header h3 {
        font-size: 18px;
    }

}

/* Hero Single Form specific styles */
.hero-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}


/* Country Code Select - Custom Dropdown with Flag Images */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
}

.custom-country-select {
    position: relative;
    display: inline-block;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 5px 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    min-width: 75px;
}

.selected-country img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.selected-country span {
    font-weight: 500;
}

.selected-country::after {
    content: '';
    border: solid #666;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px;
    margin-bottom: 2px;
}

.country-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    min-width: 100px;
    margin-top: 3px;
}

.country-dropdown-list.show {
    display: block;
}

.country-dropdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
}

.country-dropdown-item:hover {
    background: #f5f0ff;
}

.country-dropdown-item img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.country-dropdown-item span:first-of-type {
    font-weight: 600;
    color: #333;
    min-width: 40px;
}

.country-dropdown-item .country-name {
    color: #666;
    font-weight: 400;
    font-size: 12px;
}

/* Scrollbar styling for dropdown */
.country-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.country-dropdown-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.country-dropdown-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.country-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.phone-input-group .popup-input {
    flex: 1;
    border: none !important;
    border-bottom: none !important;
}

/* Hide original select */
.country-code-select {
    display: none;
}

/* =========================
   SUCCESS MESSAGE STYLES
   ========================= */
.success-message-container {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    background: rgba(128, 0, 128, 0.1);
    color: #800080;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.success-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #1a1a1a;
}

.success-desc {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 280px;
}

/* =========================
   MEDIA QUERIES - Country Code Dropdown & Phone Input
   ========================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .phone-input-group {
        gap: 0;
    }

    .selected-country {
        padding: 6px 3px 6px 0;
        min-width: 70px;
        font-size: 13px;
    }

    .selected-country img {
        width: 18px;
        height: 13px;
    }

    .selected-country::after {
        padding: 2px;
        margin-left: 3px;
    }

    .country-dropdown-list {
        min-width: 90px;
        max-height: 180px;
        border-radius: 5px;
    }

    .country-dropdown-item {
        padding: 5px 8px;
        gap: 5px;
        font-size: 12px;
    }

    .country-dropdown-item img {
        width: 18px;
        height: 13px;
    }

    .country-dropdown-item span:first-of-type {
        min-width: 35px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .phone-input-group {
        border-bottom: 1px solid #ddd;
    }

    .selected-country {
        padding: 5px 2px 5px 0;
        min-width: 65px;
        font-size: 12px;
        gap: 4px;
    }

    .selected-country img {
        width: 16px;
        height: 12px;
    }

    .selected-country::after {
        padding: 2px;
        margin-left: 2px;
        border-width: 0 1.5px 1.5px 0;
    }

    .country-dropdown-list {
        min-width: 85px;
        max-height: 160px;
        margin-top: 2px;
    }

    .country-dropdown-item {
        padding: 4px 6px;
        gap: 4px;
        font-size: 11px;
    }

    .country-dropdown-item img {
        width: 16px;
        height: 12px;
    }

    .country-dropdown-item span:first-of-type {
        min-width: 30px;
        font-size: 11px;
    }

    .phone-input-group .popup-input {
        font-size: 14px;
        padding: 8px 5px;
    }

    /* Popup form mobile adjustments */
    .popup-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .popup-content {
        padding: 15px;
        max-width: 95vw;
        margin: 10px;
    }

    .popup-content h2 {
        font-size: 18px;
    }

    .popup-content p {
        font-size: 12px;
    }

    .popup-input,
    .popup-select,
    .popup-textarea {
        font-size: 13px;
        padding: 10px 8px;
    }

    .popup-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Small mobile (360px and below) */
@media (max-width: 360px) {
    .selected-country {
        min-width: 58px;
        font-size: 11px;
    }

    .selected-country img {
        width: 14px;
        height: 10px;
    }

    .country-dropdown-list {
        min-width: 75px;
        max-height: 140px;
    }

    .country-dropdown-item {
        padding: 3px 5px;
        gap: 3px;
        font-size: 10px;
    }

    .country-dropdown-item img {
        width: 14px;
        height: 10px;
    }

    .popup-content {
        padding: 12px;
    }

    .popup-content h2 {
        font-size: 16px;
    }
}