/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   BODY
========================================================= */

body {
    font-family: Arial, sans-serif;
    background: #eef2f7;
}

/* =========================================================
   BOOTSTRAP SLIDER / CAROUSEL
   Fixed Ratio: 1920 x 600
========================================================= */

#mainSlider {
    width: 100%;
    overflow: hidden;
}

#mainSlider .carousel-inner {
    width: 100%;
}

.slider-img {
    width: 100%;
    aspect-ratio: 1920 / 600;

    /* Image will fill the complete slider area */
    object-fit: cover;

    /* Keep image centered */
    object-position: center;

    display: block;
}

/* =========================================================
   REGISTRATION SECTION
========================================================= */

.registration-section {
    min-height: 100vh;
    padding: 20px 0 40px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.left-content {
    max-width: 700px;
}

.left-content h1 {
    font-size: 27px;
    font-weight: 700;
    color: #202b3c;
    line-height: 1.25;
    margin-bottom: 30px;
}

.left-content h1 span {
    display: block;
}

/* =========================================================
   INFORMATION LIST
========================================================= */

.info-list {
    margin-bottom: 55px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

/* Information Icon */

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;

    border-radius: 50%;

    background: #1761a8;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 16px;
}

/* Information Text */

.info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555f6f;
}

/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #202b3c;
}

/* Feature Box */

.feature-box {
    padding: 10px 0;
}

/* Feature Icon */

.feature-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 42px;
    color: #1761a8;
}

/* Feature Title */

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;

    color: #202b3c;

    margin-bottom: 8px;
}

/* Feature Description */

.feature-box p {
    font-size: 13px;
    color: #667085;
    line-height: 1.5;
}

/* =========================================================
   REGISTRATION CARD
========================================================= */

.registration-card {
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 38px 28px 18px;

    margin-top: 28px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   OFFER BADGE
========================================================= */

.offer-badge {
    position: absolute;

    top: 12px;
    left: -8px;

    background: #f36b10;
    color: #fff;

    font-size: 9px;
    font-weight: 700;

    padding: 6px 15px;

    border-radius: 0 10px 10px 0;
}

/* =========================================================
   REGISTRATION CARD TITLE
========================================================= */

.registration-card h3 {
    font-size: 16px;
    font-weight: 700;

    color: #202b3c;

    margin-bottom: 30px;
}

/* =========================================================
   FORM PROGRESS BAR
========================================================= */

.progress-wrapper {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 12px;
}

.progress {
    height: 4px;
    flex: 1;

    background: #d9e5e3;
}

.progress-bar {
    background: #16836d;
}

.progress-wrapper span {
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   FORM ELEMENTS
========================================================= */

.registration-card label {
    font-size: 12px;
    color: #4a5568;

    margin-bottom: 6px;
}

/* Input Fields */

.registration-card .form-control {
    height: auto;

    border-radius: 12px;

    border: 1px solid #bfc5cc;

    font-size: 12px;

    padding: 0 14px;
}

/* Input Focus */

.registration-card .form-control:focus {
    box-shadow: none;

    border-color: #1761a8;
}

/* =========================================================
   OR DIVIDER
========================================================= */

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 16px 0;

    border-top: 1px solid #e4e4e4;
}

.or-divider span {
    background: #fff;

    padding: 0 10px;

    margin-top: -1px;

    font-size: 10px;
    color: #666;
}

/* =========================================================
   ALREADY STUDENT TEXT
========================================================= */

.already-student {
    font-size: 10px;
    line-height: 1.5;

    color: #687080;

    margin-bottom: 18px;
}

.already-student i {
    margin-right: 5px;
}

/* =========================================================
   TERMS & CONDITIONS
========================================================= */

.terms {
    text-align: center;

    margin: 14px 0 0;

    font-size: 9px;
    color: #777;
}

.terms a {
    color: #1761a8;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* =========================================================
   IMAGE SECTION
========================================================= */

.img-section {
    padding: 70px 20px;
    text-align: center;
}

.section-img {
    width: 100%;
    /* max-width: 1000px; */
    height: auto;

    /* margin: 0 auto; */

    display: block;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .registration-card {
        margin-top: 40px;
    }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    /* Registration Section */

    .registration-section {
        padding: 30px 15px;
    }

    /* Main Heading */

    .left-content h1 {
        font-size: 23px;
    }

    /* Information List */

    .info-list {
        margin-bottom: 30px;
    }

    /* Slider remains 1920:600 ratio automatically */

    .slider-img {
        aspect-ratio: 1920 / 600;
        object-fit: cover;
    }
}

/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 480px) {
    .left-content h1 {
        font-size: 21px;
    }

    .registration-card {
        padding: 35px 20px 18px;
        border-radius: 18px;
    }

    .feature-box {
        margin-bottom: 20px;
    }
}

/* =========================================
   BOOTSTRAP SLIDER - 1920 x 600 RATIO
========================================= */

#mainSlider {
    width: 100%;
    overflow: hidden;
}

#mainSlider .carousel-inner {
    width: 100%;
}

#mainSlider .carousel-item {
    width: 100%;
}

