:root {
    --primary-green: #1d8884;
    --dark-green: #13514e;
    --primary-red: #E42525;
    --mint: #9fd4c0;
    --white: #ffffff;
    --light-bg: #f5faf7;
    --text-dark: #222222;
    --border-color: #e5e5e5;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --font-primary: "Poppins", sans-serif;
}

/* ==========================
   ADMISSION PAGE BANNER
========================== */

.admission-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background: url("https://images.unsplash.com/photo-1663229050533-d9ad9c0b4301?q=80&w=1170&auto=format&fit=crop")
        center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.admission-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.admission-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.admission-banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.admission-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.admission-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.admission-breadcrumb a:hover {
    color: var(--primary-green);
}

.admission-breadcrumb span {
    color: #fff;
    font-size: 15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {

    .admission-banner {
        height: 350px;
    }

    .admission-banner-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 576px) {

    .admission-banner {
        height: 280px;
    }

    .admission-banner-content h1 {
        font-size: 32px;
    }

    .admission-breadcrumb {
        gap: 6px;
        font-size: 14px;
    }
}
/* Admission Overview */
.admission-overview-section{
    padding:50px 0;
    background:#f8fbfb00;
}

.section-header span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
}

.section-header h2{
    font-size:48px;
    font-weight:700;
    margin:10px 0;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* Statistics */

.stat-card{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h3{
    color:#1d8884;
    font-size:42px;
    font-weight:700;
}

.stat-card p{
    margin:0;
    color:#666;
}

/* Image */

.overview-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

/* Content */

.overview-content{
    padding-left:40px;
}

.overview-content h3{
    font-size:36px;
    margin-bottom:30px;
}

.highlight-item{
    background:#fff;
    margin-bottom:15px;
    padding:18px 20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.4s;
}

.highlight-item:hover{
    transform:translateX(10px);
}

.highlight-item i{
    color:#1d8884;
    margin-right:10px;
}

/* Responsive */

@media(max-width:991px){

    .overview-content{
        padding-left:0;
        margin-top:40px;
    }

    .section-header h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .admission-overview-section{
        padding:70px 0;
    }

    .section-header h2{
        font-size:30px;
    }

    .stat-card h3{
        font-size:32px;
    }

    .overview-content h3{
        font-size:28px;
    }
}
/* ==========================
   WHY JOIN KRIMS
========================== */

.why-join-section{
    padding:50px 0;
    background:var(--light-bg);
    overflow:hidden;
}
.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin:12px 0;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Cards */

.why-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:#1d8884;
    transition:.5s;
}

.why-card:hover::before{
    left:0;
}

.why-card:hover{
    transform:translateY(-12px);
}

/* Icon */

.icon-box{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(29,136,132,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.5s;
}

.icon-box i{
    font-size:36px;
    color:#1d8884;
}

.why-card:hover .icon-box{
    background:#1d8884;
    transform:rotateY(180deg);
}

.why-card:hover .icon-box i{
    color:#fff;
}

/* Content */

.why-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}
@media(max-width:991px){

    .why-join-section{
        padding:80px 0;
    }

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

@media(max-width:767px){

    .why-join-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .why-card{
        padding:30px 20px;
    }

    .icon-box{
        width:75px;
        height:75px;
    }

    .icon-box i{
        font-size:30px;
    }
}
/* ==========================
   ELIGIBILITY CRITERIA
========================== */

.eligibility-section{
    padding:100px 0;
    background:#f8fbfb00;
}

.section-title span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin:12px 0;
    color:#222;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Card */

.eligibility-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.eligibility-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:#1d8884;
}

.eligibility-card:hover{
    transform:translateY(-12px);
}

/* Featured Card */

.featured-card{
    border:2px solid #1d8884;
    transform:scale(1.03);
}

.popular-tag{
    position:absolute;
    top:15px;
    right:-35px;
    background:#1d8884;
    color:#fff;
    padding:8px 40px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:600;
}

/* Icon */

.course-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(29,136,132,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.4s;
}

.course-icon i{
    font-size:38px;
    color:#1d8884;
}

.eligibility-card:hover .course-icon{
    background:#1d8884;
    transform:rotateY(180deg);
}

.eligibility-card:hover .course-icon i{
    color:#fff;
}

/* Content */

.eligibility-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.eligibility-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}
.eligibility-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.course-btn{
    display:inline-block;
    text-decoration:none;
    background:#1d8884;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    transition:.4s;
}

.course-btn:hover{
    background:#13514e;
    color:#fff;
}
@media(max-width:991px){

    .eligibility-section{
        padding:80px 0;
    }

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

    .featured-card{
        transform:none;
    }
}

