*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#eef7ff;
}

/* Navigation */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
  height: 120px;
    width:auto;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin:0 18px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.btn{
    text-decoration:none;
    background:#0b7d3b;
    color:white;
    padding:12px 24px;
    border-radius:8px;
    transition:.3s;
    display:inline-block;
}

.btn:hover{
    background:#095f2d;
}

/* Hero */

.hero{
    min-height:85vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    font-size:58px;
    color:#123;
    margin-bottom:20px;
}
.college-tagline{
    font-size:18px;
    color:#555;
    font-weight:500;
    margin-bottom:25px;
}
.hero p{
    font-size:22px;
    max-width:850px;
    line-height:1.7;
    color:white;
}

.buttons{
    margin-top:35px;
}

.secondary{
    margin-left:15px;
    background:#25D366;
}

/* Sections */

.why-us{
    padding:80px 8%;
    background:#ffffff;
    text-align:center;
}

.why-us h2{
    font-size:40px;
    color:#123;
    margin-bottom:20px;
}

.why-us h3{
    margin-bottom:20px;
    color:#0b7d3b;
}

.why-us p{
    max-width:900px;
    margin:0 auto;
    color:#555;
    line-height:1.8;
}

/* Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#0b7d3b;
    margin-bottom:15px;
}

.card p{
    color:#555;
    line-height:1.7;
}
/* ==========================================
   MY MBA MATCH
========================================== */

.mba-match{
    padding:80px 8%;
    background:#f4f9ff;
    text-align:center;
}

.mba-match h2{
    font-size:42px;
    color:#123;
    margin-bottom:10px;
}

.mba-match h3{
    font-size:24px;
    color:#0b7d3b;
    margin-bottom:20px;
}

.mba-match p{
    max-width:800px;
    margin:0 auto 35px;
    color:#555;
    line-height:1.8;
    font-size:18px;
}

/* Progress */

.progress-container{
    max-width:700px;
    margin:0 auto 40px;
}

.progress-bar{
    width:100%;
    height:12px;
    background:#dfe8f2;
    border-radius:30px;
    overflow:hidden;
}

.progress{
    width:20%;
    height:100%;
    background:linear-gradient(90deg,#0b7d3b,#27ae60);
    border-radius:30px;
    transition:0.4s ease;
}

#progressText{
    margin-top:12px;
    font-weight:bold;
    color:#555;
}

/* Wizard Card */

.wizard{
    max-width:700px;
    margin:0 auto;
    background:#ffffff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
    text-align:left;
}

/* Questions */

.question{
    display:none;
}

.question.active{
    display:block;
}

.question label{
    display:block;
    font-size:20px;
    font-weight:bold;
    color:#222;
    margin-bottom:18px;
}

.question select{
    width:100%;
    padding:16px;
    font-size:16px;
    border:2px solid #d6dce5;
    border-radius:10px;
    outline:none;
    transition:0.3s;
    background:#fff;
}

.question select:focus{
    border-color:#0b7d3b;
}

/* Buttons */

.wizard-buttons{
    max-width:700px;
    margin:30px auto 0;
    display:flex;
    justify-content:space-between;
}

.wizard-buttons .btn{
    border:none;
    cursor:pointer;
    font-size:16px;
    padding:14px 30px;
}

.wizard-buttons .secondary{
    background:#6c757d;
}

.wizard-buttons .secondary:hover{
    background:#555;
}

/* Mobile */

@media(max-width:768px){

    .mba-match{
        padding:60px 20px;
    }

    .mba-match h2{
        font-size:32px;
    }

    .mba-match h3{
        font-size:20px;
    }

    .wizard{
        padding:25px;
    }

    .question label{
        font-size:18px;
    }

    .wizard-buttons{
        flex-direction:column;
        gap:15px;
    }

    .wizard-buttons .btn{
        width:100%;
    }

}

/* Mobile */

@media(max-width:768px){

    nav{
        flex-direction:column;
    }

    nav ul{
        margin:20px 0;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

    .secondary{
        margin-left:0;
        margin-top:15px;
        display:inline-block;
    }

    .match-question{
        padding:20px;
    }

}

/* =========================================
   PROJECT PHOENIX - MUSTERNOESIS
   Professional MBA Recommendation Platform
   CSS PART 1
========================================= */


/* ---------- GLOBAL RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}


/* ---------- COMMON CONTAINER ---------- */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ---------- HEADINGS ---------- */

h1,
h2,
h3,
h4 {
    color: #0f172a;
    line-height: 1.2;
}


p {
    color: #475569;
}


/* ---------- LINKS ---------- */

a {
    text-decoration: none;
    color: inherit;
}


/* ---------- BUTTON SYSTEM ---------- */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn-primary {
    background: #2563eb;
    color: white;
}


.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}