.slider-img {
    width: 100%;
    aspect-ratio: 1920 / 600;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =========================================================
   WHY CHOOSE EDUSUDHA
========================================================= */

.why-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #202b3c;
    margin-bottom: 10px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-box {
    height: 100%;
    padding: 28px 22px;
    background: #f7f9fc;
    border: 1px solid transparent;
    border-radius: 18px;

    transition: all 0.35s ease;
    cursor: pointer;
}

/* Hover Effect */

.feature-box:hover {
    background: #fff;
    border-color: rgba(23, 97, 168, 0.12);

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(23, 97, 168, 0.12);
}

/* =========================================================
   PREMIUM ICON DESIGN
========================================================= */

.feature-icon {
    width: 65px;
    height: 65px;

    border-radius: 18px;

    /* background: linear-gradient(
        135deg,
        #1761a8,
        #0d3f73
    ); */

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    box-shadow: 0 8px 20px rgba(23, 97, 168, 0.25);

    transition: all 0.35s ease;
}

/* Icon */

.feature-icon i {
    font-size: 28px;
    color: #fff;

    transition: all 0.35s ease;
}

/* Icon Hover Animation */

.feature-box:hover .feature-icon {
    transform: rotate(-5deg) scale(1.08);

    box-shadow: 0 12px 28px rgba(23, 97, 168, 0.35);
}

/* =========================================================
   FEATURE TITLE
========================================================= */

.feature-box h4 {
    font-size: 18px;
    font-weight: 700;

    color: #202b3c;

    margin-bottom: 10px;

    transition: color 0.3s ease;
}

.feature-box:hover h4 {
    color: #1761a8;
}

/* =========================================================
   FEATURE DESCRIPTION
========================================================= */

.feature-box p {
    font-size: 14px;
    line-height: 1.7;

    color: #667085;

    margin-bottom: 0;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    .why-section h2 {
        font-size: 24px;
    }

    .feature-box {
        padding: 22px 18px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}
/* =========================================
   ACHIEVERS SECTION
========================================= */

.achievers-section {
    width: 100%;
    padding: 35px 15px 70px;
    background: #f7f7f7;
    overflow: hidden;
}

/* =========================================
   HEADER
========================================= */

.achievers-header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.achievers-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1f2d3d;
}

/* =========================================
   NAVIGATION BUTTONS
========================================= */

.achiever-nav {
    display: flex;
    gap: 10px;
}

.achiever-nav button {
    width: 32px;
    height: 32px;

    border: none;
    border-radius: 50%;

    background: #e6ebf2;
    color: #34495e;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.3s ease;
}

.achiever-nav button:hover {
    background: #1761a8;
    color: #fff;
}

/* =========================================
   SLIDER WRAPPER
========================================= */

.achievers-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* =========================================
   SLIDER
========================================= */

.achievers-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* =========================================
   LARGE DESKTOP
   3 CARDS
========================================= */

.achiever-item {
    flex: 0 0 calc((100% - 40px) / 3);
    height: 220px;
}

.achiever-item img {
    width: 100%;
    height: 100%;
    display: block;

    border-radius: 20px;
    object-fit: cover;
}

/* =========================================
   LAPTOP / SMALL DESKTOP
   3 CARDS
========================================= */

@media (max-width: 1199px) {
    .achievers-section {
        padding: 35px 25px 60px;
    }

    .achievers-header,
    .achievers-wrapper {
        max-width: 950px;
    }

    .achiever-item {
        height: 210px;
    }
}

/* =========================================
   TABLET LANDSCAPE
   3 CARDS
========================================= */

@media (max-width: 991px) {
    .achievers-section {
        padding: 35px 20px 55px;
    }

    .achievers-header,
    .achievers-wrapper {
        max-width: 850px;
    }

    .achiever-item {
        height: 190px;
    }
}

/* =========================================
   TABLET
   2 CARDS
========================================= */

@media (max-width: 768px) {
    .achievers-section {
        padding: 30px 20px 50px;
    }

    .achievers-header,
    .achievers-wrapper {
        max-width: 100%;
    }

    .achiever-item {
        flex: 0 0 calc((100% - 20px) / 2);
        height: 220px;
    }
}

/* =========================================
   MOBILE
   1 CARD
========================================= */

@media (max-width: 576px) {
    .achievers-section {
        padding: 30px 15px 45px;
    }

    .achievers-header {
        margin-bottom: 18px;
    }

    .achievers-header h2 {
        font-size: 18px;
    }

    .achiever-nav {
        gap: 8px;
    }

    .achiever-nav button {
        width: 34px;
        height: 34px;
    }

    .achiever-item {
        flex: 0 0 100%;
        height: auto;
        aspect-ratio: 1.7 / 1;
    }

    .achiever-item img {
        border-radius: 16px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 375px) {
    .achievers-section {
        padding: 25px 12px 40px;
    }

    .achievers-header h2 {
        font-size: 16px;
    }

    .achiever-nav button {
        width: 30px;
        height: 30px;
    }

    .achievers-slider {
        gap: 15px;
    }

    .achiever-item {
        flex: 0 0 100%;
    }
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    padding: 70px 0;
    background: #eaf1fa;
}

/* =========================================
   SECTION HEADING
========================================= */

.faq-heading {
    text-align: center;
    margin-bottom: 32px;
}

.faq-heading h2 {
    margin: 0;

    font-size: 20px;
    font-weight: 700;

    color: #202b3c;
}

/* =========================================
   FAQ WRAPPER
========================================= */

.faq-wrapper {
    max-width: 775px;
    margin: 0 auto;
}

/* =========================================
   ACCORDION ITEM
========================================= */

.faq-section .accordion-item {
    border: none;
    background: transparent;

    margin-bottom: 16px;
}

/* =========================================
   ACCORDION BUTTON
========================================= */

.faq-section .accordion-button {
    min-height: 56px;

    padding: 16px 18px;

    background: #ffffff;
    color: #202b3c;

    border: none;
    border-radius: 8px !important;

    box-shadow: none;

    font-size: 14px;
    font-weight: 600;
}

/* Remove Bootstrap Default Focus */

.faq-section .accordion-button:focus {
    box-shadow: none;
}

/* =========================================
   FAQ NUMBER
========================================= */

.faq-number {
    min-width: 38px;

    font-size: 14px;
    font-weight: 500;

    color: #202b3c;
}

/* =========================================
   ACCORDION ARROW
========================================= */

.faq-section .accordion-button::after {
    width: 12px;
    height: 12px;

    background-size: 12px;

    transition: transform 0.3s ease;
}

/* Open FAQ STYLE */

.faq-section .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #202b3c;
}

/* =========================================
   FAQ ANSWER
========================================= */

.faq-section .accordion-body {
    padding: 15px 20px 20px 56px;

    background: #ffffff;

    border-radius: 0 0 8px 8px;

    font-size: 13px;
    line-height: 1.6;

    color: #667085;
}

/* When Accordion Is Open */

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid #202b3c;
    border-radius: 8px;

    overflow: hidden;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }

    .faq-heading h2 {
        font-size: 18px;
    }

    .faq-section .accordion-button {
        min-height: 52px;
        font-size: 13px;
    }

    .faq-number {
        min-width: 35px;
    }
}

