* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

/*==================================
            NAVBAR
==================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 1000;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 130px;
    height: auto;
    display: block;
    margin-top: 15px;
}

/* Navigation */

.navbar-items {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    transition: .3s;
}

.navbar-nav li a:hover {
    color: #3b82f6;
}

/* Menu Button */

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-icon {
    font-size: 12px;
    transition: .3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    margin-top: 12px;
    list-style: none;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: .3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 22px;
    color: #222 !important;
    font-size: 15px;
    transition: .3s;
}

.dropdown-menu li a:hover {
    background: #f3f7ff;
    color: #2563eb !important;
}

/* LAPTOP */
@media (min-width:769px) and (max-width:1024px) {

    .header {
        height: 65px;
        padding: 0 40px;
    }

    .navbar-brand img {
        width: 115px;
    }

    .navbar-nav {
        gap: 22px;
    }

    .navbar-nav li a {
        font-size: 15px;
    }
}

/* MOBILE & TABLET */
@media (max-width:768px) {

    .header {
        height: 60px;
        padding: 0 20px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .menu-toggle {
        display: block;
        z-index: 1101;
        cursor: pointer;
    }

    .navbar-items {
        position: fixed;
        top: 60px;
        left: 0;

        width: 100%;
        height: calc(100vh - 60px);

        background: #000;

        display: flex;
        justify-content: center;
        /* Horizontal center */
        align-items: center;
        /* Vertical center */

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        transition: .35s ease;

        z-index: 1100;
    }

    .navbar-items.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;

        width: 100%;
        padding: 0;
        margin: 0;
    }

    .navbar-nav li {
        width: 100%;
        text-align: center;
    }

    .navbar-nav li a {
        display: block;
        width: 100%;
        padding: 12px 20px;

        font-size: 20px;
        font-weight: 700;

        text-align: center;
    }

    /* Mobile Dropdown */

    .dropdown {
        width: 100%;
    }

    .dropdown>a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .dropdown-menu {
        position: static;
        display: none;

        width: 100%;

        background: #111;
        border-radius: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        padding: 10px 0;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #fff !important;
        text-align: center;
        font-size: 17px;
        padding: 12px 20px;
        background: #111;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown:hover .dropdown-icon {
        transform: none;
    }
}

/* ===========================
   HERO
=========================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 600px;

    padding: 90px 80px 40px;

    overflow: hidden;
    box-sizing: border-box;
    gap: 60px;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
    font-family: 'Nunito', sans-serif;
}

.hero-line {
    width: 100%;
    max-width: 550px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
    margin: 24px 0;
}

.hero-left h3 {
    font-size: 22px;
    color: #555;
    font-family: 'Basis Grotesque Pro', sans-serif;
}

.hero-left p {
    font-size: 22px;
    line-height: 1.6;
    color: #666;
    margin-top: 18px;
    font-family: 'Basis Grotesque Pro', sans-serif;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.hero-buttons button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img,
.hero-right video {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

.arrow-icon {
    height: 90px;
    width: auto;
}

/* TABLET / SMALL LAPTOP */

