/*headerbutton style*/
/* Shared Button Style */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}

@media (max-width: 776px) {
    .custom-btn {
        padding: 6px 14px;      /* smaller padding for small screens */
        font-size: 14px;        /* slightly smaller text */
        border-radius: 24px;    /* balanced roundness */
    }
}

@media (max-width: 380px) { 
    .custom-btn {
        padding: 5px 10px;      /* extra small phones like 320px */
        font-size: 13px;
    }
}
/* Apply Button (pink like image) */
.apply-btn {
    background: #811B19; /* magenta/pink */
}

/* Arrow spacing */
.apply-btn span {
    margin-left: 6px;
    font-size: 18px;
}

/* Brochure Button (dark blue like image) */
.brochure-btn {
    background: #080045;
}

/* Hover Effects */
.custom-btn:hover {
    opacity: 0.85;
}


/*labguage css*/


.language-switcher {
    font-size: 16px;
    font-weight: 600;
    color: #1d2f63;
    cursor: pointer;
    user-select: none;
}

.language-switcher .lang-btn {
    padding: 2px 4px;
    cursor: pointer;
    transition: 0.2s ease;
}

.language-switcher .lang-btn.active {
    color: #811B19;   /* pink highlight */
}





/*banner css*/


/* Title */
/* Full Hero Section */
.custom-hero-section {
    background: url("assets/images/banner-bg.jpg") center/cover no-repeat;
    padding: 140px 0;
    color: #fff;
    position: relative;
}

/* Title */
.custom-hero-section .hero-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

/* Subtitle */
.custom-hero-section .hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
    /*font-family: open sans-serif;*/

}

/* Button Container */
.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* Buttons */
.hero-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
}

/* Button colors */
.blue-btn {
    background: #172c64;
}

.pink-btn {
    background: #811B19;
}

/* Hover effect */
.hero-btn:hover {
    opacity: 0.85;
}

/* ------------------------------- */
/*         RESPONSIVE CSS          */
/* ------------------------------- */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .custom-hero-section {
        padding: 120px 0;
    }
    .custom-hero-section .hero-title {
        font-size: 52px;
    }
    .custom-hero-section .hero-subtitle {
        font-size: 22px;
    }
}

