/* Global Styles & Variables */
:root {
    --primary-color: #2c2f65;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --bg-color: #ffffff;
    --accent-purple: #3f448c;
    --badge-bg: #d8d4ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Default stack behavior */
}

script,
style,
link,
meta,
title,
head {
    display: none !important;
}

/* Exception for text elements to behave normally within the flex flow */
h1,
h2,
h3,
h4,
p,
span,
strong,
input,
button,
br {
    display: block;
}

span,
strong,
br {
    display: inline;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Vend Sans', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
}

/* Hero Section */
.hero-wrapper {
    padding-top: 20px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.header {
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
    align-self: flex-start;
}

.hero-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.hero-left {
    flex: 1;
    max-width: 550px;
    align-items: flex-start;
}

.subtitle {
    font-family: 'Vend Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.subtitle .underline {
    border-bottom: 1.5px solid var(--text-gray);
    padding-bottom: 2px;
}

.main-title {
    font-family: 'Vend Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.main-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.mobile-title {
    display: none;
}

.mobile-break {
    display: none;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    width: 100%;
}

.badge {
    font-family: 'Vend Sans', sans-serif;
    align-self: flex-start;
    padding: 6px 14px;
    border: 1px solid rgba(44, 47, 101, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.form-card h3 {
    font-family: 'Vend Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #21285b;
}

.form-card h3 .highlight-dark {
    color: #21285b;
    font-weight: 600;
}

#lead-form {
    width: 100%;
}

.input-group {
    margin-bottom: 25px;
    width: 100%;
}

.input-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    color: var(--text-dark);
}

.input-group input::placeholder {
    color: #a0a0a0;
}

.input-group input:focus {
    border-bottom-color: var(--primary-color);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 5px;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-purple);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-consultation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
    flex: 1;
    white-space: nowrap;
}

.btn-consultation svg {
    display: block;
}

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

.btn-consultation:hover img {
    filter: brightness(0) invert(1);
}

.btn-brochure {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    flex: 1;
    white-space: nowrap;
}

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

/* Right Content */
.hero-right {
    flex: 1;
    max-width: 500px;
    align-items: flex-end;
}

.feature-text {
    position: relative;
    width: 90%;
    margin: 0 auto 25px;
    font-family: 'Manrope', sans-serif;
    background: transparent;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-text .dot {
    position: absolute;
    left: -19px;
    top: 8px;
    width: 7px;
    height: 7px;
    background-color: #2c2f74;
    border-radius: 50%;
    display: block;
}

.image-wrapper {
    width: 90%;
    height: 340px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.weekend-batch-card {
    width: 90%;
    margin: 0 auto;
    background-color: var(--badge-bg);
    border-radius: 16px;
    padding: 25px 20px;
    align-items: center;
    justify-content: center;
}

.weekend-batch-card h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
}

.weekend-batch-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 5px;
    text-align: center;
}

/* Features Bar */
.features-bar {
    background-color: var(--primary-color);
    padding: 18px 0;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.features-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    padding: 0;
    gap: 0;
    animation: scrollFeatures 15s linear infinite;
}

.mobile-duplicate {
    display: flex;
}

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

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

.feature-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 3px 20px 3px 3px;
    background: transparent;
    gap: 12px;
    margin-right: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.feature-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.feature-pill span {
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

/* Authorities Section */
.authorities-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.authorities-header {
    text-align: center;
    margin-bottom: 50px;
}

.authorities-header h2 {
    font-family: 'Vend Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.authorities-header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.boxes-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 60px;
}

.box-card {
    width: 21%;
    background-color: #F6F6F6;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.015) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.015) 75%, rgba(0, 0, 0, 0.015)),
        linear-gradient(45deg, rgba(0, 0, 0, 0.015) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.015) 75%, rgba(0, 0, 0, 0.015));
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
}

.box-icon-container {
    width: 64px;
    height: 64px;
    background-color: #2b2b68;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.box-icon-container img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.box-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.15;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.5px;
}

/* Separator */
.separator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px auto;
    width: 100%;
}

.separator-line {
    width: 100%;
    height: 8px;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
}

.separator-dot {
    width: 4px;
    height: 4px;
    background-color: #e60000;
    border-radius: 50%;
    margin-top: 6px;
}

/* Career Section */
.career-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.career-left {
    flex: 1;
    padding-right: 20px;
}

.career-left h2 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.career-left p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.career-right {
    flex: 1;
}