@media (min-width:769px) and (max-width:1024px) {
    .hero {
        padding: 90px 40px 40px;
        gap: 35px;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left h3 {
        font-size: 20px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .hero-line {
        max-width: 100%;
    }

    .hero-buttons button {
        padding: 12px 26px;
    }

    .hero-right img,
    .hero-right video {
        max-width: 420px;
    }

    .arrow-icon {
        height: 70px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 90px 20px 50px;
        gap: 40px;
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        order: 1;
    }

    .hero-right {
        width: 100%;
        order: 2;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-left h3 {
        font-size: 18px;
        margin-top: 15px;
    }

    .hero-left p {
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-line {
        width: 100%;
        max-width: 260px;
        margin: 20px auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
        max-width: 260px;
    }

    .hero-right img,
    .hero-right video {
        width: 100%;
        max-width: 350px;
    }

    .arrow-icon {
        height: 60px;
    }
}

/* ===========================
   AFTER BANNER
=========================== */

.after_banner {
    width: 100%;
    padding: 30px 0;
    box-sizing: border-box;
}

.inner_after_banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #edf3fa;
    border-radius: 16px;
}

.info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
}

.info-box h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
}

.info-box span {
    font-size: 16px;
    color: #666;
    margin-top: 6px;
}

/* TABLET */

@media (min-width:769px) and (max-width:1024px) {
    .inner_after_banner {
        padding: 0 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .info-box {
        padding: 35px 20px;
    }

    .info-box h2 {
        font-size: 30px;
    }

    .info-box p {
        font-size: 17px;
    }

    .info-box span {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .after_banner {
        padding: 20px 0 40px;
    }

    .inner_after_banner {
        width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 28px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .info-box:last-child {
        border-bottom: none;
    }

    .info-box h2 {
        font-size: 30px;
    }

    .info-box p {
        font-size: 17px;
        line-height: 1.5;
    }

    .info-box span {
        font-size: 15px;
    }
}

/* ===========================
   PROGRAM HIGHLIGHTS
=========================== */
.programHighlights {
    width: 100%;
    min-height: 850px;
    margin-top: 62px;
    background: url("logo/semiconductor-integrated-circuit.webp") center/cover no-repeat;
    padding: 80px 80px;
    box-sizing: border-box;
}

.program-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.program-left {
    flex: 2;
    min-width: 0;
}

.program-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.program-left h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.title-line {
    width: 60px;
    height: 5px;
    background: #fff;
    margin: 25px 0 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background: rgba(6, 16, 41, .75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    color: #fff;
    min-height: 210px;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}

.news-card p span {
    color: #14A2F2;
    font-weight: 600;
}

.news-card img {
    width: 170px;
    margin-top: 20px;
}

.form-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.top-badge {

    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #eb6200;
    color: #fff;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 15px;
    min-width: 300px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.form-box h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 25px;
    color: #111;
    font-family: 'Nunito', sans-serif;
}

.form-box input,
.form-box select {
    width: 100%;
    height: 48px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px;
}

.form-box button {
    width: 100%;
    height: 50px;
    margin-top: 25px;
    border: none;
    border-radius: 8px;
    background: #00b050;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* TABLET */
@media (min-width:769px) and (max-width:1024px) {

    .programHighlights {
        padding: 70px 40px;
        min-height: auto;
    }

    .program-container {
        flex-direction: column;
        gap: 50px;
    }

    .program-left,
    .program-right {
        width: 100%;
    }

    .program-right {
        justify-content: center;
    }

    .program-left h2 {
        font-size: 42px;
        text-align: center;
    }

    .title-line {
        margin: 20px auto 35px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card {
        min-height: auto;
        font-size: 17px;
    }

    .news-card img {
        width: 150px;
    }

    .form-box {
        max-width: 500px;
        margin: auto;
    }

    .top-badge {
        min-width: 260px;
    }
}

/* MOBILE */
@media (max-width:768px) {

    .programHighlights {
        min-height: auto;
        margin-top: 40px;
        padding: 50px 20px;
    }

    .program-container {
        flex-direction: column;
        gap: 40px;
    }

    .program-left,
    .program-right {
        width: 100%;
    }

    .program-right {
        justify-content: center;
    }

    .program-left h2 {
        font-size: 34px;
        text-align: center;
    }

    .title-line {
        margin: 20px auto 35px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news-card {
        min-height: auto;
        padding: 24px;
        font-size: 16px;
        line-height: 1.7;
    }

    .news-card img {
        width: 140px;
        display: block;
        margin: 18px auto 0;
    }

    .form-box {
        width: 100%;
        max-width: 360px;
        margin: auto;
        padding: 30px 22px 25px;
    }

    .top-badge {
        width: 90%;
        min-width: unset;
        font-size: 13px;
        padding: 8px 12px;
    }

    .form-box h3 {
        font-size: 22px;
    }

    .form-box input,
    .form-box select {
        height: 46px;
        font-size: 15px;
    }

    .form-box button {
        height: 48px;
        font-size: 16px;
    }
}

/*==========================
    CAREER SECTION
===========================*/

.career-section {
    width: 100%;
    padding: 100px 80px;
    box-sizing: border-box;
}

.career-container {
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 60px;
}

.career-left,
.career-right {
    flex: 1;
    min-width: 0;
}

/* LEFT */

.career-left h2 {
    color: #1f2937;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.career-line {
    width: 70px;
    height: 5px;
    background: #f97316;
    border-radius: 50px;
    margin: 25px 0 45px;
}

/* IMAGE */

.career-image {
    width: 100%;
}

.career-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* RIGHT */

.career-right h3 {
    color: #1f2937;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

/* TAGS */

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.career-tags span {
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

/* Tag Colors */

.career-tags span:nth-child(4n+1) {
    background: #ffe2e7;
}

.career-tags span:nth-child(4n+2) {
    background: #fff2d8;
}

.career-tags span:nth-child(4n+3) {
    background: #dff7ef;
}

.career-tags span:nth-child(4n) {
    background: #ebe3ff;
}

/*==================================
        TABLET
==================================*/
@media (min-width:769px) and (max-width:1024px) {
    .career-section {
        padding: 80px 40px;
    }

    .career-container {
        flex-direction: column;
        gap: 50px;
    }

    .career-left,
    .career-right {
        width: 100%;
    }

    .career-left h2 {
        font-size: 38px;
        text-align: center;
    }

    .career-line {
        margin: 20px auto 35px;
    }

    .career-right h3 {
        font-size: 30px;
        text-align: center;
    }

    .career-tags {
        justify-content: center;
    }
}

/*==================================
        MOBILE
==================================*/

@media (max-width:768px) {
    .career-section {
        padding: 60px 20px;
    }

    .career-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .career-left,
    .career-right {
        width: 100%;
    }

    .career-left h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }

    .career-line {
        width: 60px;
        margin: 20px auto 35px;
    }

    .career-image img {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    }

    .career-right h3 {
        font-size: 26px;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .career-tags {
        justify-content: center;
        gap: 12px;
    }

    .career-tags span {
        padding: 10px 18px;
        font-size: 14px;
        text-align: center;
    }
}

/* ACADEMIC SECTION */
.academic-section {
    position: relative;
    width: 100%;
    min-height: 1000px;
    padding: 100px 80px;
    box-sizing: border-box;
    /*
       WHITE GRADIENT + BACKGROUND IMAGE

       The left side stays light for readable text.
       The image remains clearly visible on the right.
    */
    background-image:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.96) 30%,
            rgba(255, 255, 255, 0.88) 45%,
            rgba(255, 255, 255, 0.55) 58%,
            rgba(255, 255, 255, 0.15) 72%,
            rgba(255, 255, 255, 0) 85%),
        url("logo/about-iise.png");
    background-repeat: no-repeat;
    background-position:
        center,
        center bottom;
    background-size:
        100% 100%,
        100% auto;
    background-color: #ffffff;
}


/* CONTAINER */
.academic-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}


/* LEFT CONTENT */
.academic-left {
    flex: 0 1 760px;
    width: 100%;
    min-width: 0;
    /*
       Slight white background gives an extra
       layer of readability without looking heavy.
    */
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-sizing: border-box;
}


/* HEADING */
.academic-left h2 {
    margin: 0;
    color: #17375e;
    font-family: 'Nunito', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
}

/* ORANGE LINE */
.academic-line {
    width: 70px;
    height: 5px;
    margin: 20px 0 30px;
    background: #f57c00;
    border-radius: 50px;
}

/* PARAGRAPH */
.academic-left p {
    max-width: 700px;
    margin: 0 0 22px;
    color: #172033;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

/* LINKS */
.academic-left p span {
    color: #f57c00;
    font-weight: 700;
    word-break: break-word;
}


/* RIGHT SIDE */
.academic-right {
    flex: 0 1 500px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 0;
}


/* RANKING IMAGES */
.academic-right img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.academic-right img:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16);
}


/* LARGE DESKTOP */
@media (min-width: 1400px) {

    .academic-container {
        max-width: 1450px;
    }

    .academic-left {
        flex-basis: 780px;
    }

    .academic-right {
        max-width: 520px;
    }
}

/* LAPTOP */
@media (max-width: 1200px) {
    .academic-section {
        min-height: 900px;
        padding: 90px 50px;
        background-image:
            linear-gradient(90deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(255, 255, 255, 0.94) 38%,
                rgba(255, 255, 255, 0.70) 55%,
                rgba(255, 255, 255, 0.20) 75%,
                rgba(255, 255, 255, 0) 90%),
            url("logo/about-iise.png");
    }

    .academic-container {
        gap: 40px;
    }

    .academic-left {
        flex-basis: 650px;
        padding: 25px;
    }

    .academic-left h2 {
        font-size: 40px;
    }

    .academic-left p {
        font-size: 17px;
        line-height: 1.7;
    }

    .academic-right {
        max-width: 400px;
    }
}


/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
    .academic-section {
        min-height: auto;
        padding: 80px 40px;
        /*
           On tablet, remove the strong side fade.
           Content gets its own readable area.
        */
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.90),
                rgba(255, 255, 255, 0.90)),
            url("logo/about-iise.png");
        background-size:
            100% 100%,
            cover;
        background-position:
            center,
            center;
    }

    .academic-container {
        flex-direction: column;
        align-items: center;
        gap: 45px;
    }

    .academic-left {
        width: 100%;
        max-width: 850px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.90);
    }

    .academic-left h2 {
        font-size: 40px;
        text-align: center;
    }

    .academic-line {
        margin: 20px auto 30px;
    }

    .academic-left p {
        max-width: none;
        font-size: 18px;
        text-align: left;
    }

    .academic-right {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .academic-section {
        min-height: auto;
        padding: 60px 20px 90px;
        /*
           On mobile the image becomes a background
           with a strong white overlay.
        */
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.91),
                rgba(255, 255, 255, 0.91)),
            url("logo/about-iise.png");
        background-size:
            100% 100%,
            cover;
        background-position:
            center,
            center;
    }

    .academic-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .academic-left,
    .academic-right {
        width: 100%;
    }

    .academic-left {
        max-width: none;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.90);
        border-radius: 16px;
    }

    .academic-left h2 {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }

    .academic-line {
        width: 60px;
        margin: 20px auto 30px;
    }

    .academic-left p {
        max-width: none;
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
        margin-bottom: 20px;
    }

    .academic-right {
        gap: 18px;
        max-width: 600px;
    }

    .academic-right img {
        width: 100%;
        border-radius: 12px;
    }
}