/* =========================================
   DOWNLOAD / SYLLABUS SECTION
========================================= */

.download-section {
    padding: 55px 0 70px;
    background: #eaf1fa;
}

/* Main content width */

.download-section .container {
    max-width: 1080px;
}

/* =========================================
   HEADINGS
========================================= */

.download-block h2,
.cities-block h2 {
    font-size: 18px;
    font-weight: 700;
    color: #26384b;

    margin-bottom: 20px;
}

/* =========================================
   DOWNLOAD CARD
========================================= */

.download-card {
    width: 100%;
    min-height: 56px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #d8e5f5;

    border-radius: 14px;

    text-decoration: none;

    color: #26384b;

    transition: all 0.3s ease;
}

/* Card Text */

.download-card span {
    font-size: 16px;
    font-weight: 500;
}

/* Download / View Text */

.download-card strong {
    font-size: 16px;
    font-weight: 700;

    color: #1d5797;
}

/* Hover Effect */

.download-card:hover {
    background: #c9dcf2;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(29, 87, 151, 0.12);

    color: #26384b;
}

/* =========================================
   TEST CITIES
========================================= */

.cities-block {
    margin-top: 35px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .download-section {
        padding: 50px 20px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
    .download-section {
        padding: 40px 15px;
    }

    .download-block h2,
    .cities-block h2 {
        font-size: 17px;
    }

    .download-card {
        min-height: 54px;
    }

    .download-card span,
    .download-card strong {
        font-size: 15px;
    }
}

/* FEATURE IMAGE / ICON */

.feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100px;
    height: 180px;
    object-fit: contain;
    display: block;
}

/* =========================================
   WHY CHOOSE EDUSUDHA
========================================= */

.why-section {
    margin-top: 20px;
}

.why-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 10px;
}

/* =========================================
   FEATURE CARD
========================================= */

.feature-box {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;

    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 16px;

    transition: all 0.3s ease;
    cursor: pointer;
}

/* =========================================
   ICON IMAGE
========================================= */

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================
   CONTENT
========================================= */

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2d3d;

    margin: 2px 0 7px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #667085;

    margin: 0;
}

/* =========================================
   HOVER EFFECT
========================================= */

.feature-box:hover {
    transform: translateY(-5px);

    border-color: #d9e8f8;

    box-shadow: 0 12px 30px rgba(23, 97, 168, 0.12);
}

.feature-box:hover .feature-icon {
    transform: scale(1.08);
}