.career-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.btn-career {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    margin-top: 30px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.btn-career:hover {
    background-color: var(--accent-purple);
}

/* Professionals Section */
.professionals-section {
    padding: 100px 0;
    background-color: #f7f8fa;
}

.prof-main-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -1px;
    line-height: 37px;
}

.prof-number-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

.prof-num {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
}

.prof-line {
    flex: 1;
    height: 1px;
    background-color: #cacedb;
    margin-left: 15px;
}

.prof-number-line.reverse .prof-line {
    margin-left: 0;
    margin-right: 15px;
}

.prof-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.prof-img-wrapper {
    flex: 1;
    max-width: 45%;
}

.prof-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 29px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.prof-content {
    flex: 1;
}

.prof-content h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.prof-content p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
    max-width: 95%;
}

.prof-marquee-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.prof-marquee-wrapper::-webkit-scrollbar {
    display: none;
}

.prof-marquee-grid {
    display: flex;
    flex-direction: row;
}

.prof-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    scroll-snap-align: center;
}

.prof-dots-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.prof-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prof-dot.active {
    background-color: #0b1033; /* Dark color matching design */
}

@media (max-width: 1024px) {
    .prof-card {
        padding: 0 20px;
    }
}

/* Real Projects Section */
.real-projects-section {
    padding: 80px 24px;
    background-color: #ffffff;
    text-align: center;
}

.real-projects-title {
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 20px;
    color: #000;
    font-family: 'Vend Sans', sans-serif;
    text-align: center;
    line-height: 33px;
}

.real-projects-lead {
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.rp-rows {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.rp-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.rp-pill {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 28px 8px 8px;
    border: 1px solid rgba(31, 28, 99, 0.3);
    border-radius: 999px;
    background: #fff;
}

.rp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.rp-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.rp-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f1c63;
    line-height: 1;
    margin-top: 2px;
}

/* More Than Section */
.more-than-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.text-center {
    text-align: center;
    bottom: 0px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 30px;
}

.feature-card {
    background-color: #f6f6f8;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
}

.dot-pos-1::after {
    transform: rotate(0deg) translateX(45px);
}

.dot-pos-2::after {
    transform: rotate(225deg) translateX(45px);
}

.dot-pos-3::after {
    transform: rotate(135deg) translateX(45px);
}

.dot-pos-4::after {
    transform: rotate(210deg) translateX(45px);
}

.dot-pos-5::after {
    transform: rotate(45deg) translateX(45px);
}

.dot-pos-6::after {
    transform: rotate(315deg) translateX(45px);
}

.card-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.card-text {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    max-width: 90%;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    margin-top: 159px;
}

.final-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    height: 566px;

}

.final-cta-left {
    flex: 1;
    max-width: 48%;
}

.final-cta-left h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.final-cta-left h2 .highlight-blue {
    color: var(--primary-color);
}

.final-cta-left p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-join {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #000000;
    border-radius: 30px;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
    width: 124px;
}

.btn-join:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.btn-join .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #000;
    transition: border-left-color 0.3s ease;
}

.btn-join:hover .arrow {
    border-left-color: #fff;
}

.final-cta-right {
    flex: 1;
    max-width: 45%;
}

.cta-form-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cta-form-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #21285b;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-form-card h3 .highlight-dark {
    font-weight: 600;
    color: #21285b;
}

.cta-form-card .badge {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.cta-form-card .input-group {
    margin-bottom: 35px;
}

.cta-form-card .input-group input {
    border-bottom: 1px solid #b0b0b0;
    padding: 15px 0 10px 0;
}

.cta-form-card .input-group input::placeholder {
    color: #a8a9c0;
    font-weight: 400;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.community-header {
    text-align: center;
    margin-bottom: 60px;
    align-items: center;
}

.community-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.community-header p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.red-dot-small {
    width: 4px;
    height: 4px;
    background-color: red;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.community-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.community-left {
    flex: 1;
    max-width: 48%;
    position: sticky;
    top: 150px;
}

.community-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    top: 71px;
}

.community-right {
    flex: 1;
    max-width: 48%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.timeline-wrapper {
    max-height: 480px;
    overflow-y: hidden;
    padding-right: 15px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    padding-left: 35px;
}

/* The vertical line */
.timeline-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 8px;
    width: 3px;
    background-color: #e0e0eb;
}

.timeline-item {
    position: relative;
}

/* The scroll progress line */
.timeline-progress {
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    background-color: var(--primary-color);
    z-index: 1;
    height: 24px;
    border-radius: 3px;
    transition: height 0.1s ease-out;
}

.timeline-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.3s;
    letter-spacing: -0.5px;
}

.timeline-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.timeline-item.active h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-item.active p {
    color: #222;
}

.timeline-item.inactive h3 {
    color: #b0b2cb;
    font-weight: 500;
}

.timeline-item.inactive p {
    color: #b0b2cb;
}

/* Institute Section */
.institute-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.institute-card {
    background-color: #f6f6f8;
    border-radius: 22px;
    padding: 25px 25px 25px 50px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
    max-width: 1050px;
    margin: 0 auto;
}

.institute-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.institute-left h2 {
    font-size: 2.15rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -1px;
}

.institute-subtitle {
    font-family: 'Vend Sans', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 16px;
}

.institute-left p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 480px;
}