/* SMALL MOBILE */
@media (max-width: 425px) {
    .academic-section {
        padding: 50px 15px 70px;
    }

    .academic-container {
        gap: 30px;
    }

    .academic-left {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .academic-left h2 {
        font-size: 29px;
    }

    .academic-line {
        width: 55px;
        height: 4px;
        margin: 18px auto 25px;
    }

    .academic-left p {
        font-size: 15px;
        line-height: 1.75;
    }

    .academic-right {
        gap: 15px;
    }

    .academic-right img {
        border-radius: 10px;
    }
}

/*==========================
    CURRICULUM SECTION
===========================*/
.curriculum {
    width: 100%;
    background: #fff;
    padding: 100px 0;
}

.curriculum-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    box-sizing: border-box;
}

/* LEFT */
.curriculum-left h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.curriculum-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 35px;
    font-family: 'Nunito', sans-serif;
}

.curriculum-left img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* RIGHT */
.curriculum-right {
    width: 100%;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #2563eb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #0f5bd8;
    color: #fff;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
}

.badge-divider {
    opacity: .7;
}

/* ACCORDION */
.accordion {
    width: 100%;
    margin-top: 15px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    padding: 18px 0;
}

.accordion-header span:first-child {
    font-size: 18px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.accordion-header strong {
    color: #2563eb;
}

.icon {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #2563eb;
    font-size: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding-bottom: 30px;
}

.accordion-content h4 {
    font-size: 16px;
    margin-top: 15px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.module-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 8px;
}

/* LISTS */
.topic-list,
.outcome-list {
    list-style: none;
    padding: 0;
}

.topic-list li,
.outcome-list li {
    position: relative;
    padding-left: 28px;
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    font-family: 'Nunito', sans-serif;
}

.topic-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.outcome-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* TABLET */
@media (min-width:769px) and (max-width:1024px) {
    .curriculum {
        padding: 80px 0;
    }

    .curriculum-container {
        padding: 0 40px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .curriculum-left h2 {
        font-size: 40px;
        text-align: center;
    }

    .curriculum-left p {
        text-align: center;
        font-size: 18px;
    }

    .curriculum-left img {
        max-width: 700px;
        margin: auto;
    }

    .curriculum-right {
        width: 100%;
    }

    .download-link {
        justify-content: center;
        width: 100%;
    }

    .program-badge {
        display: flex;
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width:768px) {

    .curriculum {
        padding: 60px 0;
    }

    .curriculum-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .curriculum-left h2 {
        font-size: 32px;
        text-align: center;
    }

    .curriculum-left p {
        font-size: 17px;
        line-height: 1.8;
        text-align: justify;
    }

    .curriculum-left img {
        border-radius: 16px;
    }

    .download-link {
        display: flex;
        justify-content: center;
        font-size: 15px;
    }

    .program-badge {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        text-align: center;
    }

    .accordion-header {
        gap: 12px;
        padding: 16px 0;
        align-items: flex-start;
    }

    .accordion-header span:first-child {
        font-size: 16px;
        line-height: 1.5;
    }

    .icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .accordion-content h4 {
        font-size: 15px;
    }

    .topic-list li,
    .outcome-list li {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 24px;
    }
}

/* ===========================================
   LEARNING PLATFORM SECTION
=========================================== */
.learning-platform {
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 80px 80px;
    box-sizing: border-box;
}

.platform-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 25px;
}

.platform-logo {
    width: 150px;
    height: auto;
}

.platform-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin: 0;
}

.platform-content p {
    max-width: 700px;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.platform-content strong {
    color: #2563eb;
    font-weight: 800;
}

/* TABLET */
@media (min-width:769px) and (max-width:1024px) {
    .learning-platform {
        min-height: auto;
        padding: 70px 40px;
    }

    .platform-content {
        text-align: center;
    }

    .platform-header {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .platform-logo {
        width: 130px;
    }

    .platform-header h2 {
        font-size: 34px;
    }

    .platform-content p {
        max-width: 100%;
        font-size: 18px;
        margin: auto;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .learning-platform {
        min-height: auto;
        padding: 50px 20px;
        background-image: none;
        background-color: #fff;
    }

    .platform-content {
        text-align: center;
    }

    .platform-header {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .platform-logo {
        width: 110px;
    }

    .platform-header h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .platform-content p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.8;
        text-align: justify;
        margin: 0;
    }
}

/*=========================
      EXPERT FACULTY
=========================*/
.faculty-section {
    width: 100%;
    padding: 90px 0;
    background: #fff;
}

.faculty-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Heading */
.section-title {
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 46px;
    font-family: 'Nunito', sans-serif;
    color: #111827;
    font-weight: 800;
}

.section-title p {
    margin-top: 10px;
    font-size: 19px;
    line-height: 1.7;
    color: #6b7280;
}

/* Card */
.faculty-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.faculty-top {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faculty-top img {
    width: 145px;
    height: 145px;
    border-radius: 14px;
    object-fit: cover;
}

.faculty-badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 12px;
}

.faculty-info h3 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.faculty-achievement {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    line-height: 1.8;
}

.faculty-achievement span {
    color: #3b82f6;
    font-weight: 700;
}

.faculty-designation,
.faculty-company {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.8;
    color: #374151;
}

/*=========================
      Expertise
=========================*/
.faculty-card h4 {
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 26px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tags span {
    background: #eff6ff;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
}

/* List */
.faculty-list {
    margin-top: 35px;
    list-style: none;
    padding: 0;
}

.faculty-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.faculty-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Button */
.faculty-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 36px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: .3s;
}

.faculty-btn:hover {
    background: #1d4ed8;
}

/* TABLET */
@media (min-width:769px) and (max-width:1024px) {
    .faculty-section {
        padding: 80px 0;
    }

    .faculty-container {
        padding: 0 40px;
    }

    .section-title {
        text-align: center;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .section-title p {
        font-size: 18px;
    }

    .faculty-card {
        padding: 35px;
    }

    .faculty-top {
        flex-direction: column;
        text-align: center;
    }

    .faculty-top img {
        width: 135px;
        height: 135px;
    }

    .faculty-info h3 {
        font-size: 32px;
    }

    .faculty-achievement {
        display: block;
        width: 100%;
        text-align: center;
    }

    .faculty-designation,
    .faculty-company {
        text-align: center;
    }

    .faculty-card h4 {
        text-align: center;
    }

    .expertise-tags {
        justify-content: center;
    }

    .faculty-btn {
        display: block;
        width: 260px;
        margin: 35px auto 0;
        text-align: center;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .faculty-section {
        padding: 60px 0;
    }

    .faculty-container {
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 17px;
        line-height: 1.8;
    }

    .faculty-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .faculty-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .faculty-top img {
        width: 120px;
        height: 120px;
    }

    .faculty-badge {
        font-size: 13px;
    }

    .faculty-info h3 {
        font-size: 28px;
    }

    .faculty-achievement {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px;
    }

    .faculty-designation,
    .faculty-company {
        text-align: center;
        font-size: 17px;
    }

    .faculty-card h4 {
        text-align: center;
        font-size: 22px;
    }

    .expertise-tags {
        justify-content: center;
    }

    .expertise-tags span {
        font-size: 14px;
        padding: 9px 16px;
    }

    .faculty-list {
        margin-top: 28px;
    }

    .faculty-list li {
        font-size: 16px;
        line-height: 1.8;
        padding-left: 26px;
    }

    .faculty-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

/*==========================
        TESTIMONIALS
===========================*/
.testimonial-section {
    width: 100%;
    padding: 90px 0;
    background: #fff;
}

.testimonial-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Heading */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 46px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #6b7280;
}

/* Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, .15);
}

.testimonial-card h3 {
    font-size: 17px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

/* Quote */
.quote-icon {
    position: absolute;
    top: -18px;
    left: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Georgia, serif;
}

/* Content */
.testimonial-text {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.9;
    color: #4b5563;
    min-height: 220px;
    font-family: 'Basis Grotesque Pro', sans-serif;
}

.testimonial-user {
    border-top: 1px solid #e5e7eb;
    padding-top: 22px;
}

.testimonial-user strong {
    display: block;
    font-size: 19px;
    color: #111827;
    margin-bottom: 6px;
}

.testimonial-user span {
    color: #2563eb;
    font-size: 15px;
}

.testimonial-note {
    margin-top: 45px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
}

/* TABLET */
@media (min-width:769px) and (max-width:1024px) {
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-container {
        padding: 0 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 18px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonial-card {
        padding: 35px 28px;
    }

    .testimonial-text {
        min-height: auto;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-container {
        padding: 0 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 17px;
        line-height: 1.8;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .testimonial-card h3 {
        text-align: center;
        font-size: 18px;
        margin-top: 10px;
    }

    .quote-icon {
        width: 48px;
        height: 48px;
        font-size: 40px;
        left: 20px;
        top: -16px;
    }

    .testimonial-text {
        min-height: auto;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

    .testimonial-user {
        margin-top: 20px;
        padding-top: 18px;
        text-align: center;
    }

    .testimonial-user strong {
        font-size: 18px;
    }

    .testimonial-user span {
        font-size: 14px;
    }

    .testimonial-note {
        margin-top: 35px;
        font-size: 14px;
        line-height: 1.7;
    }
}

/*==================================
    IDEAL PROGRAMME
==================================*/

.ideal-program {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.ideal-container {
    width: min(1400px, calc(100% - 240px));
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/* LEFT */

.ideal-left {
    flex: 1;
}

.ideal-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 35px;
    line-height: 1.25;
    font-family: 'Nunito', sans-serif;
}

.ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    font-family: 'Nunito', sans-serif;
}

.ideal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 5px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;
    color: #fff;

    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.eligibility-box {
    margin-top: 30px;
    padding: 24px;
    background: #f8fafc;
    border-left: 5px solid #2563eb;
    border-radius: 18px;
}

.eligibility-box h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
}

.eligibility-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    font-family: 'Nunito', sans-serif;
}

.eligibility-box strong {
    color: #111827;
}

/* RIGHT */

.ideal-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ideal-right img {
    width: 100%;
    max-width: 620px;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

/*==================================
        TABLET (769px-1024px)
==================================*/

@media (max-width:1024px) {

    .ideal-container {
        width: calc(100% - 80px);
        gap: 40px;
    }

    .ideal-left h2 {
        font-size: 34px;
    }

    .ideal-list li {
        font-size: 17px;
    }

}

/*==================================
        MOBILE (768px)
==================================*/

@media (max-width:768px) {

    .ideal-program {
        padding: 60px 0;
    }

    .ideal-container {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .ideal-left,
    .ideal-right {
        width: 100%;
    }

    .ideal-left {
        order: 1;
    }

    .ideal-right {
        order: 2;
        justify-content: center;
    }

    .ideal-left h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .ideal-list li {
        padding-left: 34px;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .ideal-list li::before {
        width: 22px;
        height: 22px;
        top: 4px;
    }

    .eligibility-box {
        padding: 20px;
        border-radius: 16px;
    }

    .eligibility-box h3 {
        font-size: 22px;
        text-align: center;
    }

    .eligibility-box p {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

    .ideal-right img {
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
    }

    .ideal-mobile-hide {
        display: none;
    }

}

/*==============================
    HIGH IMPACT LEARNING
==============================*/
.learning-section {
    width: 100%;
    padding: 90px 0;
    background: #fff;
}

.learning-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    box-sizing: border-box;
}

/* LEFT */
.learning-left {
    width: 58%;
}

.learning-left h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
    line-height: 1.25;
    font-family: 'Nunito', sans-serif;
}

.learning-text {
    font-size: 19px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

.learning-cards {
    display: flex;
    gap: 25px;
}

.program-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, .15);
}

.program-card h3 {
    color: #2563eb;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.program-card hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 22px 0;
}

.program-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    font-family: 'Nunito', sans-serif;
}

.program-card ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.program-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #4b5563;
    font-family: 'Nunito', sans-serif;
}

.program-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.program-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 12px;
    transition: .3s;
}

.program-btn:hover {
    background: #1d4ed8;
}

/* RIGHT */
.learning-right {
    width: 42%;
    margin-top: 97px;
}

.learning-right h4 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.video-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.video-wrapper iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

/* TABLET */
@media (max-width:1024px) {
    .learning-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 50px;
    }

    .learning-left,
    .learning-right {
        width: 100%;
    }

    .learning-right {
        margin-top: 0;
    }

    .learning-left h2 {
        font-size: 38px;
    }

    .learning-text {
        font-size: 18px;
    }

    .learning-cards {
        flex-direction: column;
    }

    .video-wrapper iframe {
        height: 420px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .learning-section {
        padding: 60px 0;
    }

    .learning-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .learning-left,
    .learning-right {
        width: 100%;
    }

    .learning-left h2 {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }

    .learning-text {
        font-size: 17px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 30px;
    }

    .learning-cards {
        flex-direction: column;
        gap: 25px;
    }

    .program-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .program-card h3 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 18px;
    }

    .program-card p {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

    .program-card ul {
        margin: 20px 0;
    }

    .program-card li {
        font-size: 16px;
        line-height: 1.8;
        padding-left: 24px;
    }

    .program-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        margin-top: 20px;
        box-sizing: border-box;
    }

    .learning-right {
        margin-top: 0;
    }

    .learning-right h4 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    .video-wrapper iframe {
        height: 220px;
    }
}

/*==============================
    RETURN ON INVESTMENT
==============================*/
.investment {
    width: 100%;
    background: #fff;
    padding: 80px 0;
}

.investment-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    box-sizing: border-box;
}

/* LEFT */
.investment-left {
    width: 58%;
}

.investment-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 45px;
    font-family: 'Nunito', sans-serif;
}

.investment-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.investment-item img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.investment-item h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.investment-item p {
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.investment-note {
    margin-top: 50px;
    background: #eff6ff;
    border-left: 5px solid #2563eb;
    padding: 28px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
    font-family: 'Nunito', sans-serif;
}

/* RIGHT */
.investment-right {
    width: 42%;
    display: flex;
    justify-content: center;
}

.investment-right img {
    width: 100%;
    max-width: 520x;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    transition: .35s;
}

.investment-right img:hover {
    transform: translateY(-8px);
}

/* TABLET */
@media (max-width:1024px) {
    .investment {
        padding: 70px 0;
    }

    .investment-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 50px;
    }

    .investment-left,
    .investment-right {
        width: 100%;
    }

    .investment-left h2 {
        font-size: 38px;
        text-align: center;
    }

    .investment-item h3 {
        font-size: 24px;
    }

    .investment-item p {
        font-size: 18px;
    }

    .investment-note {
        font-size: 17px;
    }

    .investment-right img {
        max-width: 700px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .investment {
        padding: 60px 0;
    }

    .investment-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
    }

    .investment-left,
    .investment-right {
        width: 100%;
    }

    .investment-left h2 {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 35px;
    }

    .investment-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        margin-bottom: 35px;
    }

    .investment-item img {
        width: 60px;
        height: 60px;
    }

    .investment-item h3 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .investment-item p {
        font-size: 16px;
        line-height: 1.8;
    }

    .investment-note {
        margin-top: 30px;
        padding: 20px;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        border-radius: 14px;
    }

    .investment-right {
        justify-content: center;
    }

    .investment-right img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    }

    .investment-right img:hover {
        transform: none;
    }
}

/*============================
    CAREER ACCELERATOR
============================*/

.career-section {
    width: 100%;
    background: #f8fbff;
    padding: 90px 0;
    overflow: hidden;
}

.career-container {
    width: 1200px;
    max-width: calc(100% - 240px);
    margin: 0 auto;
}

/* Heading */

.career-heading {
    margin-bottom: 55px;
}

.career-heading h2 {
    font-size: 44px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.career-heading p {
    font-size: 22px;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

/* Cards */

.career-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.career-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .18);
}

/* Image */

.card-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
    display: block;
}