@media(max-width:767px){

    .eligibility-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .eligibility-card{
        padding:30px 20px;
    }

    .course-icon{
        width:75px;
        height:75px;
    }

    .course-icon i{
        font-size:30px;
    }

    .eligibility-card h3{
        font-size:24px;
    }
}
/* ==========================
   APPLICATION PROCESS
========================== */

.application-process-section{
    padding:60px 0;
    background:#f8fbfb;
    overflow:hidden;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin:12px 0;
    color:#222;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Timeline */

.process-timeline{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.process-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#1d8884;
    transform:translateX(-50%);
}

.process-step{
    position:relative;
    width:50%;
    padding:20px 50px;
    margin-bottom:40px;
}

.process-step:nth-child(odd){
    left:0;
    text-align:right;
}

.process-step:nth-child(even){
    left:50%;
}

.step-count{
    position:absolute;
    top:20px;
    width:70px;
    height:70px;
    background:#1d8884;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    z-index:2;
    transition:.4s;
}

.process-step:nth-child(odd) .step-count{
    right:-35px;
}

.process-step:nth-child(even) .step-count{
    left:-35px;
}

.step-content{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.step-content h4{
    color:#1d8884;
    margin-bottom:12px;
    font-weight:700;
}

.step-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}

.process-step:hover .step-content{
    transform:translateY(-10px);
}

.process-step:hover .step-count{
    transform:scale(1.15);
}
@media(max-width:991px){

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

    .process-timeline::before{
        left:30px;
    }

    .process-step{
        width:100%;
        left:0 !important;
        padding-left:90px;
        padding-right:0;
        text-align:left !important;
    }

    .step-count{
        left:0 !important;
        right:auto !important;
        width:60px;
        height:60px;
        font-size:18px;
    }
}

@media(max-width:767px){

    .application-process-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .step-content{
        padding:20px;
    }
}
/* ==========================
   REQUIRED DOCUMENTS
========================== */

.required-documents{
    padding:70px 0;
    background:#ffffff00;
}

.section-heading{
    margin-bottom:60px;
}

.section-heading span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    margin:10px 0;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* Document List */

.documents-list{
    max-width:900px;
    margin:auto;
}

.document-row{
    display:flex;
    align-items:center;
    background:#fff;
    padding:25px 30px;
    margin-bottom:18px;
    border-radius:18px;
    border-left:5px solid #1d8884;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.document-row::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(29,136,132,.08);
    transition:.5s;
}

.document-row:hover::before{
    left:0;
}

.document-row:hover{
    transform:translateX(12px);
}

.doc-number{
    font-size:32px;
    font-weight:700;
    color:#1d8884;
    min-width:80px;
}

.document-row h4{
    flex:1;
    margin:0;
    font-size:22px;
    font-weight:600;
    position:relative;
    z-index:2;
}

.doc-status{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#1d8884;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.doc-status i{
    font-size:20px;
}@media(max-width:768px){

    .required-documents{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:32px;
    }

    .document-row{
        padding:18px;
    }

    .doc-number{
        min-width:55px;
        font-size:24px;
    }

    .document-row h4{
        font-size:17px;
    }

    .doc-status{
        width:40px;
        height:40px;
    }
}

/* ==========================
   FEE STRUCTURE CTA
========================== */

.fee-cta-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #1d8884 0%,
        #13514e 100%
    );
    position: relative;
    overflow: hidden;
}

.fee-cta-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.fee-cta-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

.fee-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.fee-cta-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fee-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.fee-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1d8884;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.fee-cta-btn:hover {
    transform: translateY(-5px);
    background: #f8f8f8;
    color: #13514e;
}

.fee-cta-btn i {
    transition: transform 0.3s ease;
}

.fee-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .fee-cta-section {
        padding: 60px 20px;
    }

    .fee-cta-content h2 {
        font-size: 32px;
    }

    .fee-cta-content p {
        font-size: 16px;
    }

    .fee-cta-btn {
        padding: 14px 28px;
    }
}