/* Tablet / Small Laptop (900px) */
@media (max-width: 900px) {
    .custom-hero-section .hero-title {
        font-size: 46px;
    }
    .custom-hero-section .hero-subtitle {
        font-size: 20px;
    }
    .hero-btn {
        padding: 14px 28px;
        font-size: 17px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .custom-hero-section {
        padding: 90px 20px;
        text-align: center;
    }

    .custom-hero-section .hero-title {
        font-size: 38px;
    }

    .custom-hero-section .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .hero-btn {
        width: 80%;
        padding: 14px 0;
        font-size: 17px;
    }
}

/* Extra Small Phones (480px) */
@media (max-width: 480px) {
    .custom-hero-section {
        padding: 70px 15px;
    }

    .custom-hero-section .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .custom-hero-section .hero-subtitle {
        font-size: 16px;
    }

    .hero-btn {
        /*width: 100%;*/
        padding: 12px 0;
        font-size: 14px;
    }
}

/*about css*/

/* Section */
.eminence-programs-section {
    padding: 70px 0;
}

.programs-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

.pink-arrow {
    color: #8A1E1E;
    margin-right: 10px;
    font-size: 30px;
}

/* GRID — Always 3 per row on desktop */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD Base */
.program-card {
    padding: 40px 35px;
    height: 200px;
    /*border-radius: 4px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: .35s ease;
}

/* Text */
.program-text {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.35;
}

/* Arrow */
.program-arrow {
    font-size: 28px;
    transition: .3s ease;
    align-self: flex-end;
}

/* Hover Animation */
.program-card:hover {
    transform: translateY(-5px);
}

.program-card:hover .program-arrow {
    transform: translateX(6px);
}

/* BRAND COLORS ONLY */
.card-blue {
    background: #0C1A55;
    color: #fff;
}

.card-red {
    background: #8A1E1E;
    color: #fff;
}

.card-white {
    background: #ffffff;
    color: #000;
    border: 1px solid #ddd;
}

.card-lightgrey {
    background: #E5E5E5;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        height: auto;
        padding: 30px 25px;
    }

    .program-text {
        font-size: 20px;
    }

    .program-arrow {
        font-size: 24px;
    }
}

/*program css*/
.eminence-program-list {
    padding: 60px 0;
}

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

/* Card */
.program-box {
    background: #F5F1E8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Header */
.program-header {
    background: #0C1A55;
    color: #fff;
    padding: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    /*text-transform: uppercase;*/
        height: 85px;

}

/* Body */
.program-body {
    padding: 25px;
    font-size: 16px;
    color: #333;
        height: 650px;
}

.program-label {
    font-weight: 600;
    margin: 12px 0 5px;
}

/* Pills */
.tag {
    display: inline-block;
    background: #0c1a552b;
    padding: 5px 14px;
    border-radius: 20px;
    margin-right: 7px;
    font-size: 14px;
    margin:1px;
}

/* Divider */
.program-body hr {
    border: none;
    border-top: 1px solid #E2E2E2;
    margin: 18px 0;
}

/* Flags */
.language-flags span {
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}


/*MBA PAGE CSS*/


        /* ===== GLOBAL STYLES ===== */
     

        /* ===== TAB SECTION ===== */
        .ebep-tabs {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            /*font-family: 'Inter', Arial, sans-serif;*/
        }

        /* Tab Navigation */
        .ebep-tabs-nav {
            display: flex;
            overflow-x: auto;
            border-bottom: 2px solid #b3261e;
            margin-bottom: 40px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .ebep-tabs-nav::-webkit-scrollbar {
            display: none;
        }

        .ebep-tabs-nav a {
            padding: 16px 24px;
            text-decoration: none;
            color: #222;
            font-size: 15px;
            font-weight: 500;
            white-space: nowrap;
            position: relative;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
        }

        .ebep-tabs-nav a:hover {
            color: #b3261e;
        }

        .ebep-tabs-nav a.active {
            color: #b3261e;
            border-bottom: 2px solid #b3261e;
        }

        /* Tab Content */
        .ebep-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .ebep-tab-content.active {
            display: block;
        }

        .ebep-tab-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1e2a78;
            font-weight: 800;
            border-bottom: 1px solid #b3261e;
            padding-bottom: 10px;
        }

        .ebep-tab-content h2 {
            font-size: 28px;
            margin: 30px 0 20px;
            color: #1e2a78;
            font-weight: 700;
        }

        .ebep-tab-content h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #141c4d;
            font-weight: 600;
        }

        .ebep-tab-content h4 {
            font-size: 18px;
            margin: 20px 0 10px;
            color: #222;
            font-weight: 600;
        }

        .ebep-tab-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 16px;
            color: #333;
        }

        .ebep-tab-content ul, .ebep-tab-content ol {
            padding-left: 24px;
            margin-bottom: 20px;
        }

        .ebep-tab-content li {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 10px;
            color: #333;
        }

        .ebep-tab-content strong {
            color: #141c4d;
            font-weight: 600;
        }

        /* Special Elements */
        .ebep-highlight-box {
            background: #f6f1e1;
            padding: 25px;
            border-left: 4px solid #b3261e;
            margin: 25px 0;
            border-radius: 4px;
        }

        .ebep-highlight-box h3 {
            color: #b3261e;
            margin-top: 0;
        }

        .ebep-program-structure {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        @media (max-width: 768px) {
            .ebep-program-structure {
                grid-template-columns: 1fr;
            }
        }

        .ebep-semester-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-top: 4px solid #1e2a78;
        }

        .ebep-semester-card h4 {
            color: #1e2a78;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .ebep-career-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .ebep-career-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
        }

        .ebep-career-card h4 {
            color: #b3261e;
            margin-bottom: 10px;
        }

        .ebep-value-added {
            background: linear-gradient(135deg, #f0f2ff 0%, #e6e9ff 100%);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #d0d4ff;
        }

        .ebep-value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .ebep-value-item {
            text-align: center;
            padding: 20px;
        }

        .ebep-value-item h4 {
            color: #1e2a78;
            margin: 15px 0 10px;
        }

        .ebep-specialisation-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .ebep-specialisation-table th {
            background: #1e2a78;
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
            font-size: 16px;
        }

        .ebep-specialisation-table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
            font-size: 15px;
        }

        .ebep-specialisation-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .ebep-specialisation-table tr:hover {
            background: #f0f1f5;
        }

        .ebep-apply-btn {
            display: inline-block;
            background: #b3261e;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 20px;
            transition: background 0.3s ease;
        }

        .ebep-apply-btn:hover {
            background: #9c1e17;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 991px) {
            .ebep-tabs {
                margin: 30px auto;
                padding: 0 16px;
            }

            .ebep-tabs-nav a {
                padding: 14px 18px;
                font-size: 14px;
            }

            .ebep-tab-content h1 {
                font-size: 30px;
            }

            .ebep-tab-content h2 {
                font-size: 24px;
            }

            .ebep-tab-content h3 {
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .ebep-tabs {
                margin: 20px auto;
                padding: 0 12px;
            }

            .ebep-tabs-nav {
                margin-bottom: 30px;
            }

            .ebep-tabs-nav a {
                padding: 12px 14px;
                font-size: 13px;
            }

            .ebep-tab-content h1 {
                font-size: 26px;
            }

            .ebep-tab-content h2 {
                font-size: 22px;
            }

            .ebep-tab-content h3 {
                font-size: 18px;
            }

            .ebep-tab-content p,
            .ebep-tab-content li {
                font-size: 15px;
            }

            .ebep-specialisation-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
 
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    

/*MBA PAGE CSSS END*/


/*Application form css starts */


.psb-application-section {  
    display: flex;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

/* LEFT */
.psb-left {
    width: 48%;
    background: #EDEDED;
    color: #000;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.psb-logo {
    font-size: 22px;
    font-weight: 600;
}

.psb-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 90px;
    color:#000;
}

.psb-left-footer {
    font-size: 12px;   
    line-height: 1.6;
    opacity: 0.85;
    max-width: 420px;
}

.psb-left-link {
    color: #811B19;
    text-decoration: underline;
}

/* RIGHT */
.psb-right {
    width: 52%;
    padding: 70px 80px;
    display: flex;
    align-items: center;
}

.psb-form {
    width: 100%;
    max-width: 560px;
}

/* Labels */
.psb-label {
    font-size: 14px;
    font-weight: 500;
    color: #2D2661;
    margin-bottom: 6px;
    display: block;
}

/* Inputs */
.psb-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #2D2661;
    padding: 8px 0;
    font-size: 15px;
    background: transparent;
}
.psb-input:focus {
    outline: none;
    border-bottom: 2px solid #943D3B;
}

/* Degree Select */
.psb-degree-select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #2D2661;
    border-radius: 30px;
    font-size: 15px;
    color: #2D2661;
    appearance: none;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23943D3B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
        no-repeat right 20px center;
    background-size: 14px;
}