/* Content */

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.3;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

.card-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/*==================================
        Laptop (1200px)
==================================*/

@media (max-width:1200px) {

    .career-container {
        max-width: calc(100% - 120px);
    }

    .career-cards {
        gap: 28px;
    }

    .card-content {
        padding: 28px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .card-content li {
        font-size: 17px;
    }

}

/*==================================
        Tablet (992px)
==================================*/

@media (max-width:992px) {

    .career-section {
        padding: 70px 0;
    }

    .career-container {
        max-width: calc(100% - 80px);
    }

    .career-heading {
        text-align: center;
    }

    .career-heading h2 {
        font-size: 38px;
    }

    .career-heading p {
        font-size: 18px;
    }

    .career-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/*==================================
        Mobile (768px)
==================================*/

@media (max-width:768px) {

    .career-section {
        padding: 60px 0;
    }

    .career-container {
        width: calc(100% - 40px);
        max-width: 100%;
    }

    .career-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .career-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .career-heading p {
        font-size: 17px;
        line-height: 1.8;
    }

    .career-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .career-card {
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .career-card:hover {
        transform: none;
    }

    .card-image {
        height: 150px;
        padding: 18px;
    }

    .card-content {
        padding: 24px 20px;
    }

    .card-content h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 18px;
    }

    .card-content li {
        font-size: 16px;
        line-height: 1.8;
        padding-left: 24px;
        margin-bottom: 14px;
    }

    .card-content li::before {
        font-size: 14px;
    }

}

/* PROGRAMME FEE SECTION */
.programme-fee-section {
    position: relative;
    width: 100%;
    padding: 100px 120px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(8, 25, 46, .96) 0%,
            rgba(8, 25, 46, .90) 35%,
            rgba(8, 25, 46, .72) 60%,
            rgba(8, 25, 46, .18) 100%),
        url("logo/fee-bg.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    background-color: #08192e;
}

.programme-fee-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 25, 46, .18),
            rgba(8, 25, 46, 0));
    z-index: 1;
}