.btn-secondary:hover {
    background: #2563eb;
    color: white;
}


/* ---------- SECTION COMMON STYLE ---------- */

section {
    padding: 80px 0;
}


.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 38px;
}


.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}


/* ---------- CARD DESIGN ---------- */

.card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}


.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* ==========================================
   MY MBA MATCH WIZARD
========================================== */

.mba-match{
    background:#f4f7fb;
    padding:80px 20px;
}

.mba-container{
    max-width:900px;
    margin:auto;
}

.mba-heading{
    text-align:center;
    margin-bottom:40px;
}

.mba-heading h2{
    font-size:38px;
    color:#002147;
    margin-bottom:10px;
}

.mba-heading p{
    color:#666;
    font-size:18px;
}

.progress-wrapper{
    width:100%;
    height:10px;
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
}

.progress-fill{
    width:20%;
    height:100%;
    background:#ffb400;
    transition:.4s;
}

.question-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.question-number{
    color:#ffb400;
    font-weight:bold;
    margin-bottom:15px;
    font-size:15px;
    text-transform:uppercase;
}

.question-title{
    font-size:30px;
    color:#002147;
    margin-bottom:25px;
}

.question-card select,
.question-card input{
    width:100%;
    padding:16px;
    font-size:17px;
    border:1px solid #ccc;
    border-radius:10px;
    outline:none;
}

.wizard-buttons{
    display:flex;
    justify-content:space-between;
    margin-top:35px;
}

.wizard-buttons button{
    padding:14px 34px;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.prev-btn{
    background:#ddd;
}

.next-btn{
    background:#002147;
    color:#fff;
}

.next-btn:hover{
    transform:translateY(-2px);
}

.prev-btn:hover{
    transform:translateY(-2px);
}
/* ===========================
   SEARCH SECTION
=========================== */

.search-section{
    padding:80px 10%;
    background:#f8faf9;
    text-align:center;
}

.search-section h2{
    color:#0b7d3b;
    font-size:38px;
    margin-bottom:15px;
}

.search-section p{
    max-width:700px;
    margin:0 auto 35px;
    color:#555;
    line-height:1.8;
}

.search-box{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.search-box input{
    width:600px;
    max-width:100%;
    padding:18px 22px;
    border:1px solid #ddd;
    border-radius:50px;
    font-size:17px;
    outline:none;
    transition:.3s;
}

.search-box input:focus{
    border-color:#0b7d3b;
    box-shadow:0 0 12px rgba(11,125,59,.20);
}

.search-box .btn{
    padding:18px 35px;
}

.popular-searches{
    margin-top:20px;
    color:#555;
}

.popular-searches span{
    display:inline-block;
    margin:8px;
    padding:10px 18px;
    background:white;
    border-radius:30px;
    border:1px solid #ddd;
    transition:.3s;
    cursor:pointer;
}

.popular-searches span:hover{
    background:#0b7d3b;
    color:white;
}
/* ===== Specializations Section ===== */

.spec-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:20px;
}

.spec-card{
    background:#ffffff;
    padding:20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    font-weight:600;
    transition:0.3s;
}

.spec-card:hover{
    transform:translateY(-5px);
    background:#003366;
    color:#ffffff;
}
/* ===== Placement Highlight Cards ===== */

.placement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 25px 0;
}

.placement-card {
    background: #174a96;
    color: #ffffff;
    text-align: center;
    padding: 22px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.placement-card h3 {
    font-size: 29px;
    margin: 0 0 8px;
}

.placement-card p {
    margin: 0;
    font-size: 15px;
    opacity: 0.95;
}

.placement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.14);
}

