/* ============================================================
   IIM Indore – CHRO Programme | style.css
   Author  : Your Project
   Version : 1.0
   ============================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
    --blue-dark: #003674;
    --blue-mid: #005bab;
    --blue-light: #1a7fd4;
    --blue-pale: #e8f1fb;
    --green: #4caf50;
    --green-dark: #388e3c;
    --gold: #d4a017;
    --text: #1c1c2e;
    --muted: #5a5a72;
    --light: #f6f9fd;
    --white: #ffffff;
    --border: #d0dff0;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================================
   HEADER - Matching PDF exactly
   ============================================================ */

/* Logo navbar */
.navbar.navbar-light.bg-white {
    padding: 12px 0;
    border-bottom: none;
    box-shadow: none;
    background: #fff !important;
}

.navbar.navbar-light.bg-white .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Logo - smaller size matching PDF */
.logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.navbar {
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.top-header {
    background: var(--white);
    border-bottom: 3px solid var(--blue-dark);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 2px 12px rgba(0, 54, 116, 0.12);
}

.top-header .logo-img {
    height: 62px;
    object-fit: contain;
}

/* Responsive logo */
@media (max-width: 767px) {
    .logo {
        height: 50px;
    }

    .navbar.navbar-light.bg-white {
        padding: 8px 0;
    }
}

/* ============================================================
   NAVIGATION - Matching PDF exactly (single line)
   ============================================================ */
.main-nav {
    background: #0a3d6e;
    padding: 0;
}

/* Nav links - smaller padding to fit on one line */
.main-nav .nav-link {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 15px !important;
    white-space: nowrap;
    position: relative;
    background: transparent !important;
    transition: color 0.2s ease;
    letter-spacing: 0.1px;
    margin-left: -1px;
}

/* Hover effect */
.main-nav .nav-link:hover {
    color: #8dc63f !important;
}

/* Active state - green color like PDF */
.main-nav .nav-link.active {
    color: #8dc63f !important;
}

/* Green vertical separators - matching PDF */
.main-nav .nav-item:not(:last-child) .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background-color: #8dc63f;
}

/* Toggler button */
.main-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
}

.main-nav .navbar-toggler-icon {
    filter: invert(1);
}

/* Keep all items on one line */
.main-nav .navbar-nav {
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    gap: 0;
}

.main-nav .nav-item {
    flex-shrink: 0;
}

/* Responsive nav adjustments */
@media (max-width: 1399px) {
    .main-nav .nav-link {
        font-size: 13px;
        padding: 14px 12px !important;
    }
}

@media (max-width: 1199px) {
    .main-nav .nav-link {
        font-size: 12px;
        padding: 12px 10px !important;
    }
}