.programme-fee-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.programme-fee-content {
    flex: 0 0 62%;
}

.programme-fee-right {
    flex: 0 0 30%;
}

.programme-fee-content h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

/* Card */
.programme-fee-card {
    background: rgba(9, 20, 37, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px;
    transition: .35s;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .30);
}

.programme-fee-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .40);
}

.application-fee {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.application-fee h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.programme-fee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.programme-fee-box h4 {
    color: #29a9ff;
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
}

.programme-fee-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.programme-fee-box strong {
    font-weight: 700;
}

.price {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
}

.price span {
    color: #d8e1eb;
}

.price sup {
    font-size: 12px;
}

.programme-fee-box a {
    display: inline-block;
    margin-top: 15px;
    color: #35b4ff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.emi {
    color: #d6dee8 !important;
    font-size: 18px !important;
    margin-top: 10px;
}

.emi strong {
    color: #fff;
}

.programme-fee-note {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/* TABLET */
@media (max-width:1024px) {
    .programme-fee-section {
        padding: 80px 60px;
        background-size: cover;
    }

    .programme-fee-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .programme-fee-content,
    .programme-fee-right {
        width: 100%;
        flex: none;
    }

    .programme-fee-content h2 {
        font-size: 38px;
    }

    .programme-fee-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE (425px) */
@media (max-width:425px) {
    .programme-fee-section {
        width: 100%;
        padding: 60px 20px;
        background:
            linear-gradient(180deg,
                rgba(8, 25, 46, .96),
                rgba(8, 25, 46, .92)),
            url("logo/fee-bg.webp");
        background-position: center top;
        background-size: cover;
    }

    .programme-fee-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .programme-fee-content,
    .programme-fee-right {
        width: 100%;
    }

    .programme-fee-content h2 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .programme-fee-card {
        width: 100%;
        padding: 25px 20px;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .application-fee {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .application-fee h3 {
        font-size: 24px;
    }

    .programme-fee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programme-fee-box {
        text-align: center;
    }

    .programme-fee-box h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .programme-fee-box {
        font-size: 16px;
        line-height: 1.8;
    }

    .price {
        font-size: 24px;
    }

    .programme-fee-box a {
        font-size: 15px;
    }

    .emi {
        font-size: 16px !important;
    }

    .programme-fee-note {
        margin-top: 25px;
        padding-top: 20px;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }

    .programme-fee-card:hover {
        transform: none;
    }
}

/*==================================
        ABOUT TALENTSPRINT
==================================*/
.about-talent {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

/* Heading */

.about-container h2 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
    margin-bottom: 10px;
}

.title-line {
    width: 72px;
    height: 5px;
    background: #1E88FF;
    border-radius: 30px;
    margin-bottom: 35px;
}

/* Logo */

.about-logo {
    margin-bottom: 45px;
}

.about-logo img {
    width: 180px;
    display: block;
}

/* Stats */

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: -35px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.stat h3 {
    font-size: 46px;
    color: #1E88FF;
    font-weight: 800;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
}

.stat span {
    font-size: 18px;
    color: #4B5563;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
}

/* Text */

.about-text {
    margin-bottom: 45px;
}

.about-text p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

/* Swiper */

.awardSwiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 5px 70px;
}

.awardSwiper .swiper-wrapper {
    align-items: stretch;
}

.awardSwiper .swiper-slide {
    display: flex;
    height: auto;
}

.award-card {
    width: 100%;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    min-height: 350px;
}

.award-card img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 25px;
}

.award-card h4 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 14px;
    font-family: 'Nunito', sans-serif;
}

.award-card p {
    font-size: 17px;
    color: #6B7280;
    line-height: 1.7;
}

/* Navigation */

.awardSwiper .swiper-button-next,
.awardSwiper .swiper-button-prev {

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

}

.awardSwiper .swiper-button-next::after,
.awardSwiper .swiper-button-prev::after {

    font-size: 14px;
    color: #1E88FF;

}

.awardSwiper .swiper-button-next:hover,
.awardSwiper .swiper-button-prev:hover {

    background: #1E88FF;

}

.awardSwiper .swiper-button-next:hover::after,
.awardSwiper .swiper-button-prev:hover::after {

    color: #fff;

}

.awardSwiper .swiper-pagination-bullet {

    width: 8px;
    height: 8px;
    background: #cfd8e3;
    opacity: 1;

}

.awardSwiper .swiper-pagination-bullet-active {

    width: 28px;
    border-radius: 20px;
    background: #1E88FF;

}

/* LAPTOP & TABLET */
@media (min-width:769px) and (max-width:1024px) {
    .about-container {
        padding: 0 30px;
    }

    .about-container h2 {
        font-size: 38px;
    }

    .about-logo img {
        width: 160px;
    }

    .about-stats {
        gap: 20px;
        margin-top: 0;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 45%;
    }

    .stat h3 {
        font-size: 38px;
    }

    .stat span {
        font-size: 17px;
    }

    .about-text p {
        font-size: 18px;
    }

    .award-card {
        min-height: 320px;
    }

    .award-card img {
        width: 150px;
        height: 100px;
    }

    .award-card h4 {
        font-size: 20px;
    }

    .award-card p {
        font-size: 16px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .about-talent {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-container h2 {
        font-size: 32px;
        text-align: center;
    }

    .title-line {
        margin: 0 auto 25px;
    }

    .about-logo {
        margin-bottom: 35px;
    }

    .about-logo img {
        width: 150px;
        margin: auto;
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 0 35px;
    }

    .stat {
        flex-direction: column;
        text-align: center;
    }

    .stat h3 {
        font-size: 36px;
    }

    .stat span {
        font-size: 16px;
    }

    .about-text p {
        font-size: 16px;
        text-align: justify;
    }

    .awardSwiper {
        padding: 10px 0 55px;
    }

    .award-card {
        min-height: auto;
        padding: 25px 18px;
    }

    .award-card img {
        width: 130px;
        height: 90px;
    }

    .award-card h4 {
        font-size: 20px;
    }

    .award-card p {
        font-size: 15px;
    }

    .awardSwiper .swiper-button-next,
    .awardSwiper .swiper-button-prev {
        display: none;
    }
}

/* FAQ SECTION */
.faq-section {
    width: 100%;
    padding: 90px 120px;
    background: #fff;
}

.faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Heading */
.faq-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 18px;
}

.faq-title-line {
    width: 70px;
    height: 5px;
    background: #1E88FF;
    border-radius: 50px;
    margin: 0 auto 50px;
}

/* FAQ LIST */
.faq-list,
.extra-faqs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.extra-faqs {
    display: none;
    margin-top: 18px;
}

.extra-faqs.show {
    display: flex;
}

/* FAQ CARD */
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: #d9e3ef;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* QUESTION */
.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    flex: 1;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #1f2937;
    font-family: 'Nunito', sans-serif;
}

.faq-question i {
    margin-left: 24px;
    font-size: 18px;
    color: #1E88FF;
    transition: .3s;
    flex-shrink: 0;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height .45s ease, padding .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 28px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #ececec;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 22px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-family: 'Nunito', sans-serif;
}

.faq-answer ul {
    padding-left: 22px;
}

.faq-answer li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-family: 'Nunito', sans-serif;
}

.faq-answer li::marker {
    color: #1E88FF;
}

/* VIEW MORE BUTTON */
.faq-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.faq-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border: none;
    border-radius: 999px;
    background: #1E88FF;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 10px 28px rgba(30, 136, 255, .25);
}