@media (max-width: 576px) {
    .fee-cta-content h2 {
        font-size: 28px;
    }

    .fee-cta-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* ==========================
   SCHOLARSHIP SECTION
========================== */

.scholarship-section{
    padding:50px 0;
    background:#f8fbfb00;
    overflow:hidden;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin:10px 0;
    color:#222;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Layout */

.scholarship-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.scholarship-content{
    flex:1;
}

.scholarship-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(29,136,132,.1);
    color:#1d8884;
    padding:12px 20px;
    border-radius:50px;
    margin-bottom:25px;
}

.scholarship-badge i{
    font-size:20px;
}

.scholarship-content h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.scholarship-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.scholarship-btn{
    display:inline-block;
    background:#1d8884;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
}

.scholarship-btn:hover{
    background:#145f5c;
    color:#fff;
    transform:translateY(-5px);
}

/* Right Side */

.scholarship-points{
    flex:1;
}

.point-item{
    display:flex;
    gap:25px;
    margin-bottom:25px;
    padding-bottom:25px;
    border-bottom:1px solid #e5e5e5;
    transition:.4s;
}

.point-item:hover{
    transform:translateX(10px);
}

.point-item span{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#1d8884;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.point-item h5{
    color:#222;
    font-weight:700;
    margin-bottom:8px;
}

.point-item p{
    margin:0;
    color:#666;
}@media(max-width:991px){

    .scholarship-wrapper{
        flex-direction:column;
        gap:40px;
    }

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

    .scholarship-content h3{
        font-size:34px;
    }
}

@media(max-width:767px){

    .scholarship-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .scholarship-content h3{
        font-size:28px;
    }

    .point-item{
        gap:15px;
    }

    .point-item span{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:16px;
    }
}
/* ==========================
   IMPORTANT DATES
========================== */

.important-dates-section{
    padding:100px 0;
    background:#f8fbfb;
    overflow:hidden;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#1d8884;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin:12px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Timeline */

.dates-wrapper{
    max-width:900px;
    margin:auto;
    position:relative;
}

.dates-wrapper::before{
    content:"";
    position:absolute;
    left:50px;
    top:0;
    width:3px;
    height:100%;
    background:#1d8884;
}

.date-item{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:40px;
    position:relative;
}

.date-box{
    width:100px;
    height:100px;
    min-width:100px;
    background:#1d8884;
    color:#fff;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
    transition:.4s;
}

.date-box span{
    font-size:32px;
    font-weight:700;
    line-height:1;
}

.date-box small{
    font-size:14px;
    letter-spacing:2px;
}

.date-content{
    flex:1;
    background:#fff;
    padding:25px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.date-content h4{
    color:#1d8884;
    font-weight:700;
    margin-bottom:10px;
}

.date-content p{
    margin:0;
    color:#666;
}

.date-item:hover .date-box{
    transform:rotate(-8deg) scale(1.08);
}

.date-item:hover .date-content{
    transform:translateX(10px);
}
@media(max-width:991px){

    .important-dates-section{
        padding:80px 0;
    }

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

@media(max-width:767px){

    .important-dates-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .dates-wrapper::before{
        left:35px;
    }

    .date-item{
        gap:15px;
    }

    .date-box{
        width:70px;
        height:70px;
        min-width:70px;
        border-radius:15px;
    }

    .date-box span{
        font-size:22px;
    }

    .date-box small{
        font-size:10px;
    }

    .date-content{
        padding:18px;
    }

    .date-content h4{
        font-size:18px;
    }
}
/* ==========================
   APPLY NOW CTA
========================== */

.apply-cta-section{
    padding:100px 0;
    background:#f8fbfb;
}

.apply-cta-wrapper{
    position:relative;
    background:#1d8884;
    border-radius:30px;
    padding:70px;
    overflow:hidden;
}

/* Background Shapes */

.apply-cta-wrapper::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.apply-cta-wrapper::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-80px;
    left:-80px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.cta-content h2{
    font-size:52px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;
    line-height:1.3;
}

.cta-content p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* Buttons */

.cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.admission-btn{
    background:#E42525 !important;
    color:#ffffff;
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.admission-btn:hover{
    transform:translateY(-5px);
    color:#1d8884;
}

.admission-btn i{
    margin-left:8px;
}

.brochure-btn{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.brochure-btn:hover{
    background:#fff;
    color:#1d8884;
}

/* Stats */

.cta-stats{
    display:flex;
    flex-direction:column;
    gap:25px;
    align-items:center;
}

.stat-circle{
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.4s;
}

.stat-circle:hover{
    transform:scale(1.08);
}

.stat-circle h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
}

.stat-circle span{
    font-size:15px;
}
@media(max-width:991px){

    .apply-cta-wrapper{
        padding:50px 35px;
        text-align:center;
    }

    .cta-content h2{
        font-size:40px;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-stats{
        margin-top:40px;
        flex-direction:row;
        justify-content:center;
    }
}

@media(max-width:767px){

    .apply-cta-section{
        padding:70px 0;
    }

    .apply-cta-wrapper{
        padding:40px 20px;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:16px;
    }

    .stat-circle{
        width:120px;
        height:120px;
    }

    .stat-circle h3{
        font-size:28px;
    }

    .stat-circle span{
        font-size:12px;
    }
}