/* ================= PHONE INPUT PERFECT ALIGN ================= */

.iti {
    width: 100%;
}

.iti__flag-container {
    display: flex;
    align-items: center;
    height: 40px;
}

.iti__selected-flag {
    display: flex;
    align-items: center;
    /*height: 40px;*/
    padding: 0 10px;
    /*border-bottom: 1px solid #2D2661;*/
}  

.psb-phone {
    /*height: 40px;*/
    /*line-height: 40px;*/
    /*padding-left: 76px !important;*/
    font-size: 15px;
    border-bottom: 1px solid #2D2661;
}

.psb-phone::placeholder {
    line-height: 40px;
    font-size: 15px;
    color: #999;
}

.psb-phone:focus {
    border-bottom: 2px solid #943D3B;
}

.iti__selected-flag:focus-within {
    border-bottom: 2px solid #943D3B;
}

.iti__country-list {
    z-index: 9999;
    font-size: 14px;
}

/* Consent */
.psb-consent {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #2D2661;
    line-height: 1.5;
}

.psb-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #943D3B;
}

/* Privacy link */
.psb-privacy-link {
    color: #943D3B;
    font-weight: 500;
    text-decoration: underline;
}

/* Button */
.psb-submit {
    width: 100%;
    padding: 15px;
    background: #811B19;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
}
.psb-submit.active {
    background: #943D3B;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .psb-application-section {
        flex-direction: column;
    }

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

    .psb-left {
        padding: 50px 30px;
    }

    .psb-right {
        padding: 40px 25px;
    }

    .psb-title {
        font-size: 32px;
        margin-top: 30px;
        color:#000;
    }
}