.faq-view-btn:hover {
    background: #0f74e8;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 136, 255, .35);
}

/* MOBILE (425px) */
@media (max-width:425px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-container {
        width: 100%;
        max-width: 100%;
    }

    /* Heading */
    .faq-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .faq-title-line {
        width: 60px;
        margin: 0 auto 35px;
    }

    /* Cards */
    .faq-list,
    .extra-faqs {
        gap: 15px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 18px;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-question span {
        font-size: 16px;
        line-height: 1.6;
    }

    .faq-question i {
        margin-left: 0;
        font-size: 16px;
    }

    /* Answer */
    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }

    .faq-answer ul {
        padding-left: 20px;
    }

    .faq-answer li {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    /* Button */
    .faq-btn-wrapper {
        margin-top: 30px;
    }

    .faq-view-btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 16px;
    }

}

/*==================================
        EXPLORE SECTION
==================================*/

.explore-section {
    width: 100%;
    background: #000;
    padding: 90px 120px 50px;
    box-sizing: border-box;
}

.explore-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
}

.explore-column {
    width: 100%;
    min-width: 0;
}

/*==================================
        COLUMN HEADING
==================================*/

.explore-column h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;

    word-break: break-word;
    overflow-wrap: anywhere;
}

.space-top {
    margin-top: 70px;
}