@media (max-width: 991px) {
    .main-nav .navbar-nav {
        flex-wrap: wrap;
    }

    .main-nav .nav-item:not(:last-child) .nav-link::after {
        display: none;
    }

    .main-nav .nav-link {
        font-size: 14px;
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ============================================================
   HERO SECTION - Matching PDF exactly (no blue overlay)
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    background: url("../assests/images/iim indore cover.jpg") no-repeat center 82%;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 45px 0 0;
    height: 980px;
}

/* Very subtle overlay - PDF shows minimal overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    padding-bottom: 40px;
}

.hero-left {
    padding-right: 20px;
}

/* TITLE */
.hero-title {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* "IIM Indore's" in blue - matching PDF color */
.hero-title .brand {
    color: #1a75bb;
}

/* STAT BADGES - Matching PDF with line breaks */
.stat-badges {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    margin-top: 25px;
    width: 100%;
    max-width: 800px;
}

.stat-badge {
    flex: 1;
    padding: 16px 18px;
    background: transparent;
    box-shadow: none;
    border-right: 1px solid #d1d5db;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.stat-badge:last-child {
    border-right: none;
}

/* Label text - smaller, gray */
.slabel {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 6px;
    text-transform: none;
}

/* Value text - bold, black */
.sval {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.45;
}


/* INTRO TEXT */
.sec-para {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 14px;
    max-width: 95%;
}

/* STAT HIGHLIGHT */
.stat-highlight {
    background: linear-gradient(135deg, #003674 0%, #0b63b6 100%);
    color: #fff;
    border-radius: 16px;
    padding: 22px 26px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 10px 25px rgba(0, 54, 116, 0.35);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}

.stat-source {
    display: block;
    opacity: 0.8;
    font-size: 12px;
    margin-top: 8px;
}

/* ENQUIRY CARD - Matching PDF exactly */
.enq-card {
    width: 100%;
    max-width: 280px;
    background: #f5f7f9;
    border-radius: 8px;
    padding: 18px 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-top: 55px;
}

.enq-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.form-group:last-of-type {
    margin-bottom: 10px;
}

.form-group label {
    display: none;
}

.form-group input {
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 5px 0;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 12px;
}

.form-group input:focus {
    border-bottom: 2px solid #1a75bb;
}

.form-group input:focus::placeholder {
    color: #888;
}

/* Inline form errors – red text under inputs */
.form-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

.form-error:empty {
    display: none;
}

.form-error-general {
    margin-bottom: 8px;
}

#otp-modal-error.form-error {
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px;
    font-size: 8px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #555;
}

.checkbox-group-row {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.checkbox-group .checkbox-error {
    flex-basis: 100%;
    width: 100%;
    margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 1px;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    accent-color: #1a75bb;
}

.checkbox-group label {
    font-weight: 400;
    display: inline;
}

.btn-brochure {
    background: #1a75bb;
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(26, 117, 187, 0.25);
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-brochure:hover {
    background: #155d94;
    box-shadow: 0 5px 15px rgba(26, 117, 187, 0.35);
}

/* Position form card properly on large screens */
@media (min-width: 992px) {
    .hero .col-lg-4 {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 0;
    }
}

/* ============================================================
   HERO RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 991px) {
    .stat-badges {
        width: 97%;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: 40px 0 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .stat-badges {
        flex-wrap: wrap;
    }

    .stat-badge {
        flex: 1 1 50%;
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid #d1d5db;
        padding: 14px 14px;
    }

    .stat-badge:nth-child(odd) {
        border-right: 1px solid #d1d5db;
    }

    .stat-badge:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .enq-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 0;
        padding: 30px 0 0;
    }

    .hero-title {
        font-size: 20px;
        line-height: 1.35;
    }

    .stat-badges {
        flex-direction: column;
    }

    .stat-badge {
        flex: 1 1 100%;
        border-right: none !important;
        border-bottom: 1px solid #d1d5db;
        padding: 12px 16px;
    }

    .stat-badge:last-child {
        border-bottom: none;
    }

    .slabel {
        font-size: 11px;
    }

    .sval {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
    }

    .enq-card {
        padding: 18px 14px;
    }

    .form-group input {
        font-size: 12px;
    }

    .btn-brochure {
        width: 100%;
        text-align: center;
    }
}


/* Green highlight bar – now sits inside .hero at the bottom */
.highlight-section {
    background-color: #8BC34A;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
}

/* Each column styling */
.highlight-column {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

/* Remove border on last column */
.highlight-column:last-child,
.col-lg-4:last-child {
    border-right: none;
}

/* Flex container */
.highlight-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 25px;
    height: 100%;
}

/* Icon styling */
.highlight-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Text styling - override the default */
.highlight-section .highlight-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .highlight-section .row>div {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

    .highlight-section .row>div:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .highlight-section {
        padding: 20px 0;
    }

    .highlight-box {
        padding: 15px 20px;
        justify-content: center;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-section .highlight-text {
        font-size: 14px;
        text-align: left;
    }
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights-strip {
    background: #96BC33;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    color: var(--white);
}

.strip-icon {
    font-size: 2rem;
    color: #90c8ff;
    flex-shrink: 0;
}

.strip-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #000000
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-wrap {
    padding: 62px 0;
}

.section-wrap.alt {
    background: var(--light);
}

.sec-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 6px;
}

.sec-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.sec-rule {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-light), var(--gold));
    border-radius: 2px;
    margin-bottom: 28px;
}

.sec-para {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

/* ============================================================
   STAT HIGHLIGHT BLOCK
   ============================================================ */
.stat-highlight {
    background: var(--blue-dark);
    color: var(--white);
    border-radius: 12px;
    padding: 26px;
    font-size: 15px;
    line-height: 1.75;
    position: relative;
    overflow: hidden;
}

.stat-highlight::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #7ab8f5;
    display: block;
    margin-bottom: 6px;
}

.stat-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: block;
}

/* ============================================================
   WHEN HUMAN CAPITAL BECOMES ENTERPRISE STRATEGY SECTION
   ============================================================ */
.capital-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.capital-container {
    max-width: 1280px;
}

.capital-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.capital-left {
    max-width: 600px;
}

/* RIGHT CONTAINER */
.capital-right {
    position: relative;
    width: 480px;
    height: 550px;
    flex-shrink: 0;
}

/* TOP IMAGE */
.capital-img-top {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.capital-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM FLOATING IMAGE */
.capital-img-bottom {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.capital-img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Typography */
.capital-heading {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1c1c2e;
}

.capital-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4b5563;
}

.capital-highlight {
    font-weight: 600;
    color: #0b63b6;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 25px;
    margin-bottom: 10px;
}

.capital-source {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .capital-content {
        gap: 40px;
    }

    .capital-right {
        width: 400px;
        height: 480px;
    }
}

@media (max-width: 991px) {
    .capital-section {
        padding: 70px 0;
    }

    .capital-content {
        flex-direction: column;
    }

    .capital-left {
        max-width: 100%;
    }

    .capital-right {
        width: 100%;
        height: 420px;
        margin-top: 40px;
        overflow: hidden;
    }

    .capital-img-bottom {
        width: 180px;
        height: 180px;
        bottom: -20px;
        left: 0;
    }
}

@media (max-width: 576px) {
    .capital-section {
        padding: 50px 0;
    }

    .capital-heading {
        font-size: 22px;
    }

    .capital-desc {
        font-size: 14px;
    }

    .capital-highlight {
        font-size: 15px;
    }

    .capital-right {
        height: 280px;
        overflow: hidden;
    }

    .capital-img-bottom {
        width: 120px;
        height: 120px;
        bottom: -10px;
        left: 0;
    }
}

@media (max-width: 400px) {
    .capital-right {
        height: 240px;
    }

    .capital-img-bottom {
        width: 100px;
        height: 100px;
    }
}


/* ============================================================
   WHO SHOULD ENROL
   ============================================================ */
.who-section {
    padding: 80px 0;
    background: #ffffff;
}

.who-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.who-box {
    display: flex;
    align-items: stretch;
    background: #dce8f3;
    border-radius: 20px;
    margin-left: 180px;
    min-height: 520px;
    position: relative;
}

/* Left Image - Overlapping */
.who-image {
    position: absolute;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 400px;
    z-index: 2;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Right Content */
.who-content {
    flex: 1;
    padding: 45px 50px 45px 180px;
}

.who-content h2 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.sub-text {
    font-size: 16px;
    margin-bottom: 22px;
    color: #1a1a2e;
    font-weight: 500;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.who-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a2e;
    font-weight: 600;
}

.who-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2396bc33'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.who-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.who-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
}

.note {
    font-weight: 600;
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 991px) {
    .who-box {
        flex-direction: column;
        margin-left: 0;
        min-height: auto;
    }

    .who-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: -50px auto 20px;
    }

    .who-content {
        padding: 30px;
    }

    .who-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .who-section {
        padding: 50px 0;
    }

    .who-content h2 {
        font-size: 20px;
    }

    .who-list li {
        font-size: 14px;
        padding-left: 28px;
    }

    .who-list li::before {
        width: 18px;
        height: 18px;
    }

    .who-image {
        height: 230px;
    }
}

@media (max-width: 400px) {
    .who-image {
        height: 200px;
        margin-top: -30px;
    }

    .who-content {
        padding: 20px;
    }

    .who-content h2 {
        font-size: 18px;
    }
}


/* ============================================================
   PROGRAMME OBJECTIVE
   ============================================================ */
/* SECTION BACKGROUND */
.objective-section {
    background-color: #1a4d7c;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.objective-title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #ffffff;
}

/* TEXT */
.objective-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #ffffff;
    opacity: 0.95;
}

.objective-text:last-of-type {
    margin-bottom: 0;
}

.objective-text-te {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #000;
    opacity: 0.95;
}

.objective-text-te:last-of-type {
    margin-bottom: 0;
}
/* Content wrapper */
.objective-content {
    padding-right: 40px;
}

/* IMAGE WRAPPER */
.objective-images {
    position: relative;
    height: 520px;
    width: 100%;
}

.single-images {
    position: relative;
    height: 420px;
    width: 100%;
}

.mob {
    position: relative;
    height: 300px !important;
    width: 300p !important;
}

/* IMAGE CARD STYLE */
.obj-img {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 5px solid #ffffff;
}

.obj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TOP IMAGE - Taller, positioned upper-left */
.obj-img-top {
    top: 0;
    right: 60px;
    width: 300px;
    height: 280px;
    z-index: 1;
}

/* BOTTOM IMAGE - Taller, overlapping bottom-right of top image */
.obj-img-bottom {
    top: 200px;
    right: 0;
    width: 280px;
    height: 280px;
    z-index: 2;
}

/* RESPONSIVE FIX */
@media (max-width: 1199px) {
    .obj-img-top {
        width: 260px;
        height: 240px;
        right: 50px;
    }

    .obj-img-bottom {
        width: 240px;
        height: 240px;
        top: 170px;
        right: 0;
    }

    .objective-images {
        height: 460px;
    }

    .single-images {
        height: 380px;
    }

}

@media (max-width: 991px) {
    .objective-section {
        padding: 50px 0;
    }

    .objective-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .objective-images {
        height: 380px;
        max-width: 400px;
        margin: 0 auto;
    }

    .single-images {
        height: 320px;
        max-width: 400px;
        margin: 0 auto;
    }

    .obj-img-top {
        width: 200px;
        height: 180px;
        right: 50px;
    }

    .obj-img-bottom {
        width: 190px;
        height: 180px;
        top: 130px;
        right: 0;
    }

    .objective-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .objective-images {
        height: 300px;
    }

    .single-images {
        height: 270px;
    }

    .obj-img-top {
        width: 160px;
        height: 145px;
        right: 40px;
    }

    .obj-img-bottom {
        width: 150px;
        height: 145px;
        top: 105px;
        right: 0;
    }

    .objective-title {
        font-size: 20px;
    }

    .objective-text {
        font-size: 13.5px;
    }

    .objective-text-te {
        font-size: 13.5px;
    }
}

@media (max-width: 400px) {
    .objective-images {
        height: 260px;
        max-width: 320px;
    }

    .single-images {
        height: 220px;
        max-width: 320px;
    }

    .obj-img-top {
        width: 135px;
        height: 120px;
        right: 30px;
    }

    .obj-img-bottom {
        width: 128px;
        height: 120px;
        top: 90px;
        right: 0;
    }
}


/* ===================================
learning outcome
======================================= */
.learning-section {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 60px;
}

.section-title {
    font-weight: 700;
    font-size: clamp(22px, 2.5vw, 30px);
    color: #1c1c1c;
    line-height: 1.3;
}

.section-subtitle {
    color: #6c757d;
    max-width: 500px;
    font-size: 15px;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 0 12px;
    /* border-bottom: 3px solid #1a75bb; */
}

.outcome-item:last-child {
    border-bottom: none;
}

.icon-circle {
    min-width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-circle img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.outcome-item h5 {
    font-size: 17px;
    font-weight: 700;
    /* margin-bottom: 42px; */
    /* position: relative; */
    display: inline-block;
}

/* Short blue underline below title */
.outcome-item h5::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #1a75bb;
    border-radius: 2px;
}

.outcome-item p {
    /* color: #6c757d; */
    margin-bottom: 0;
    margin-top: 6px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===================================
Programme Curriculum
======================================= */
.curriculum-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.curriculum-title {
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 1.3;
}

.accordion-button {
    font-weight: 600;
    font-size: 15px;
    background-color: #ffffff;
    color: #1c1c1c;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: #1a75bb;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
}

.accordion-item {
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #1a75bb;
    box-shadow: 0 2px 8px rgba(26, 117, 187, 0.1);
}

.accordion-body {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a72;
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 768px) {
    .outcome-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* ═════════════════════════════════════
Pedagogy Section
════════════════════════════════════════*/
.pedagogy-section {
    background-color: #e3edf7;
    padding: 70px 0 80px;
}

/* Main Title */
.pedagogy-section .main-title {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    color: #1a75bb;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Subtitle */
.pedagogy-section .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Learning Methods Title */
.pedagogy-section .learning-title {
    font-weight: 700;
    font-size: 18px;
    color: #1c1c1c;
    margin-bottom: 20px;
}

/* Cards Grid */
.pedagogy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Custom Card Styling */
.pedagogy-section .custom-card {
    background-color: #ffffff;
    padding: 24px 26px;
    border-radius: 8px;
    border: 1px solid #d0dff0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    height: 100%;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: left;
}

.pedagogy-section .custom-card:hover {
    transform: none;
    border-color: #1a75bb;
    box-shadow: 0 4px 15px rgba(26, 117, 187, 0.1);
}

.pedagogy-section .custom-card strong {
    color: #1c1c1c;
    font-size: 15px;
    font-weight: 700;
}

.pedagogy-cards .custom-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    /* optional width */
    margin: 0 auto;
    text-align: center;
    /* optional */
}

/* Bottom Text */
.pedagogy-section .bottom-text {
    font-size: 15px;
    color: #1c1c1c;
    line-height: 1.7;
    max-width: 900px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pedagogy-section {
        padding: 50px 0 60px;
    }

    .pedagogy-section .main-title {
        font-size: 20px;
    }

    .pedagogy-section .subtitle {
        font-size: 14px;
    }

    .pedagogy-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pedagogy-section .custom-card {
        padding: 18px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pedagogy-section .main-title {
        font-size: 18px;
    }

    .pedagogy-section .learning-title {
        font-size: 15px;
    }
}

/* ═════════════════════════════════════
Programme Details Section
════════════════════════════════════════*/
.programme-section {
    background-color: #1a75bb;
    padding: 40px 0 0;
    color: #fff;
}

.programme-section .section-title {
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.3;
}

/* Grid Layout */
.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
}

/* Info Box */
.info-box {
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* Icon Circle */
.info-icon {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.info-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.info-icon i {
    font-size: 18px;
    color: #ffffff;
}

/* Text Styling */
.info-box h6 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
    color: #ffffff;
}

.info-box p {
    font-weight: 700;

    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

/* Schedule table style */
.schedule-table {
    margin-top: 3px;
}

.schedule-row {
    display: flex;
    gap: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.schedule-row span:first-child {
    min-width: 110px;
}

/* Note Banner */
.programme-note {
    background-color: #d4e8f7;
    padding: 15px 0;
    margin-top: 25px;
}

.programme-note p {
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.text p {
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .programme-grid {
        gap: 0 40px;
    }
}

@media (max-width: 768px) {
    .programme-section .section-title {
        font-size: 22px;
        text-align: center;
    }

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/* ═════════════════════════════════════
IIM Indore Advantage Section
════════════════════════════════════════*/
.advantage-section {
    position: relative;
    padding: 70px 0;
    color: #fff;
    background-color: #1a1a2e;
}

/* Full-height background image — always covers section regardless of content length */
.advantage-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: none;
    object-position: center 20%;
    z-index: 0;
}

/* Optional Dark Overlay for readability */
/* .advantage-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
} */

.advantage-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.advantage-section .section-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    margin-bottom: 32px;
    color: #000;
    line-height: 1.3;
}

/* Layout – true L-shape via float */
.advantage-content {
    overflow: hidden;
}

/* Certificate floated right — text wraps around it */
.advantage-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 16px;
}

/* Content blocks flow naturally around the float */
.advantage-section .content-block {
    margin-bottom: 24px;
}

.advantage-section .content-block h6 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    color: #000;
}

.advantage-section .content-block p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: #000;
}

/* Certificate Card */
.certificate-card {
    /* background: #fff; */
    /* border: 8px solid #c9b896; */
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.3); */
    /* width: 380px; */
    width: 590px;
    max-width: 100%;
    /* height: 310px; */
    height: 550px;
}

.certificate-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


@media (max-width: 1199px) {
    .certificate-card {
        width: 500px;
        max-width: 100%;
        /* height: 310px; */
        height: 470px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .certificate-card {
        width: 460px;
        height: 340px;
    }
}

@media (max-width: 992px) {

    /* On tablet/mobile: stop floating, stack naturally */
    .advantage-right {
        float: none;
        margin-left: 0;
        margin-bottom: 24px;
        display: flex;
        justify-content: center;
    }

    .advantage-section .section-title {
        text-align: center;
    }

    .certificate-card {
        width: 100%;
        max-width: 480px;
        height: auto;
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .advantage-section {
        padding: 40px 0 0;
    }

    .advantage-section .section-title {
        font-size: 22px;
    }

    .advantage-section .content-block h6 {
        font-size: 15px;
    }

    .advantage-section .content-block p {
        font-size: 13.5px;
    }

    .certificate-card {
        max-width: 100%;
    }
}

/* ═════════════════════════════════════
Fee Structure Section
════════════════════════════════════════*/
.fee-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.fee-section .section-title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Table Styling */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

/* Table Header */
.custom-table thead {
    background-color: #1a75bb;
}

.custom-table thead th {
    padding: 20px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Table Body */
.custom-table tbody td {
    padding: 16px 20px;
    font-size: 14px;
    color: #1c1c1c;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}

/* White Rows */
.custom-table tbody tr {
    background-color: #ffffff;
}

/* Green Highlight Rows */
.custom-table tbody tr.highlight {
    background-color: #96bc33;
}

.custom-table tbody tr.highlight td {
    color: #1c1c1c;
    font-weight: 500;
}

/* Total Row */
.custom-table tbody tr.total-row {
    background-color: #ffffff;
}

.custom-table tbody tr.total-row td {
    font-weight: 700;
    font-size: 15px;
    border-bottom: none;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fee-section .section-title {
        font-size: 22px;
    }

    .custom-table thead th {
        font-size: 12px;
        padding: 12px 10px;
    }

    .custom-table tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {

    .custom-table thead th,
    .custom-table tbody td {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* ═════════════════════════════════════
Past Participant Profiles Section
════════════════════════════════════════*/

@keyframes fallIn {
    from {
        transform: translateY(-16px);
    }
    to {
        transform: translateY(0);
    }
}

/* ── SECTION ── */
.participant-section {
    padding: 12px 0 50px;
    background: #ffffff;
}

.participant-wrapper {
    position: relative;
}

/* ────────────────────────────────────────────────────────────
   BLUE BOX
   • Right-aligned: margin-left: auto
   • Reduced width: 70% of container
   • overflow: visible  → image tail extends below the box edge
   • position: relative → anchors .pp-photo absolute positioning
──────────────────────────────────────────────────────────────*/
.participant-container {
    /* width: 70%; */
    width: 85%;
    margin-left: auto;
    background: #d9e3ea;
    border-radius: 20px;
    padding: 26px 34px 28px 34px;
    position: relative;
    overflow: visible;
}

/* ────────────────────────────────────────────────────────────
   LAYOUT: upper / lower split
   • pp-upper  – full box width (title + B1 + B2)
   • pp-lower  – flex row: image-col (left) + pp-right (B3+B4)
   • Image is absolute inside pp-image-col so it overflows below
──────────────────────────────────────────────────────────────*/
.pp-upper {
    margin-bottom: 16px;
}

.pp-lower {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

/* Image column – left side.
   margin-left: -(box_padding_left + image_width/2) = -(34 + 155) = -189px
   → image left  = 155px OUTSIDE the box left border
   → image right = 155px INSIDE the box left border   (exact half-half) */
.pp-image-col {
    flex-shrink: 0;
    width: 310px;
    position: relative;
    overflow: visible;
    min-height: 160px;
    margin-left: -189px;
}

.pp-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    display: block;
    z-index: 10;
}

/* Left column: B3 + B4 */
.pp-right {
    flex: 1;
    min-width: 0;
}

/* ── WATERFALL ANIMATION ── */
/* Content visible by default; animation only does slide-in when section enters view */
.waterfall-group {
    opacity: 1;
}

.participant-section.in-view .group-1 {
    animation: fallIn 0.65s ease forwards;
    animation-delay: 0.1s;
}

.participant-section.in-view .group-2 {
    animation: fallIn 0.65s ease forwards;
    animation-delay: 0.75s;
}

/* ── TYPOGRAPHY ── */
.participant-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}

.info-block {
    margin-bottom: 13px;
}

.info-block-last {
    margin-bottom: 0;
}

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #111;
    line-height: 1.4;
    margin-bottom: 3px;
}

.info-header strong {
    font-size: 13.5px;
    font-weight: 700;
}

.info-header .normal-text {
    font-weight: 500;
    font-size: 13.5px;
}

.info-block p {
    margin: 0 0 0 24px;
    font-size: 12.5px;
    line-height: 1.65;
    color: #2c2c2c;
    font-weight: 500;
}

/* Green check icon */
.check-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ────────────────────────────────────────────────────────────
   OUR ALUMNI WORK AT ROW
   • Same right-alignment (margin-left: auto; width: 70%) as the box
     → sits directly below the box in the same horizontal lane
   • The image tail floats to the LEFT in the 30% free space;
     the alumni row is safely to the right of it
   • margin-top: ~20px  (just below the box end, as requested)
──────────────────────────────────────────────────────────────*/
/* Alumni row: flex layout mirroring the lower section.
   alumni-spacer (same width as pp-image-col) aligns alumni-content
   with pp-right above it. */
.alumni-row {
    width: 70%;
    margin-left: auto;
    margin-top: 16px;
    display: flex;
    gap: 20px;
    padding: 0 34px;
}

.alumni-spacer {
    flex-shrink: 0;
    width: 121px;
    /* = pp-image-col.width (310) + pp-image-col.margin-left (-189) */
}

.alumni-content {
    flex: 1;
    min-width: 0;
}

.alumni-title-header {
    margin-bottom: 8px;
}

.alumni-title-header strong {
    font-size: 13.5px;
    font-weight: 700;
}

/* ── LOGO ROWS ── */
.alumni-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.logos-centred {
    justify-content: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 48px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.9;
}

/* ── BOTTOM LOGOS / SECTOR TEXT – centred ── */
.bottom-logos-section {
    margin-top: 30px;
    text-align: center;
}

.sector-list {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2c2c;
    text-align: center;
}

/* ── DISCLAIMER ── */
.participant-disclaimer {
    text-align: center;
    font-size: 12.5px;
    margin-top: 18px;
    margin-bottom: 0;
    color: #555;
    font-weight: 400;
}

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {

    .participant-container,
    .alumni-row {
        width: 80%;
    }

    /* image 270px wide → half = 135px → margin-left = -(34+135) = -169px
       alumni-spacer = 270 - 169 = 101px */
    .pp-image-col {
        width: 270px;
        /* margin-left: -169px; */
        margin-left: auto;
    }

    .alumni-spacer {
        width: 101px;
    }

    .pp-photo {
        height: 270px;
    }
}

@media (max-width: 900px) {

    .participant-container,
    .alumni-row {
        width: 90%;
    }

    /* image 230px wide → half = 115px → margin-left = -(34+115) = -149px
       alumni-spacer = 230 - 149 = 81px */
    .pp-image-col {
        width: 230px;
        /* margin-left: -149px; */
        margin-left: auto;
    }

    .alumni-spacer {
        width: 81px;
    }

    .pp-photo {
        height: 250px;
    }
}

@media (max-width: 768px) {

    /* Collapse: image above B3+B4 */
    .participant-container,
    .alumni-row {
        width: 100%;
        margin-left: 0;
    }

    .pp-lower {
        flex-direction: column;
    }

    .pp-image-col {
        width: 100%;
        min-height: auto;
    }

    .pp-photo {
        position: static;
        display: block;
        width: 100%;
        max-width: 340px;
        height: 210px;
        margin: 0 auto 16px;
    }

    .participant-container {
        padding: 22px 22px 24px;
    }

    .alumni-row {
        padding: 0 22px;
        margin-top: 18px;
        flex-direction: column;
    }

    .alumni-spacer {
        display: none;
    }

    .alumni-logos-row {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .participant-title {
        font-size: 18px;
    }

    .info-block p {
        font-size: 12px;
        margin-left: 22px;
    }

    .logo-item img {
        height: 38px;
        max-width: 110px;
    }

    .alumni-logos {
        gap: 20px 170px !important;
    }

    /* .alumni-logos-row {
        gap: 10px;
    } */

    .sector-list,
    .participant-disclaimer {
        font-size: 11.5px;
    }
}


/* ═════════════════════════════════════
   CTA + Programme Partner Section
════════════════════════════════════════*/

.cta-section {
    padding: 10px 0 50px;
    background: #ffffff;
}

/* ── CTA box: title positioned ON the top border line ── */
.cta-box-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.cta-box {
    border: 1.5px solid #444;
    border-radius: 18px;
    padding: 28px 40px 30px;
    margin-top: 14px;
    /* space for title overhanging above */
    position: relative;
    text-align: center;
}

/* Title floats on the top border with white bg cutting through the line */
.cta-title {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 4px 24px;
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    margin: 0;
    line-height: 1.3;
}

/* Contact text + button on same row */
.cta-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.cta-contact {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.cta-phone {
    color: #0057b8;
    font-weight: 600;
    text-decoration: none;
}

.cta-phone:hover {
    text-decoration: underline;
}

.cta-btn {
    display: inline-block;
    background: #96bc33;
    color: #ffffff;
    padding: 12px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.4px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cta-btn:hover {
    background: #7ea028;
    color: #fff;
}

/* ── Programme Partner – logo + text only ── */
.partner-section {
    margin-top: 30px;
    text-align: center;
}

.partner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.partner-logo img {
    height: 90px;
    max-width: 220px;
    object-fit: contain;
}

.partner-desc {
    font-size: 14px;
    color: #333;
    max-width: 340px;
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cta-box {
        padding: 28px 20px 24px;
        margin-top: 28px;
    }

    .cta-title {
        font-size: 14px;
        white-space: normal;
        text-align: center;
        width: calc(100% - 40px);
        top: -24px;
        line-height: 1.4;
        padding: 4px 12px;
    }

    .cta-bottom-row {
        flex-direction: column;
        gap: 14px;
    }

    .partner-content {
        flex-direction: column;
        gap: 16px;
    }

    .partner-desc {
        text-align: center;
        max-width: 100%;
    }
}

.prof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.prof-grid-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Card */
.programme-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e6eef7;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    height: 100%;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Text */
.programme-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 20px;
}

.programme-card p {
    margin-bottom: 6px;
    font-size: 15.5px;
    color: #444;
}

/* Tablet */
@media(max-width:992px) {
    .prof-grid {
        display: inline-block;
    }

    .programme-grid {
        grid-template-columns: 1fr 1fr;
    }

    .programme-card {
        margin-bottom: 10px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .programme-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .programme-card {
        padding: 22px;
        text-align: center;
    }

    .programme-card h5 {
        font-size: 18px;
    }

    .programme-card p {
        font-size: 14.5px;
    }
}

@media (max-width: 767.98px) {

    .logo-box img {
        height: 30px;
    }

    .logo-box {
        margin-top: 20px;
    }

}

.alumni-section {
    background: #155fa0;
    padding: 60px 0;
}

.alumni-section .section-title {
    margin-bottom: 40px;
    font-weight: 700;
}

.alumni-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px 40px;
    align-items: center;
    justify-items: center;
}

.alumni-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: .95;
    transition: .3s;
}

.alumni-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* SECTION */
.why-section {
    background: #f3f4f6;
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
}

/* LIST */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* CARD */
.why-card {
    display: flex;
    align-items: center;
    background: #155a9c;
    border-radius: 14px;
    overflow: hidden;
    color: #fff;
}

/* ICON SIDE */
.why-icon {
    height: -webkit-fill-available;
    background: #43beac;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* TEXT SIDE */
.why-text {
    padding: 22px 26px;
}

.why-text h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.why-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        width: 100%;
    }

    .why-text {
        padding: 20px;
    }
}

.verify-mobile-no-modal {
	--primary-color: #0a3d6e;
	--secondary-color: #434343;
	--black-color: #000;
	--white-color: #fff;

	--fs-xs: 1.3125rem;
	--fs-x: 1.5rem;

	--icon-close: url("data:image/svg+xml,...");

	--bs-modal-width: 992px !important;
	padding: 0 1rem;
}
.verify-mobile-no-modal .modal-content {
	--bs-modal-border-radius: 1rem;
	padding: 0.75rem;
	position: relative;
	background-image: url('images/email-send.png');
	background-repeat: no-repeat;
	background-size: 15.625rem auto;
	background-position: 85% 100%;
}

.verify-mobile-no-modal .btn-close {
	position: absolute;
	top: 1.75rem;
	right: 2.25rem;
	/* background: var(--icon-close) no-repeat center; */
	background-size: 1rem;
	padding: 1.125rem;
	border-radius: 50%;
	border: 0.1875rem solid var(--secondary-color);
}

.verify-mobile-no-modal .btn-close:focus {
	box-shadow: none;
}
.verify-mobile-no-modal-left {
	background: var(--primary-color);
	border-radius: 0.625rem;
	padding: 2.5rem;
	color: var(--white-color);
	height: 100%;
}

.verify-mobile-no-modal-left h5 {
	font-weight: 700;
	margin: 2rem 0;
}
.verify-mobile-no-modal {
	--primary-color: #0a3d6e;
	--secondary-color: #434343;
	--black-color: #000;
	--white-color: #fff;

	--fs-xs: 1.3125rem;
	--fs-x: 1.5rem;

	--icon-close: url("data:image/svg+xml,...");

	--bs-modal-width: 992px !important;
	padding: 0 1rem;
}
.verify-mobile-no-modal {
	--primary-color: #0a3d6e;
	--secondary-color: #434343;
	--black-color: #000;
	--white-color: #fff;

	--fs-xs: 1.3125rem;
	--fs-x: 1.5rem;

	--icon-close: url("data:image/svg+xml,...");

	--bs-modal-width: 992px !important;
	padding: 0 1rem;
}
.otp-inputs {
	display: flex;
	align-items: center;
}

.otp-input {
	height: 3.5rem;
	width: 3.5rem;
	margin: 0 0.5rem;
	text-align: center;
	font-size: var(--fs-xs);
	border-radius: 0.625rem;
	display: block;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.12) inset;
	border: 0;
	background: #f6f6f6;
}

.otp-input:focus {
	box-shadow: 2px 2px 4px rgba(228,150,62,0.12) inset;
}

.otp-input:nth-child(1) {
	cursor: pointer;
	pointer-events: all;
}

/* Default: original size (for screens < 500px) */
.captcha-scale {
	transform: scale(1);
	transform-origin: 0 0;
}

/* Apply scaling only for screens ≥ 500px */
@media (min-width: 991px) {
	.captcha-scale {
		transform: scale(0.75);
	}
}