.feature-icon {
    transition: transform 0.3s ease;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .feature-box {
        padding: 16px;
        gap: 13px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {
    .why-section h2 {
        font-size: 22px;
    }

    .feature-box {
        padding: 16px;
        gap: 14px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }
}

.new1 {
    width: 100%;
    padding: 35px 50px;
    background: linear-gradient(
        to bottom,
        #c8edf8 0%,
        #eaf8fc 55%,
        #ffffff 100%
    );
    overflow: hidden;
}

.new1 .new1-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 45px;
}

/* LEFT LOGO */

.new1 .new1-logo {
    width: 210px;
    flex-shrink: 0;
    text-align: center;
}

.new1 .new1-logo img {
    width: 190px;
    height: auto;
    display: block;
    margin: auto;
}

/* RIGHT CONTENT */

.new1 .new1-content {
    flex: 1;
}

.new1 .new1-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.new1 .new1-main-title {
    position: relative;

    color: #0878bd;
    font-size: 55px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -2px;
}

.new1 .new1-small-title {
    display: block;

    color: #111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0;
    margin-left: 24px;
    margin-bottom: 2px;
}

.new1 .new1-title h3 {
    margin: 0;

    color: #151515;
    font-size: 17px;
    font-weight: 800;
}

/* POINTS */

.new1 .new1-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new1 .new1-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.new1 .new1-point-icon {
    width: 30px;
    flex-shrink: 0;

    color: #ffc400;
    font-size: 25px;
    text-align: center;
}

.new1 .new1-point p {
    margin: 0;

    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .new1 {
        padding: 30px 20px;
    }

    .new1 .new1-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .new1 .new1-logo {
        width: 160px;
    }

    .new1 .new1-logo img {
        width: 150px;
    }

    .new1 .new1-title {
        justify-content: center;
        flex-wrap: wrap;
    }

    .new1 .new1-main-title {
        font-size: 45px;
    }

    .new1 .new1-title h3 {
        font-size: 15px;
    }

    .new1 .new1-point {
        text-align: left;
    }
}

.new2 {
    width: 100%;
    padding: 30px 50px 40px;
    background: linear-gradient(
        to bottom,
        #bfeaf7 0%,
        #eaf8fc 55%,
        #ffffff 100%
    );
}

.new2 .new2-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   TITLE
========================= */

.new2 .new2-title {
    margin: 0 0 22px;
    text-align: center;

    color: #151515;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
}

.new2 .new2-title span {
    color: #0878bd;
}

/* =========================
   GRID
========================= */

.new2 .new2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 27px;
}

/* =========================
   ITEM
========================= */

.new2 .new2-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* =========================
   ICON
========================= */

.new2 .new2-icon {
    width: 48px;
    min-width: 48px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.new2 .new2-icon img {
    width: 90px;
    height: 80px;
    object-fit: contain;
}

/* =========================
   CONTENT
========================= */

.new2 .new2-content {
    flex: 1;
}

.new2 .new2-content h4 {
    margin: 0 0 4px;

    color: #111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.new2 .new2-content p {
    margin: 0;

    color: #111;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .new2 {
        padding: 30px 20px;
    }

    .new2 .new2-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .new2 .new2-title {
        font-size: 26px;
    }

    .new2 .new2-item {
        gap: 12px;
    }

    .new2 .new2-icon {
        width: 42px;
        min-width: 42px;
    }

    .new2 .new2-icon img {
        width: 70px;
        height: 80px;
    }
}

.new3 {
    width: 100%;
    padding: 45px 55px;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 35%
        ),
        linear-gradient(135deg, #fffef0 0%, #fffbdc 45%, #fff8c5 100%);
}

.new3 .new3-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */

.new3 .new3-content {
    width: 52%;
}

.new3 .new3-content h2 {
    margin: 0 0 45px;

    color: #111;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.new3 .new3-content h3 {
    margin: 0 0 10px;

    color: #0085d1;
    font-size: 19px;
    font-weight: 800;
}

.new3 .new3-content p {
    max-width: 560px;
    margin: 0;

    color: #111;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

/* RIGHT IMAGE */

.new3 .new3-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new3 .new3-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .new3 {
        padding: 35px 20px;
    }

    .new3 .new3-container {
        flex-direction: column;
        text-align: center;
    }

    .new3 .new3-content {
        width: 100%;
    }

    .new3 .new3-content h2 {
        margin-bottom: 25px;
        font-size: 27px;
    }

    .new3 .new3-content h3 {
        font-size: 18px;
    }

    .new3 .new3-content p {
        margin: 0 auto;
    }

    .new3 .new3-image {
        width: 100%;
    }

    .new3 .new3-image img {
        max-width: 400px;
    }
}

/* =========================================
   OTP POPUP
========================================= */

.otp-popup .otp-popup-overlay {
    position: fixed;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);

    z-index: 999999;
}

/* Popup open hone ke baad */

.otp-popup .otp-popup-overlay.active {
    display: flex;
}

/* =========================================
   POPUP BOX
========================================= */