/*==================================
        CONTENT BLOCK
==================================*/

.explore-block {
    margin-bottom: 30px;
}

.explore-block:last-child {
    margin-bottom: 0;
}

.explore-block h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 6px;

    word-break: break-word;
    overflow-wrap: anywhere;
}

.explore-block p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #A8A8A8;
    margin-bottom: 10px;

    word-break: break-word;
    overflow-wrap: anywhere;
}

.explore-block a {
    display: inline-block;
    position: relative;

    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 700;

    color: #fff;
    text-decoration: none;
    transition: .3s;

    word-break: break-word;
    overflow-wrap: anywhere;
}

.explore-block a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 100%;
    height: 2px;

    background: #fff;
    transition: .3s;
}

.explore-block a:hover {
    color: #1E88FF;
}

.explore-block a:hover::after {
    background: #1E88FF;
}

/*==================================
        TABLET (768px - 1024px)
==================================*/

@media (max-width:1024px) {

    .explore-section {
        padding: 70px 40px;
    }

    .explore-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px;
    }

    .explore-column h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .space-top {
        margin-top: 0;
    }

    .explore-block {
        margin-bottom: 28px;
    }

    .explore-block h3 {
        font-size: 22px;
    }

    .explore-block p {
        font-size: 16px;
        line-height: 1.7;
    }

    .explore-block a {
        font-size: 16px;
    }

}