.institute-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.institute-right {
    flex: 1;
    display: flex;
}

.institute-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Skills & Tools Section */
.skills-tools-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.skills-header {
    text-align: center;
    margin-bottom: 50px;
}

.skills-header h2 {
    font-size: 2.4rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 34px;
}

.skills-header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.skill-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 24px;
    height: 68px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-box span {
    font-family: 'Vend Sans', sans-serif;
    font-size: 1rem;
    color: #999;
    font-weight: 500;
}

.skill-icon {
    font-size: 1.3rem;
    color: #ccc;
    display: flex;
    align-items: center;
}

.custom-svg-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.white-svg {
    filter: brightness(0.8);
    /* Dims pure white to #ccc grey */
}

.skill-box:hover {
    background-color: var(--primary-color);
}

.skill-box:hover span {
    color: #fff;
    font-weight: 500;
}

.skill-box:hover .skill-icon {
    color: #fff;
}

.skill-box:hover .custom-svg-icon {
    filter: brightness(0) invert(1);
}

.section-divider {
    width: 100%;
    max-width: 950px;
    margin: 60px auto;
    position: relative;
}

.divider-line {
    height: 1px;
    background-color: #d1d1d1;
    width: 100%;
    position: relative;
}

.divider-line::before,
.divider-line::after {
    content: '';
    position: absolute;
    top: -6px;
    width: 1px;
    height: 13px;
    background-color: #a1a1a1;
}

.divider-line::before {
    left: 0;
}

.divider-line::after {
    right: 0;
}