.otp-popup .otp-popup-modal {
    position: relative;

    width: 440px;
    max-width: calc(100% - 30px);

    background: #ffffff;

    border-radius: 16px;

    padding: 38px 28px 25px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* =========================================
   CLOSE
========================================= */

.otp-popup .otp-popup-close {
    position: absolute;

    top: 12px;
    right: 14px;

    width: 30px;
    height: 30px;

    border: 0;
    background: transparent;

    color: #555;

    font-size: 28px;
    line-height: 28px;

    cursor: pointer;
}

/* =========================================
   HEADER
========================================= */

.otp-popup .otp-popup-header {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 5px;
}

.otp-popup .otp-popup-back {
    border: 0;
    background: transparent;

    color: #555;

    font-size: 35px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;
}

.otp-popup .otp-popup-logo {
    color: #0868b8;

    font-size: 30px;
    font-weight: 900;

    letter-spacing: -1px;
}

/* =========================================
   TITLE
========================================= */

.otp-popup .otp-popup-modal h2 {
    margin: 0 0 12px;

    color: #111;

    font-size: 21px;
    font-weight: 700;
}

/* =========================================
   SENT NUMBER
========================================= */

.otp-popup .otp-popup-sent {
    margin-bottom: 25px;

    color: #444;

    font-size: 16px;
}

.otp-popup .otp-popup-sent strong {
    font-weight: 500;
}

.otp-popup .otp-popup-sent button {
    border: 0;
    background: transparent;

    padding: 0 0 0 5px;

    color: #006fc9;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

/* =========================================
   OTP INPUTS
========================================= */

.otp-popup .otp-popup-inputs {
    display: flex;

    gap: 16px;

    margin-bottom: 18px;
}

.otp-popup .otp-popup-inputs input {
    width: 56px;
    height: 56px;

    border: 2px solid #d0d4d8;

    border-radius: 8px;

    outline: none;

    text-align: center;

    font-size: 22px;
    font-weight: 600;
}

.otp-popup .otp-popup-inputs input:first-child {
    border-color: #555;
}

.otp-popup .otp-popup-inputs input:focus {
    border-color: #0878bd;
}

/* =========================================
   RESEND
========================================= */

.otp-popup .otp-popup-resend {
    display: block;

    border: 0;
    background: transparent;

    padding: 0;

    color: #006fc9;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    margin-bottom: 35px;
}

/* =========================================
   VERIFY
========================================= */

.otp-popup .otp-popup-verify {
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 25px;
    background: #e5e5e5;
    color: #777;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.otp-popup .otp-popup-verify:hover {
    background: #1761a8;
    color: #fff;
    cursor: pointer;
}

/* =========================================
   DIVIDER
========================================= */

.otp-popup .otp-popup-divider {
    width: 100%;
    height: 1px;

    background: #ddd;

    margin: 24px 0 15px;
}

/* =========================================
   HELP
========================================= */

.otp-popup .otp-popup-help {
    margin: 0;

    color: #777;

    font-size: 12px;
}

.otp-popup .otp-popup-help a {
    color: #0878bd;

    font-weight: 600;

    text-decoration: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {
    .otp-popup .otp-popup-modal {
        padding: 38px 20px 22px;
    }

    .otp-popup .otp-popup-inputs {
        gap: 10px;
    }

    .otp-popup .otp-popup-inputs input {
        width: 52px;
        height: 52px;
    }
}

/* =========================
   ACADEMIC STEP
========================= */

.academic-step {
    display: none;
}

.academic-step.active {
    display: block;
}

/* TITLE */

.academic-step h3 {
    margin: 0 0 28px;

    color: #111;
    font-size: 16px;
    font-weight: 700;
}

/* PROGRESS */

.academic-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;
}

.academic-progress {
    flex: 1;

    height: 5px;

    background: #b8e7dc;

    border-radius: 10px;

    overflow: hidden;
}

.academic-progress-bar {
    width: 66%;
    height: 100%;

    background: #08a77a;

    border-radius: 10px;
}

.academic-progress-wrapper span {
    color: #111;

    font-size: 13px;
}

/* FIELD */

.academic-field {
    margin-bottom: 25px;
}

.academic-field label {
    display: block;

    margin-bottom: 7px;

    color: #111;

    font-size: 12px;
    font-weight: 500;
}

.academic-field label span {
    color: #e40000;
    margin-left: 2px;
}

/* NAME */

.academic-input {
    width: 100%;
    height: 38px;

    border: 1px solid #c8ccd1;
    border-radius: 8px;

    padding: 0 12px;

    font-size: 12px;

    outline: none;
}

.academic-input::placeholder {
    color: #999;
}

/* CLASS */

.class-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.class-options button {
    min-width: 45px;
    height: 39px;

    padding: 0 12px;

    border: 1px solid #c8ccd1;
    border-radius: 7px;

    background: #fff;

    color: #222;

    font-size: 12px;

    cursor: pointer;
}

.class-options button.active {
    border-color: #0878bd;
    background: #eaf6fc;
    color: #0878bd;
}

/* STUDY MODE */

.study-options {
    display: flex;
    gap: 10px;
}

.study-options button {
    height: 39px;

    padding: 0 14px;

    border: 1px solid #c8ccd1;
    border-radius: 7px;

    background: #fff;

    color: #222;

    font-size: 12px;

    cursor: pointer;
}

.study-options button.active {
    border-color: #0878bd;
    background: #eaf6fc;
    color: #0878bd;
}

/* BOTTOM */

.academic-bottom {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 8px;
}

.academic-back {
    width: 36px;
    height: 36px;

    border: 1px solid #0878bd;
    border-radius: 50%;

    background: #fff;

    color: #222;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.academic-continue {
    flex: 1;

    height: 36px;

    border: 0;
    border-radius: 20px;

    background: #e5e5e5;

    color: #777;

    font-size: 12px;

    cursor: pointer;
}

.academic-continue.active {
    background: #0878bd;
    color: #fff;
}

.goal-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.goal-options button {
    height: 39px;

    padding: 0 14px;

    border: 1px solid #c8ccd1;
    border-radius: 7px;

    background: #fff;

    color: #222;

    font-size: 12px;

    cursor: pointer;
}

.goal-options button.active {
    border-color: #0878bd;

    background: #eaf6fc;

    color: #0878bd;

    font-weight: 600;
}

/* Center Select */

.academic-select {
    width: 100%;
    height: 39px;

    padding: 0 12px;

    border: 1px solid #c8ccd1;
    border-radius: 7px;

    background: #fff;

    color: #222;

    font-size: 12px;

    outline: none;

    cursor: pointer;
}

.academic-select:focus {
    border-color: #0878bd;
}

/* =========================
   STEP 3
========================= */

.test-preference-step {
    display: none;
}

.test-preference-step.active {
    display: block;
}

.test-preference-step h3 {
    margin: 0 0 28px;

    color: #111;

    font-size: 16px;
    font-weight: 700;
}

/* Progress */

.test-progress-wrapper {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 16px;
}

.test-progress {
    flex: 1;

    height: 5px;

    background: #b8e7dc;

    border-radius: 10px;

    overflow: hidden;
}

.test-progress-bar {
    width: 100%;
    height: 100%;

    background: #08a77a;

    border-radius: 10px;
}

.test-progress-wrapper span {
    font-size: 13px;
    color: #111;
}

/* Info box */

.preference-info {
    padding: 10px;

    margin-bottom: 20px;

    background: #f3f6fc;

    border-radius: 6px;

    color: #334;

    font-size: 11px;
}

.preference-info strong {
    display: block;

    margin-bottom: 7px;

    font-weight: 500;
}

.preference-point {
    display: flex;

    gap: 7px;

    margin-top: 6px;

    line-height: 1.4;
}

.preference-point i {
    color: #777;

    flex-shrink: 0;
}

/* Fields */

.test-field {
    margin-bottom: 20px;
}

.test-field label {
    display: block;

    margin-bottom: 6px;

    color: #111;

    font-size: 12px;
}

.test-field label span {
    color: #e00000;

    margin-left: 2px;
}

/* Date */

.test-date-btn {
    height: 38px;

    padding: 0 13px;

    border: 1px solid #0878bd;

    border-radius: 7px;

    background: #eaf6fc;

    color: #111;

    font-size: 12px;
}

/* Select */

.test-select {
    width: 100%;
    height: 38px;

    padding: 0 12px;

    border: 1px solid #c8ccd1;

    border-radius: 8px;

    background: #fff;

    color: #666;

    font-size: 12px;

    outline: none;
}

.test-select:focus {
    border-color: #0878bd;
}

/* Note */

.city-note {
    display: flex;

    gap: 6px;

    margin-top: 7px;

    color: #666;

    font-size: 10px;

    line-height: 1.35;
}

.city-note i {
    font-size: 12px;
}

/* Input */

.test-input {
    width: 100%;
    height: 38px;

    padding: 0 12px;

    border: 1px solid #c8ccd1;

    border-radius: 8px;

    outline: none;

    font-size: 12px;
}

.test-input:focus {
    border-color: #0878bd;
}

.test-input::placeholder {
    color: #999;
}

/* Coupon */

.coupon-section {
    margin-top: 5px;

    margin-bottom: 10px;
}

.coupon-link {
    border: 0;

    background: transparent;

    padding: 0;

    color: #006fc9;

    font-size: 13px;
    font-weight: 700;

    text-decoration: underline;

    cursor: pointer;
}

/* Bottom */

.test-bottom {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;
}

.test-back {
    width: 36px;
    height: 36px;

    border: 1px solid #0878bd;

    border-radius: 50%;

    background: #fff;

    color: #222;

    font-size: 22px;

    line-height: 1;

    cursor: pointer;
}

.register-pay {
    flex: 1;

    height: 36px;

    border: 0;

    border-radius: 20px;

    background: #e5e5e5;

    color: #777;

    font-size: 12px;
}

/* =========================================
   CITY DROPDOWN
========================================= */

.city-dropdown {
    position: relative;
    width: 100%;
}

/* Main button */

.city-dropdown-btn {
    width: 100%;
    height: 38px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 1px solid #c8ccd1;
    border-radius: 9px;

    background: #fff;

    color: #555;

    font-size: 12px;

    cursor: pointer;
}

.city-dropdown-btn i {
    font-size: 13px;

    color: #444;

    transition: transform 0.2s ease;
}

.city-dropdown.open .city-dropdown-btn i {
    transform: rotate(180deg);
}

/* Dropdown */

.city-dropdown-menu {
    display: none;

    position: absolute;

    left: 0;
    right: 0;

    top: calc(100% + 6px);

    background: #fff;

    border: 1px solid #d8d8d8;

    border-radius: 10px;

    padding: 8px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

    z-index: 9999;
}

.city-dropdown.open .city-dropdown-menu {
    display: block;
}

/* Search */

.city-search {
    position: relative;

    margin-bottom: 8px;
}

.city-search i {
    position: absolute;

    left: 12px;

    top: 50%;

    transform: translateY(-50%);

    color: #aaa;

    font-size: 16px;
}

.city-search-input {
    width: 100%;

    height: 38px;

    padding: 0 12px 0 38px;

    border: 1px solid #c9cdd2;

    border-radius: 20px;

    outline: none;

    font-size: 12px;

    color: #222;
}

.city-search-input:focus {
    border-color: #aaa;
}

.city-search-input::placeholder {
    color: #aaa;
}

/* City list */

.city-list {
    max-height: 230px;

    overflow-y: auto;
}

/* Scrollbar */

.city-list::-webkit-scrollbar {
    width: 7px;
}

.city-list::-webkit-scrollbar-track {
    background: #f5f5f5;

    border-radius: 10px;
}

.city-list::-webkit-scrollbar-thumb {
    background: #999;

    border-radius: 10px;
}

/* City item */

.city-option {
    width: 100%;

    padding: 10px 5px;

    border: 0;

    background: transparent;

    text-align: left;

    color: #111;

    font-size: 13px;

    cursor: pointer;

    border-bottom: 1px solid #f1f1f1;
}

.city-option:last-child {
    border-bottom: 0;
}

.city-option:hover {
    background: #f3f6fc;

    color: #006fc9;
}

/* No result */

.city-no-result {
    padding: 15px 5px;

    text-align: center;

    color: #888;

    font-size: 12px;
}

/* =========================================
   COUPON POPUP OVERLAY
========================================= */

.coupon-popup-overlay {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(20, 25, 35, 0.55);

    z-index: 99999;

    align-items: center;
    justify-content: center;

    padding: 15px;
}

.coupon-popup-overlay.active {
    display: flex;
}

/* =========================================
   COUPON POPUP
========================================= */

.coupon-popup {
    width: 100%;
    max-width: 385px;

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =========================================
   HEADER
========================================= */

.coupon-popup-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 16px 20px 10px;

    border-bottom: 1px solid #ddd;
}

.coupon-popup-header h2 {
    margin: 0;

    color: #272727;

    font-size: 21px;

    font-weight: 700;
}

.coupon-close {
    width: 20px;
    height: 20px;

    padding: 0;

    border: 2px solid #222;

    border-radius: 50%;

    background: #fff;

    color: #222;

    font-size: 17px;

    line-height: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;
}

/* =========================================
   BODY
========================================= */

.coupon-popup-body {
    padding: 16px 20px 24px;
}

.coupon-popup-body label {
    display: block;

    margin-bottom: 7px;

    color: #555;

    font-size: 14px;

    font-weight: 500;
}

/* =========================================
   INPUT
========================================= */

.coupon-input {
    width: 100%;

    height: 46px;

    padding: 0 14px;

    border: 1px solid #c9cdd3;

    border-radius: 10px;

    outline: none;

    font-size: 14px;

    color: #222;
}

.coupon-input:focus {
    border-color: #0d6efd;
}

.coupon-input::placeholder {
    color: #999;
}

/* =========================================
   APPLY COUPON
========================================= */

.apply-coupon-btn {
    width: 100%;

    height: 44px;

    margin-top: 31px;

    border: 0;

    border-radius: 25px;

    background: #0875df;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;
}

.apply-coupon-btn:hover {
    background: #0668c9;
}

/* =========================================
   SKIP PAYMENT
========================================= */

.skip-payment-btn {
    width: 100%;

    height: 44px;

    margin-top: 9px;

    border: 2px solid #0875df;

    border-radius: 25px;

    background: #fff;

    color: #222;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;
}

.skip-payment-btn:hover {
    background: #f3f8ff;
}

/* =========================================================
   REGISTRATION SECTION
========================================================= */

.registration-section {
    min-height: 100vh;
    padding: 20px 0 40px;
}

/* =========================================================
   REGISTRATION ROW
   DESKTOP
========================================================= */

.registration-section .row {
    align-items: flex-start;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.left-content {
    max-width: 700px;
}

.left-content h1 {
    font-size: 27px;
    font-weight: 700;
    color: #202b3c;
    line-height: 1.25;
    margin-bottom: 30px;
}

.left-content h1 span {
    display: block;
}

/* =========================================================
   INFORMATION LIST
========================================================= */

.info-list {
    margin-bottom: 55px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

/* Information Icon */

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;

    border-radius: 50%;

    background: #1761a8;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 16px;
}

/* Information Text */

.info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555f6f;
}

/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-section {
    margin-top: 20px;
}

.why-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 10px;
}

/* =========================================================
   FEATURE BOX
========================================================= */

.feature-box {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #edf0f4;

    border-radius: 16px;

    transition: all 0.3s ease;

    cursor: pointer;
}

/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease;
}

