* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50px;
    left: 80px;
    z-index: 10;
}

.logo-icon {
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    color: #001738;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 0.75rem;
    color: #001738;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background: #2d1854;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 50px 80px;
    /* background: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover; */
    position: relative;
    color: lch(100% 0.01 296.81);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Light overlay so text is readable */
}

.hero-content,
.hero-image,
.form-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 32%;
    color: #2d1854;
}

.hero-image {
    max-width: 28%;
}

.hero-photo {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #001738;
}

.hero-content h1 span {
    color: #ff9100;
}

.sub-headline {
    font-size: 1.15rem;
    color: #001738;
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-headline span {
    color: #ff9100;
}

.tagline {
    color: #001738;
    font-size: 11px;
    margin-bottom: 30px;
    font-weight: 700;
}

.tagline .pipe {
    color: #ff9100;
    margin: 0 5px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
    margin-bottom: 30px;
    max-width: 450px;
}

.benefit-grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.benefit-grid-icon {
    width: 65px;
    height: 65px;
    background: #001738;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.benefit-grid-icon i {
    color: #ff9100;
    font-size: 28px;
}

.benefit-grid-text {
    font-size: 12px;
    font-weight: 700;
    color: #001738;
    line-height: 1.25;
}

/* Info Pill */
.info-pill {
    background: #fff;
    border-radius: 40px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 10;
    max-width: 600px;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #001738;
    line-height: 1.2;
    text-align: left;
}

.info-item i {
    font-size: 22px;
    color: #001738;
}

.info-divider {
    width: 1px;
    height: 35px;
    background: #ccc;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 400px;
    color: #333;
}

.form-container h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.form-container h3 span {
    color: #2d1854;
}

.form-container p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.input-group select:invalid {
    color: #757575;
}

.input-group select option {
    color: #333;
}

.radio-group {
    font-size: 14px;
    margin-bottom: 20px;
}

.radio-group label {
    margin-right: 15px;
    color: #555;
}

.btn-submit {
    width: 100%;
    background: #f39c12;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e67e22;
}

.secure-text {
    text-align: center;
    font-size: 12px !important;
    margin-top: 10px;
    color: #888;
}

/* Feature Strip */
.feature-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(90deg, #2d1854, #3b1f7d);
    color: #fff;
    padding: 28px 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 160px;
    min-width: 180px;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 600;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 24px;
    color: #f7c14d;
}

.feature-item span {
    line-height: 1.3;
}

/* Sections */
.journey-section,
.opportunities-section,
.testimonials-section {
    padding: 50px 80px;
    text-align: center;
}

.journey-section h2,
.testimonials-section h2 {
    color: #2d1854;
    margin-bottom: 40px;
}

.timeline {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 20px;
}

.timeline::-webkit-scrollbar {
    height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
    background: #4c2c88;
    border-radius: 4px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.step-icon {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #4c2c88;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.step-icon i {
    color: #fff;
    font-size: 32px;
}

.step p {
    font-size: 13px;
    font-weight: 700;
    color: #1f1f47;
    max-width: 120px;
}

.timeline-arrow {
    color: #4c2c88;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 43px;
}

.final-step .step-icon {
    background: #f39c12;
}

.final-step p {
    color: #1f1f47;
}

.opportunities-section {
    display: flex;
    gap: 40px;
    text-align: left;
    background: #fff;
    padding: 50px 80px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.careers-grid,
.brands {
    flex: 1;
}

.careers-grid h3,
.brands h3 {
    color: #2d1854;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.career-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.career-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.12);
}

.career-card-image {
    height: 180px;
    background: linear-gradient(135deg, #472d8b, #8360c3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.career-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-card-title {
    padding: 18px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #201d3c;
    text-align: center;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.brand-logos.top-logos {
    justify-content: flex-start;
}

.brand-logos.bottom-logos {
    justify-content: flex-start;
    padding-left: 79px;
}

.brand-logo {
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(45, 24, 84, 0.12);
    min-width: 140px;
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-note {
    color: #4c2c88;
    margin-top: 12px;
    margin-left: 79px;
    font-size: 0.95rem;
    font-weight: 600;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review {
    background: #fff;
    padding: 28px 26px 24px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    max-width: 330px;
    text-align: center;
}

.review-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 18px;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review .stars {
    color: #f39c12;
    margin-bottom: 18px;
    font-size: 1rem;
}

.review p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 auto 18px;
    max-width: 260px;
}

.review h4 {
    margin-top: 0;
    color: #2d1854;
    font-size: 0.95rem;
    font-weight: 700;
}

.student-benefits {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    background: #fff;
    padding: 24px 20px 18px;
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    color: #2d1854;
    font-weight: 700;
    font-size: 0.85rem;
}

.benefit-item+.benefit-item {
    border-left: 1px solid rgba(45, 24, 84, 0.12);
    padding-left: 20px;
}

.benefit-item i {
    color: #4c2c88;
    font-size: 24px;
}

.faq-section {
    padding: 50px 80px;
    background: #fff;
    text-align: left;
}

.faq-section h2 {
    color: #2d1854;
    margin-bottom: 30px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #f7f5ff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 30px rgba(45, 24, 84, 0.05);
}

.faq-item h3 {
    font-size: 1rem;
    color: #2d1854;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4c4c6d;
    line-height: 1.75;
}

/* Sticky Footer */
.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2d1854;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 50px;
    z-index: 100;
}

.bottom-bar .contact,
.bottom-bar .whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.bottom-bar i {
    font-size: 24px;
}

/* Responsive Design */

/* Tablet & Smaller Laptops (Max Width 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        flex-wrap: wrap;
        padding: 40px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-content .benefits-list {
        text-align: left;
        display: inline-block;
    }

    .hero-image {
        display: none;
        /* Hide image to save space and focus on form */
    }

    .form-container {
        margin: 0 auto;
    }

    .opportunities-section {
        flex-direction: column;
        padding: 40px;
    }

    .career-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-logos.bottom-logos {
        padding-left: 0;
    }

    .student-benefits {
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 45%;
        margin-bottom: 10px;
        border: none !important;
        padding-left: 0 !important;
    }

    .journey-section,
    .testimonials-section,
    .opportunities-section,
    .faq-section {
        padding: 40px;
    }
}

/* Mobile Devices (Max Width 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .navbar nav a {
        margin: 0;
        font-size: 13px;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 br {
        display: none;
        /* Improve text flow on smaller screens */
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        width: 100%;
        padding: 20px;
    }

    .feature-strip {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        width: 100%;
        padding: 15px 0;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .journey-section,
    .testimonials-section,
    .opportunities-section,
    .faq-section {
        padding: 30px 20px;
    }

    .timeline {
        flex-direction: column;
        gap: 25px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .career-cards {
        grid-template-columns: 1fr;
    }

    .brand-logos {
        justify-content: center;
    }

    .brand-logo {
        min-width: 120px;
        width: 120px;
    }

    .bottom-bar {
        position: fixed;
        flex-direction: row;
        justify-content: space-between;
        gap: 5px;
        padding: 10px 15px;
        text-align: center;
    }

    .bottom-bar .contact,
    .bottom-bar .whatsapp {
        font-size: 10px;
        flex-direction: column;
        gap: 3px;
    }

    .bottom-bar i {
        font-size: 16px;
    }

    .bottom-bar .btn-submit {
        padding: 8px 15px !important;
        font-size: 0.8rem;
        width: auto;
    }

    .student-benefits {
        flex-direction: column;
        padding: 20px;
    }

    .benefit-item {
        flex: 1 1 100%;
        width: 100%;
        justify-content: flex-start;
    }
}

/* Small Mobile (Max Width 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .navbar nav {
        flex-direction: column;
        gap: 8px;
    }
}