.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-header h2 {
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 33px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.tool-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 24px;
    height: 68px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-box span {
    font-family: 'Vend Sans', sans-serif;
    font-size: 1rem;
    color: #999;
    font-weight: 500;
}

.tool-icon {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.tool-box:hover {
    background-color: #f0f2fa;
}

.tool-box:hover span {
    color: var(--primary-color);
    font-weight: 600;
}

.tool-box:hover .tool-icon {
    color: var(--primary-color);
}

.tool-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.tool-text-box strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.tool-text-box p {
    color: var(--primary-color);
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Registration CTA Section */
.registration-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.registration-card {
    background-color: #f4f5f8;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    max-width: 1151px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

/* Left Side */
.registration-left {
    flex: 0 0 45%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.registration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.registration-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
}

.registration-overlay h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.registration-overlay p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Right Side */
.registration-right {
    flex: 1;
    padding: 25px 40px 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programme-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #b0b2cb;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555b8a;
    margin-bottom: 20px;
    align-self: flex-start;
}

.registration-heading {
    font-size: 2rem;
    font-weight: 400;
    color: #21285b;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.registration-heading strong {
    font-weight: 600;
    color: #21285b;
    display: inline;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.registration-form input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #b0b2cb;
    background: transparent;
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.registration-form input::placeholder {
    color: #9094ab;
    font-weight: 400;
}

.registration-form input:focus {
    border-bottom-color: var(--primary-color);
}

.form-submit-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.form-submit-btn:hover {
    opacity: 0.9;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cert-header {
    text-align: center;
    margin-bottom: 50px;
}

.cert-header h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 38px;
    bottom: 39px;
}

.cert-header p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    bottom: 34px;
}

.cert-grid-wrapper {
    position: relative;
    max-width: 1052px;
    /* Expanded width while maintaining grid multiples */
    width: 100%;
    margin: 0 auto 40px auto;
    padding: 43px;
    /* Exactly 3 grid squares padding */
    background-color: transparent;
    border: 1px solid #cbd0e1;
    background-image:
        linear-gradient(to right, #cbd0e1 1px, transparent 1px),
        linear-gradient(to bottom, #cbd0e1 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: -1px -1px;
}

.corner-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #2b3168;
    border-radius: 50%;
    z-index: 5;
}

.corner-dot.top-left {
    top: -5px;
    left: -5px;
}

.corner-dot.top-right {
    top: -5px;
    right: -5px;
}

.corner-dot.bottom-left {
    bottom: -5px;
    left: -5px;
}

.corner-dot.bottom-right {
    bottom: -5px;
    right: -5px;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Exactly 1 grid square gap */
    position: relative;
    z-index: 2;
}

.cert-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #cbd0e1;
    padding: 25px 30px;
    /* Slightly tighter vertical padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 180px;
    /* Reduced height to 6 grid squares */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cert-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 30px;
}

.cert-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.cert-footer-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
}

.cert-note-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cert-footer-note span:last-child {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Experts Section */
.experts-section {
    padding: 100px 0;
    background-color: #f4f5f8;
}

.experts-top {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.experts-left {
    flex: 0 0 45%;
}

.award-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.award-icon-box .iconify {
    font-size: 1.8rem;
    color: #111;
}

.experts-left h2 {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.15;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-blue {
    color: var(--primary-color);
}

.experts-left p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
}

.experts-sub-p {
    font-size: 1.05rem;
    color: #222;
    font-weight: 500;
}

.experts-right {
    flex: 1;
}

.experts-photo-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.experts-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: -10%;
    /* pulls the blue block up to cut off their chests */
    position: relative;
    z-index: 1;
}

.experts-blue-block {
    background-color: var(--primary-color);
    border-radius: 16px;
    height: 120px;
    position: relative;
    z-index: 2;
    /* Overlaps the image */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
}

.expert-pill {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    padding: 8px 16px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.expert-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: 15px;
}

/* Timeline */
.experts-timeline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.experts-timeline::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.timeline-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    min-width: 140px;
    /* Prevent text squishing, forcing scroll on smaller screens */
}

/* Base grey gap line */
.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 23px;
    /* Center of the 6px dot placed at 20px */
    width: 100%;
    /* Spans exactly to the center of the next dot */
    height: 2px;
    background-color: #d8dae5;
    z-index: 1;
}

/* Animated black gap line */
.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 23px;
    width: 0;
    height: 2px;
    background-color: #111;
    z-index: 2;
    transition: none;
    /* Instantly snaps back to zero on reset */
}

.timeline-step.active:not(:last-child)::after {
    width: 100%;
    transition: width 2s linear;
    /* Only animates when growing */
}

.feature-pill span {
    font-size: 1rem;
    font-weight: 500;
}

.mobile-duplicate {
    display: none;
}

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

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

.step-num {
    font-size: 1rem;
    font-weight: 500;
    color: #b0b2cb;
    margin-bottom: 30px;
    display: block;
    background-color: transparent;
    position: relative;
    z-index: 3;
}

.step-num .dot {
    width: 6px;
    height: 6px;
    background-color: #b0b2cb;
    border-radius: 50%;
    position: absolute;
    top: 34px;
    left: 20px;
    z-index: 3;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #b0b2cb;
    line-height: 1.3;
}

.timeline-step.active .step-num,
.timeline-step.active .step-num .dot,
.timeline-step.active .step-title {
    color: #111;
}

.timeline-step.active .step-num .dot {
    background-color: #111;
}

/* Why Choose CDA Section */
.choose-cda-section {
    padding: 100px 0;
    background-color: #F6F6F6;
}

.choose-cda-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    /* To prevent shadow clipping if any */
}

.choose-cda-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: max-content;
}

.marquee-right {
    animation: scrollLeft 35s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(calc(-50% - 15px));
    }

    100% {
        transform: translateX(0);
    }
}

.choose-cda-card {
    display: flex;
    flex-direction: column;
    width: 350px;
    background-color: transparent;
}

.choose-cda-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.choose-cda-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2b2b68;
    font-family: 'Manrope', sans-serif;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

/* Built Careers Section */
.built-careers-section {
    padding: 100px 0;
    background-color: #F6F6F6;
}

.bc-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.built-careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bc-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
}

.bc-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2b68;
    font-family: 'Manrope', sans-serif;
    text-align: left;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #2b2b68;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    font-family: 'Vend Sans', sans-serif;
    bottom: 15px;
    line-height: 34px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid #eaeaea;
}

.faq-item:last-child {
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    font-family: 'Manrope', sans-serif;
    gap: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #2b2b68;
    color: #fff;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.faq-text {
    line-height: 1.4;
    margin-top: 4px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding-left: 40px;
    padding-bottom: 0;
}

.faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Build Skills Section */
.build-skills-section {
    padding: 100px 0;
    background-color: #F6F6F6;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    max-width: 1001px;
    margin: 0 auto;
    margin-top: 50px;
}

.skills-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skills-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.skills-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skills-icon img {
    width: 32px;
    height: 32px;
}

.skills-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
    font-family: 'Manrope', sans-serif;
    text-align: left;
}

/* Upcoming Batch Section */
.upcoming-batch-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.ub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ub-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Vend Sans', sans-serif;
}

.ub-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Manrope', sans-serif;
}

.ub-pills {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 16px;
    justify-content: start;
}

.ub-pill {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #111;
    border-radius: 40px;
    padding: 0 24px 0 54px;
    font-size: 1rem;
    color: #111;
    background: transparent;
    height: 44px;
}

.ub-pill-icon-wrapper {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ub-pill-icon-wrapper img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Form Card */
.ub-form-card {
    background-color: #F4F5F8;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ub-tag {
    display: inline-block;
    border: 1px solid #7B83B9;
    color: #5C629E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.ub-form-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #21285b;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.ub-form-title strong {
    font-weight: 600;
    color: #21285b;
    display: block;
}

.ub-input-group {
    margin-bottom: 24px;
}

.ub-input-group input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #A8ADD3;
    background: transparent;
    font-size: 1rem;
    color: #333;
    outline: none;
    font-family: 'Manrope', sans-serif;
}

.ub-input-group input::placeholder {
    color: #A8ADD3;
}

.ub-input-group input:focus {
    border-bottom-color: #2b2b68;
}