.feature-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

/* =========================================================
   FEATURE CONTENT
========================================================= */

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;

    color: #1f2d3d;

    margin: 2px 0 7px;
}

.feature-content p {
    font-size: 14px;

    line-height: 1.6;

    color: #667085;

    margin: 0;
}

/* =========================================================
   FEATURE HOVER
========================================================= */

.feature-box:hover {
    transform: translateY(-5px);

    border-color: #d9e8f8;

    box-shadow: 0 12px 30px rgba(23, 97, 168, 0.12);
}

.feature-box:hover .feature-icon {
    transform: scale(1.08);
}

/* =========================================================
   REGISTRATION CARD
========================================================= */

.registration-card {
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 38px 28px 18px;

    margin-top: 28px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   OFFER BADGE
========================================================= */

.offer-badge {
    position: absolute;

    top: 12px;
    left: -8px;

    background: #f36b10;

    color: #fff;

    font-size: 9px;
    font-weight: 700;

    padding: 6px 15px;

    border-radius: 0 10px 10px 0;
}

/* =========================================================
   REGISTRATION CARD TITLE
========================================================= */

.registration-card h3 {
    font-size: 16px;

    font-weight: 700;

    color: #202b3c;

    margin-bottom: 30px;
}

/* =========================================================
   FORM PROGRESS
========================================================= */

.progress-wrapper {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 12px;
}

.progress {
    height: 4px;

    flex: 1;

    background: #d9e5e3;
}

.progress-bar {
    background: #16836d;
}

.progress-wrapper span {
    font-size: 12px;

    font-weight: 600;
}

/* =========================================================
   FORM ELEMENTS
========================================================= */

.registration-card label {
    font-size: 12px;

    color: #4a5568;

    margin-bottom: 6px;
}

/* Input */

.registration-card .form-control {
    height: 38px;

    border-radius: 12px;

    border: 1px solid #bfc5cc;

    font-size: 12px;

    padding: 0 14px;
}

/* Input Focus */

.registration-card .form-control:focus {
    box-shadow: none;

    border-color: #1761a8;
}

/* =========================================================
   ALREADY STUDENT
========================================================= */

.already-student {
    font-size: 10px;

    line-height: 1.5;

    color: #687080;

    margin-bottom: 18px;
}

.already-student i {
    margin-right: 5px;
}

/* =========================================================
   REGISTER BUTTON
========================================================= */

.register-btn {
    width: 100%;

    height: 38px;

    border: none;

    border-radius: 25px;

    background: #d5d8dc;

    color: #69717d;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.register-btn:hover {
    background: #1761a8;

    color: #fff;
}

/* Register button active state */
.register-btn.active {
    background: #1761a8;
    color: #fff;
    cursor: pointer;
}

/* Only active button should have hover effect */
.register-btn.active:hover {
    background: #1761a8;
    color: #fff;
}

/* =========================================================
   TERMS
========================================================= */

.terms {
    text-align: center;

    margin: 14px 0 0;

    font-size: 9px;

    color: #777;
}

.terms a {
    color: #1761a8;

    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* =========================================================
   =========================================================
   TABLET
   MAX WIDTH 991px
   =========================================================
========================================================= */

@media (max-width: 991px) {
    /*
     * IMPORTANT:
     * Desktop me:
     *
     * LEFT CONTENT | FORM
     *
     * Tablet me:
     *
     * FORM
     * CONTENT
     *
     * Isliye form ko order 1 diya hai.
     */

    .registration-section .row {
        display: flex;

        flex-direction: column;

        width: 100%;
    }

    /* =====================================================
       REGISTRATION FORM FIRST
    ===================================================== */

    .registration-section .row > .col-lg-4 {
        order: 1;

        width: 100%;

        max-width: 100%;

        flex: 0 0 100%;
    }

    /* =====================================================
       LEFT CONTENT SECOND
    ===================================================== */

    .registration-section .row > .col-lg-6 {
        order: 2;

        width: 100%;

        max-width: 100%;

        flex: 0 0 100%;
    }

    /* =====================================================
       REGISTRATION CARD
    ===================================================== */

    .registration-card {
        width: 100%;

        max-width: 100%;

        margin-top: 0;

        margin-bottom: 30px;
    }

    /* =====================================================
       LEFT CONTENT
    ===================================================== */

    .left-content {
        max-width: 100%;
    }

    /* =====================================================
       FEATURE BOX
    ===================================================== */

    .feature-box {
        padding: 16px;

        gap: 13px;
    }

    .feature-icon {
        width: 58px;

        height: 58px;

        min-width: 58px;
    }
}

/* =========================================================
   MOBILE
   MAX WIDTH 768px
========================================================= */

@media (max-width: 768px) {
    /* Registration Section */

    .registration-section {
        padding: 30px 15px;
    }

    /*
     * Keep form FIRST
     */

    .registration-section .row {
        display: flex;

        flex-direction: column;
    }

    /* FORM */

    .registration-section .row > .col-lg-4 {
        order: 1;

        width: 100%;

        max-width: 100%;

        flex: 0 0 100%;
    }

    /* CONTENT */

    .registration-section .row > .col-lg-6 {
        order: 2;

        width: 100%;

        max-width: 100%;

        flex: 0 0 100%;
    }

    /* =====================================================
       FORM CARD
    ===================================================== */

    .registration-card {
        width: 100%;

        margin-top: 0;

        margin-bottom: 30px;

        padding: 35px 20px 18px;

        border-radius: 18px;
    }

    /* =====================================================
       MAIN HEADING
    ===================================================== */

    .left-content h1 {
        font-size: 23px;
    }

    /* =====================================================
       INFORMATION LIST
    ===================================================== */

    .info-list {
        margin-bottom: 30px;
    }

    /* =====================================================
       WHY CHOOSE
    ===================================================== */

    .why-section h2 {
        font-size: 24px;
    }

    /* =====================================================
       FEATURE BOX
    ===================================================== */

    .feature-box {
        padding: 16px;

        gap: 14px;
    }

    .feature-icon {
        width: 55px;

        height: 55px;

        min-width: 55px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

    /* =====================================================
       SLIDER
    ===================================================== */

    .slider-img {
        aspect-ratio: 1920 / 600;

        object-fit: cover;
    }
}

/* =========================================================
   SMALL MOBILE
   MAX WIDTH 480px
========================================================= */

@media (max-width: 480px) {
    .left-content h1 {
        font-size: 21px;
    }

    .registration-card {
        padding: 35px 20px 18px;

        border-radius: 18px;
    }

    .feature-box {
        margin-bottom: 20px;
    }
}