@media (max-width: 768px) {
    .placement-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== Campus Gallery ===== */

.campus-gallery {
    width: 100%;
    max-width: 900px;
    height: 360px;
    object-fit: cover;
    display: block;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.campus-gallery:hover {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .campus-gallery {
        height: 260px;
    }
}
/* ===== Admission Process ===== */

/* ===== Admission Process ===== */

.admission-steps {
    max-width: 760px;
    margin: 25px auto;
    padding-left: 0;
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.6;
}

.admission-steps li {
    background: #ffffff;
    margin-bottom: 12px;
    padding: 15px 20px;
    border-left: 4px solid #174a96;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

.admission-steps li:hover {
    transform: translateX(4px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
    .admission-steps {
        font-size: 15px;
    }

    .admission-steps li {
        padding: 13px 15px;
    }
}
/* ===== Student Reviews ===== */

/* ===== Student Reviews ===== */

.review-card {
    background: #ffffff;
    padding: 20px 22px;
    margin: 16px 0;
    border-left: 4px solid #174a96;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.review-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin: 12px 0;
}

.review-card h4 {
    color: #174a96;
    margin: 0;
    font-size: 14px;
}
/* ===== FAQ Section ===== */

/* ===== FAQ ===== */

details {
    background: #ffffff;
    margin: 14px 0;
    padding: 0;
    border: 1px solid #e1e7ef;
    border-left: 4px solid #174a96;
    border-radius: 9px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

details:hover {
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.10);
}

summary {
    padding: 17px 20px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    color: #174a96;
    list-style-position: inside;
}

summary::marker {
    color: #174a96;
}

details[open] summary {
    background: #f5f8fc;
}

details p {
    margin: 0;
    padding: 0 20px 18px;
    line-height: 1.7;
    color: #444;
    font-size: 15px;
}
/* ===== Sticky Apply Button ===== */

.sticky-apply-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#ff6600;
    color:#ffffff;
    text-decoration:none;
    padding:15px 25px;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    transition:0.3s;
    z-index:999;
}

.sticky-apply-btn:hover{
    background:#003366;
    transform:scale(1.05);
}
.college-tagline strong{
    color:#0d6efd;
}
.apply-note{
    margin-top:15px;
    font-size:15px;
    color:#28a745;
    font-weight:600;
}
.apply-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:8px;
}
.response-time{
    font-size:14px;
    color:#666;
    margin:10px 0 20px;
    font-style:italic;
}
.brochure-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#f8f9fa;
    color:#003366;
    text-decoration:none;
    border:2px solid #003366;
    border-radius:8px;
    font-weight:600;
}
.brochure-btn:hover{
    background:#003366;
    color:#ffffff;
}
.overview-text {
    max-width: 900px;
    margin: 0 auto;
}

.overview-text p {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.spec-card {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-left: 4px solid #174a96;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Campus Facilities ===== */

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.facility-card {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-left: 4px solid #174a96;
    padding: 18px;
    border-radius: 9px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Top Recruiters ===== */

.recruiter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.recruiter-card {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-top: 4px solid #174a96;
    padding: 22px 15px;
    text-align: center;
    border-radius: 9px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.recruiter-card h3 {
    margin: 0;
    color: #174a96;
    font-size: 20px;
}

.recruiter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
    .recruiter-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Final Apply Section ===== */

.final-apply {
    background: #f5f8fc;
    border: 1px solid #e1e7ef;
    border-top: 4px solid #174a96;
    text-align: center;
    padding: 30px 20px;
    margin: 35px 0 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.final-apply h2 {
    color: #174a96;
    margin: 0 0 10px;
}

.final-apply p {
    color: #555;
    line-height: 1.6;
}

.final-apply .apply-btn {
    margin-top: 10px;
    background: #174a96;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
}

.final-apply .apply-btn:hover {
    background: #0f3975;
    transform: translateY(-2px);
}

.final-apply .apply-note {
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}
/* ===== IMT MOBILE - STUDENT REVIEWS ===== */

.review-card {
    width: 100%;
    margin: 15px 0;
    padding: 20px;
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
}

.review-card h4 {
    font-size: 14px;
}

@media (max-width: 768px) {

    .review-card {
        padding: 18px 16px;
        margin: 12px 0;
    }

    .review-card p {
        font-size: 15px;
        line-height: 1.6;
        word-wrap: break-word;
    }

}
/* ===== IMT MOBILE - FAQ ===== */

@media (max-width: 768px) {

    details {
        width: 100%;
        margin: 12px 0;
        border-radius: 10px;
    }

    summary {
        padding: 15px 16px;
        font-size: 15px;
        line-height: 1.5;
    }

    details p {
        padding: 0 16px 16px;
        font-size: 14px;
        line-height: 1.6;
    }

}
/* ===== FAQ MOBILE FINAL FIX ===== */

@media (max-width: 768px) {

    .section {
        padding: 25px 18px;
        margin-bottom: 20px;
    }

    .section h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    details {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 0;
    }

    summary {
        display: block;
        width: 100%;
        padding: 16px;
        font-size: 16px;
        line-height: 1.45;
        white-space: normal;
    }

    details p {
        display: block;
        width: 100%;
        padding: 12px 16px 18px;
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }

}
/* ===== FAQ TEXT ALIGNMENT ===== */

@media (max-width: 768px) {

    details {
        text-align: center;
    }

    summary {
        text-align: center;
    }

    details p {
        text-align: center;
    }

}
/* ===== LIGHTER PLACEMENT CARDS ===== */

.placement-card {
    background: #eaf2fb;
    color: #174a96;
    border: 1px solid #d4e2f2;
}

.placement-card h3 {
    color: #174a96;
}

.placement-card p {
    color: #555;
}