.ub-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2b2b68;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.ub-submit-btn:hover {
    background-color: #1f1f4d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-container {
        gap: 8px;
        padding: 0 10px;
    }

    .feature-pill {
        padding: 3px 12px 3px 3px;
        gap: 6px;
    }

    .feature-pill span {
        font-size: 0.8rem;
    }

    .feature-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .feature-icon-wrapper img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 992px) {
    .hero-main {
        flex-direction: column;
    }

    .prof-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .prof-img-wrapper {
        max-width: 100%;
        order: -1;
        /* Ensure image is always visually on top */
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .features-container {
        justify-content: flex-start;
        width: max-content;
        gap: 30px;
    }

    .boxes-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .box-card {
        width: 47%;
        margin-bottom: 20px;
    }

    .choose-cda-card {
        width: 300px;
    }

    .built-careers-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-column:first-child .faq-item:last-child {
        border-bottom: none;
    }

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

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .career-section {
        flex-direction: column;
    }

    .career-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .final-cta-container {
        flex-direction: column;
        gap: 50px;
        height: auto;
    }

    .final-cta-left,
    .final-cta-right {
        max-width: 100%;
        width: 100%;
    }

    .community-content {
        flex-direction: column;
        gap: 50px;
    }

    .community-left,
    .community-right {
        max-width: 100%;
    }

    .community-left {
        position: static;
    }

    .institute-card {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .institute-left,
    .institute-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .institute-right {
        justify-content: center;
    }

    .skills-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .registration-card {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .registration-left,
    .registration-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .registration-img {
        height: 380px;
        max-height: 400px;
    }

    .ub-pills {
        grid-template-columns: 1fr;
    }


    .experts-top {
        flex-direction: column-reverse;
    }

    .experts-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-step {
        padding-left: 40px;
        padding-right: 0;
    }

    .step-num {
        margin-bottom: 10px;
    }

    .step-num .dot {
        top: 6px;
        left: -40px;
    }

    /* Convert horizontal animated lines into vertical ones */
    .timeline-step:not(:last-child)::before,
    .timeline-step:not(:last-child)::after {
        left: 2px !important;
        top: 9px !important;
        width: 2px !important;
        height: calc(100% + 30px) !important;
    }

    .timeline-step:not(:last-child)::after {
        height: 0 !important;
    }

    .timeline-step.active:not(:last-child)::after {
        height: calc(100% + 30px) !important;
        width: 2px !important;
        transition: height 2s linear !important;
    }
}

@media (max-width: 576px) {
    .boxes-grid {
        gap: 12px;
        margin-bottom: 40px;
    }

    .box-card {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;

    }

    .experts-blue-block {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        padding: 0 15px !important;
    }

    .expert-pill {
        font-size: 0.6rem !important;
        padding: 6px 12px !important;
    }

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

    .cert-grid-wrapper {
        padding: 30px 20px;
    }

    /* Comprehensive Mobile Typography Scaling */
    .desktop-title {
        display: none !important;
    }

    .mobile-title {
        display: block !important;
    }

    .weekend-text {
        color: var(--primary-color) !important;
        border-bottom-color: var(--primary-color) !important;
    }

    .main-title {
        font-size: 2.2rem !important;
    }

    .section-title,
    .ub-title,
    h2,
    .final-cta-left h2 {
        font-size: 1.8rem !important;
    }

    .section-title {
        margin-bottom: 25px !important;
        top: -11px;
        line-height: 32px;
    }

    .registration-heading {
        font-size: 1.45rem !important;
    }

    .institute-left h2 {
        font-size: 1.55rem !important;
        line-height: 1.35 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 20px !important;
    }

    .institute-left h2 br {
        display: none !important;
    }

    .real-projects-lead {
        margin-bottom: 40px !important;
    }

    .rp-pill {
        padding: 6px 16px 6px 6px !important;
        gap: 10px !important;
    }

    .rp-label {
        font-size: 0.95rem !important;
        white-space: nowrap !important;
    }

    .community-title,
    .institute-title,
    .skills-title,
    .career-title {
        font-size: 1.8rem !important;
    }

    h3,
    .bc-title,
    .faq-question {
        font-size: 1.3rem !important;
    }

    p,
    .ub-subtitle,
    .hero-subtitle,
    .final-cta-left p {
        font-size: 0.95rem !important;
    }

    /* Comprehensive Section Padding Reduction */
    section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .final-cta-section {
        margin-top: 50px !important;
    }

    .hero-wrapper {
        min-height: auto !important;
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }

    /* Form and UI Elements Scaling */


    .ub-form-card,
    .registration-card,
    .institute-card {
        padding: 24px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .registration-img {
        height: 440px !important;
        object-position: top center !important;
    }

    .registration-overlay {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        padding: 18px !important;
    }

    .registration-overlay h4 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .registration-overlay p {
        font-size: 0.85rem !important;
    }

    .cta-form-card,
    .form-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 35px 25px !important;
    }

    .cta-form-card h3,
    .form-card h3 {
        font-size: 1.35rem !important;
        color: #21285b !important;
        margin-bottom: 30px !important;
    }

    .cta-form-card h3 .highlight-dark,
    .form-card h3 .highlight-dark {
        color: #21285b !important;
        font-size: 1.45rem !important;
        /* Reverting size since it's split nicely now */
    }

    .mobile-break {
        display: block !important;
    }

    .cta-form-card .badge,
    .form-card .badge {
        background-color: transparent !important;
        border: 1px solid #a3acd4 !important;
        color: #65719e !important;
        border-radius: 20px !important;
        font-size: 0.75rem !important;
        padding: 6px 16px !important;
        margin-bottom: 25px !important;
    }

    .cta-form-card .input-group input,
    .form-card .input-group input {
        border-bottom: 1px solid #c9cee6 !important;
        padding: 12px 0 8px 0 !important;
        font-size: 1rem !important;
    }

    .cta-form-card .input-group input::placeholder,
    .form-card .input-group input::placeholder {
        color: #aeb6d9 !important;
    }

    .cta-form-card .btn-primary,
    .form-card .btn-primary {
        padding: 16px !important;
        font-size: 1rem !important;
        border-radius: 30px !important;
        width: 100% !important;
        margin-top: 15px !important;
    }

    .ub-pill {
        padding: 0 16px 0 46px !important;
        font-size: 0.85rem !important;
    }

    .box-card,
    .bc-card,
    .choose-cda-card,
    .feature-card {
        padding: 20px !important;
    }
}

@media (max-width: 320px) {

    .cta-form-card,
    .form-card {
        padding: 30px 15px !important;
    }

    .cta-form-card h3,
    .form-card h3 {
        font-size: 1.35rem !important;
    }

    .cta-form-card h3 .highlight-dark,
    .form-card h3 .highlight-dark {
        font-size: 1.4rem !important;
    }
}

/* Tablet Features Marquee */
@media (max-width: 768px) {
    .features-bar {
        overflow: hidden !important;
    }

    .features-container {
        justify-content: flex-start !important;
        width: max-content !important;
        max-width: none !important;
        padding: 0 !important;
        gap: 0 !important;
        animation: scrollFeatures 15s linear infinite !important;
    }

    .feature-pill {
        margin-right: 15px !important;
    }

    .mobile-duplicate {
        display: flex !important;
    }
}