/*==================================
        MOBILE (425px)
==================================*/

@media (max-width:425px) {

    .explore-section {
        padding: 60px 20px;
    }

    .explore-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .explore-column {
        width: 100%;
    }

    .explore-column h2 {
        font-size: 30px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 28px;
    }

    .space-top {
        margin-top: 0;
    }

    .explore-block {
        margin-bottom: 26px;
        text-align: center;
    }

    .explore-block h3 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .explore-block p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .explore-block a {
        font-size: 15px;
    }

}

/*==================================
            FOOTER
==================================*/

.footer {
    width: 100%;
    background: #111;
    padding: 40px 120px 60px;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 160px;
    height: 46px;
    padding: 0 30px;

    background: #2E74D0;
    color: #fff;

    border-radius: 999px;
    text-decoration: none;

    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 700;

    transition: .3s;
}

.footer-btn:hover {
    background: #1E88FF;
    transform: translateY(-2px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 42px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.2fr;
    gap: 60px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'Nunito', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
    transition: .3s;

    word-break: break-word;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/*=========================
      CONTACT
=========================*/

.footer-contact {
    display: flex;
    flex-direction: column;
}

.reach-title {
    margin-top: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item i {
    color: #1E88FF;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item span {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;

    word-break: break-word;
}

/*=========================
      SOCIAL
=========================*/

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #1b1b1b;

    border: 1px solid rgba(255, 255, 255, .08);

    color: #fff;
    text-decoration: none;
    font-size: 17px;

    transition: .3s;
}

.footer-social a:hover {
    background: #1E88FF;
    border-color: #1E88FF;
    transform: translateY(-3px);
}

.footer small {
    display: block;
    margin-top: 45px;

    text-align: center;

    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/*==================================
        TABLET (1024px)
==================================*/

@media (max-width:1024px) {

    .footer {
        padding: 60px 40px;
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column a {
        font-size: 16px;
    }

    .contact-item span {
        font-size: 15px;
    }

}

/*==================================
        SMALL TABLET (768px)
==================================*/

@media (max-width:768px) {

    .footer {
        padding: 50px 30px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-btn {
        min-width: 180px;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }

    .footer-column h3 {
        font-size: 19px;
    }

}

/*==================================
            MOBILE (425px)
==================================*/

@media (max-width:425px) {

    .footer {
        padding: 50px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 15px;
    }

    .footer-btn {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .footer-column a {
        font-size: 15px;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .contact-item span {
        font-size: 14px;
    }

    .reach-title {
        margin-top: 25px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .footer small {
        margin-top: 35px;
        font-size: 13px;
    }

}
/* CART + WISHLIST */
.cart-nav-link,
.wishlist-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cart-nav-link i,
.wishlist-nav-link i {
    font-size: 20px;
}

.wishlist-nav-link {
    color: inherit;
}

.wishlist-nav-link:hover {
    color: #ef4444;
}