@media (max-width: 576px) {
    .psb-title {
        font-size: 26px;
    }

    .psb-label {
        font-size: 13px;
    }

    .psb-consent {
        font-size: 13px;
    }

    .psb-submit {
        font-size: 15px;
    }
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: #fff !important;
}


/*Application form css ends */



/*admission tabs css start*/

        
        /* ===== WRAPPER ===== */
        .msc-admission-section {
            font-family: Arial, sans-serif;
            padding: 60px 0;
            background: #fff;
        }

        .msc-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        /* ===== TOP GRID ===== */
        .msc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal width */
    gap: 40px;
    align-items: flex-start;
}

        /* ===== LEFT CONTENT ===== */
        .msc-heading {
            font-size: 34px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
        }

        .msc-sub-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a8a;
            margin-bottom: 10px;
        }

        .msc-text {
            font-size: 15px;
            color: #444;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .msc-highlight {
            margin-top: 25px;
        }

       

        /* ===== FORM CARD ===== */
        .msc-form-card {
            background: #f4f4f4;   
            padding: 30px;
            border-radius: 6px;
        }

        .msc-form-title {
            font-size: 20px;
            font-weight: 700;
            color: #811B19;
            margin-bottom: 20px;
        }

        .msc-form-group {
            margin-bottom: 15px;
        }

        .msc-form-group input,
        .msc-form-group select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
        }

        .msc-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .msc-checkbox {
            font-size: 12px;
            color: #555;
            margin: 15px 0;
        }

        .msc-submit-btn {
            width: 100%;
            background: #811B19;
            color: #fff;
            border: none;
            padding: 12px;
            font-size: 14px;
            cursor: pointer;
        }
        
        
.msc-support {
   
    margin-top:60px!important;
    margin: 30px auto;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    border: 1px solid #e0e0e0;
}

.msc-support br {
    margin-bottom: 10px;
    display: block;
    content: "";
}

.msc-support a {
    color: #8A1E1E;
    text-decoration: none;
}

.msc-support a:hover {
    text-decoration: underline;
}


        /* ===== ADMISSION PROCEDURE ===== */
       
.msc-procedure {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.msc-procedure-title {
    color: #1a365d;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}
   
.msc-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.msc-steps > div {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-top: 5px solid #8A1E1E;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.msc-step-number {
    display: inline-block;
    background-color:#8A1E1E;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.msc-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.msc-step-content {
    color: #4a5568;
    font-size: 16px;
}

.msc-list-item {
    margin-top: 10px;
    padding-left: 5px;
}

.msc-plus {
    color: #2d3748;
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {  
    .msc-procedure {
        padding: 25px;
    }
    
    .msc-procedure-title {
        font-size: 25px;
    }
    
    .msc-steps > div {   
        min-width: 100%;
    }
    .msc-heading
{
   font-size: 23px;  
}
}


        /* ===== RESPONSIVE ===== */
        @media(max-width: 900px) {
            .msc-grid {
                grid-template-columns: 1fr;
            }
            .msc-steps {
                grid-template-columns: 1fr;
            }   
        }
  
  
    
/*admission tabs css ends*/

/*checkbox css start*/


.psb-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* Hide real checkbox */
.psb-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom checkbox – ALWAYS visible */
.psb-consent label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid #8A1E1E;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Checked state */
.psb-consent input[type="checkbox"]:checked + label::before {
    background-color: #2D2661;
    color: #fff;
    content: "✓";
    font-size: 13px;
    font-weight: bold;
}

.psb-consent label {
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.psb-privacy-link {
    color: #8A1E1E;
    text-decoration: underline;
}


/*checkboix css end*/