: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;
}
/* ==========================
   ABOUT PAGE BANNER
========================== */
.about-banner{
    position: relative;
    width: 100%;
    height: 450px;
    background: url("https://images.unsplash.com/photo-1663229050533-d9ad9c0b4301?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Dark Overlay */
.about-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.banner-content{
    position: relative;
    /* z-index: 2; */
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}
.banner-content h1{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}
.breadcrumb-custom a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.breadcrumb-custom a:hover{
    color: #0b6b3a;
}
.breadcrumb-custom span{
    color: #fff;
    font-size: 15px;
}
/* Responsive */
@media(max-width:992px){
    .about-banner{
        height: 350px;
        text-align: center;
    }
    .banner-content h1{
        font-size: 45px;
    }
}
@media(max-width:576px){
    .about-banner{
        height: 280px;
    }
    .banner-content h1{
        font-size: 32px;
    }
    .breadcrumb-custom{
        padding: 10px 18px;
        font-size: 14px;
    }
}
/*=========================
 CAMPUS OVERVIEW
=========================*/
.campus-overview{
    background:#eef4f2;
    padding:100px 0;
    overflow:hidden;
}
.section-tag{
    color:var(--primary-green);
    font-weight:700;
    font-size:42px;
    margin-bottom:15px;
    display:block;
}
.overview-content h2{
    font-size:20px;
    font-weight:700px !important;
    color:var(--text-dark);
    line-height:1.2;
    margin-bottom:25px;
}
.overview-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}
.overview-list{
    padding:0;
    margin:30px 0;
    list-style:none;
}
.overview-list li{
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
    color:var(--text-dark);
}
.overview-list i{
    color:var(--primary-green);
    margin-right:10px;
}
.krims-btn{
    display:inline-block;
    background:var(--primary-green);
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}
.krims-btn:hover{
    background:var(--primary-red);
    color:#fff;
    transform:translateY(-3px);
}
/* Right Side */
.overview-image-wrapper{
    position:relative;
    width:100%;
    height:650px;
}
/* Main Circle */
.main-circle{
    width:550px;
    height:550px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    position:absolute;
    right:0;
    top:50px;
    animation:floatMain 5s ease-in-out infinite;
}
.main-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* Small Circles */
.small-circle{
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    box-shadow:var(--shadow);
}
.small-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.top-circle{
    width:180px;
    height:180px;
    top:0;
    left:160px;
    animation:floatSmall 4s infinite;
}
.left-circle{
    width:120px;
    height:120px;
    left:20px;
    top:220px;
    animation:floatSmall 5s infinite;
}
/* Decorative Dots */
.dot{
    position:absolute;
    border-radius:50%;
}
.dot1{
    width:60px;
    height:60px;
    background:var(--primary-green);
    left:100px;
    bottom:40px;
}
.dot2{
    width:50px;
    height:50px;
    background:var(--mint);
    right:20px;
    top:60px;
}
.dot3{
    width:55px;
    height:55px;
    background:var(--primary-red);
    right:40px;
    bottom:80px;
    opacity:.8;
}
/* Animations */
@keyframes floatMain{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}
@keyframes floatSmall{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}
/* Responsive */
@media(max-width:991px){
    .overview-content{
        text-align:center;
    }
    .overview-content h2{
        font-size:42px;
    }
    .overview-image-wrapper{
        height:500px;
        margin-top:40px;
    }
    .main-circle{
        width:350px;
        height:350px;
        position:relative;
        top:0;
    }
    .top-circle{
        width:120px;
        height:120px;
        left:50%;
        transform:translateX(-50%);
    }
    .left-circle{
        width:90px;
        height:90px;
        left:20px;
        top:150px;
    }
}
@media(max-width:576px){
    .overview-content h2{
        font-size:34px;
    }
    .overview-content p{
        font-size:16px;
    }
    .main-circle{
        width:280px;
        height:280px;
    }
}
/* why choose krims */
.krims-why-choose{
    background:var(--white);
    font-family:var(--font-primary);
    overflow:hidden;
}
.sub-title{
    color:var(--primary-green);
    font-weight:700;
    font-size:18px;
    position:relative;
    display:inline-block;
}
.sub-title::before,
.sub-title::after{
    content:'';
    position:absolute;
    top:50%;
    width:60px;
    height:2px;
    background:var(--primary-green);
}
.sub-title::before{
    right:110%;
}
.sub-title::after{
    left:110%;
}
.why-image{
    overflow:hidden;
    border-radius:50px 0 50px 0;
    box-shadow:var(--shadow);
    position:relative;
}
.why-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:0.8s;
}
.why-image:hover img{
    transform:scale(1.08);
}
.why-card{
    background:var(--white);
    text-align:center;
    padding:20px 10px;
    border-radius:20px;
    /* border:1px solid var(--border-color); */
    height:100%;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}
.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--primary-green);
    transform:scaleX(0);
    transition:.4s;
}
.why-card:hover::before{
    transform:scaleX(1);
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(11,107,58,.15);
}
.icon-circle{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:var(--mint);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom:20px;
}
.icon-circle::before{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    border:4px solid var(--dark-green);
    border-bottom:none;
    border-left:none;
    border-right:none;
    border-radius:50%;
    top:-9px;
}
.icon-circle i{
    font-size:34px;
    color:var(--dark-green);
    transition:.4s;
}
.why-card:hover .icon-circle{
    background:var(--primary-green);
}
.why-card:hover .icon-circle i{
    color:#fff;
    transform:rotateY(360deg);
}
.why-card h5{
    font-weight:700;
    margin-bottom:12px;
    color:var(--text-dark);
}
.why-card p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:15px;
}
/* Animation */
.why-card{
    animation:fadeUp .8s ease forwards;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* Responsive */
@media(max-width:991px){
    .section-heading h2{
        font-size:34px;
    }
    .why-image img{
        height:400px;
    }
}
@media(max-width:767px){
    .section-heading h2{
        font-size:28px;
    }
    .sub-title::before,
    .sub-title::after{
        display:none;
    }
    .why-image img{
        height:300px;
    }
    .icon-circle{
        width:75px;
        height:75px;
    }
    .icon-circle i{
        font-size:28px;
    }
}
/* approvals and affiliatios */
.approval-section{
    padding:70px 0 !important;
    background:var(--light-bg);
}
.section-heading span{
    color:var(--primary-green);
    font-size:18px;
    font-weight:700;
}
.section-heading h2{
    font-size:42px;
    font-weight:700;
    /* margin-top:10px; */
    color:var(--primary-green);
}
.approval-slider{
    margin-top:60px;
    overflow:hidden;
    position:relative;
}
.approval-slider::before,
.approval-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}
.approval-slider::before{
    left:0;
    background:linear-gradient(to right,#fff,transparent);
}
.approval-slider::after{
    right:0;
    background:linear-gradient(to left,#fff,transparent);
}
.approval-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scroll 25s linear infinite;
}
.approval-slider:hover .approval-track{
    animation-play-state:paused;
}
.approval-card{
    min-width:240px;
    background:#fff;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    border:1px solid #e5e5e5;
    box-shadow:var(--shadow);
    transition:.4s;
    position:relative;
    overflow:hidden;
}
.approval-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );
    transform:translateX(-100%);
}
.approval-card:hover::before{
    animation:shine 1s;
}
.approval-card:hover{
    /* transform:translateY(-10px); */
    border-color:var(--primary-green);
}
.approval-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:rgba(11,107,58,.1);
    color:var(--primary-green);
    font-size:30px;
    margin-bottom:20px;
    transition:.5s;
}
.approval-card:hover i{
    background:var(--primary-green);
    color:#fff;
    transform:rotateY(360deg);
}
.approval-card h5{
    margin:0;
    font-weight:700;
    font-size:18px;
}
@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
@keyframes shine{
    100%{
        transform:translateX(200%);
    }
}
/* Mobile */
@media(max-width:768px){
    .section-heading h2{
        font-size:30px;
    }
    .approval-card{
        min-width:190px;
        padding:25px 15px;
    }
    .approval-card i{
        width:65px;
        height:65px;
        line-height:65px;
        font-size:24px;
    }
}
/*  Mission and Vision */
.mission-vision-section{
    font-family:var(--font-primary);
    overflow:hidden;
}
.section-header span{
    color:var(--primary-green);
    font-weight:700;
    font-size:42px;
}
.section-header h2{
    font-size:40px;
    font-weight:700;
    color:var(--text-dark);
    margin-top:10px;
}
.mv-card{
    background:var(--primary-green);
    color:#fff;
    padding:30px 25px;
    position:relative;
    min-height:220px;
    transition:.4s;
    box-shadow:var(--shadow);
}
.vision-card{
    border-radius:0 120px 120px 0;
    bottom:100px;
}
.mission-card{
    border-radius:120px 0 0 120px;
    top:80px;
}
.mv-card:hover{
    transform:translateY(-10px);
}
.mv-icon{
    width:70px;
    height:70px;
    background:var(--primary-red);
    border-radius:50%;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:5px solid rgba(255,255,255,.15);
}
.mv-icon i{
    color:#fff;
    font-size:28px;
}
.mv-card h4{
    text-align:center;
    font-weight:700;
    margin-bottom:12px;
}
.mv-card p{
    text-align:center;
    font-size:15px;
    line-height:1.7;
    margin:0;
}
.center-image{
    width:250px;
    height:450px;
    margin:auto;
    overflow:hidden;
    box-shadow: 0px 0px rgba(0, 0, 0, 0.558);
    border-radius:
    120px 120px 120px 120px ;   
}
.center-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.center-image:hover img{
    transform:scale(1.08);
}
/* Responsive */
@media(max-width:991px){
    .center-image{
        width:250px;
        height:300px;
    }
    .vision-card,
    .mission-card{
        border-radius:30px;
    }
}
@media(max-width:767px){
    .section-header h2{
        font-size:28px;
    }
    .mv-card{
        min-height:auto;
        padding:25px 20px;
    }
    .center-image{
        width:220px;
        height:270px;
    }
}
/* Leadesrhip section */
/* ===========================
   LEADERSHIP TEAM
=========================== */
.leadership-section{
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}
/* Heading */
.section-heading h2{
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-heading p{
    max-width: 750px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}
/* Card */
.leader-card{
    width: 100%;
    max-width: 280px;
    height: 440px;
    margin: auto;
    background: #fff;
    border-radius: 150px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: .6s ease;
}
/* Top Background */
.leader-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );
    transition: .6s ease;
}
/* Image */
.leader-image{
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid var(--mint);
    z-index: 2;
    transition: .6s ease;
}
.leader-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}
/* Content */
.leader-content{
    position: absolute;
    top: 290px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    transition: .6s ease;
}
.leader-content h4{
    color:black;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.6s ease;
}
.leader-content span{
    color: #E42525;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.6s ease;
}
/* Hover Effects */
.leader-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.leader-card:hover .leader-content h4{
    color: #ffffff;
}
.leader-card:hover::before{
    height: 130px;
}
.leader-card:hover .leader-content{
    top: 60px;
}
.leader-card:hover .leader-image{
    top: 185px;
}
.leader-card:hover .leader-image img{
    transform: scale(1.1);
}
/* Responsive */
@media (max-width: 991px){
    .section-heading h2{
        font-size: 38px;
    }
    .leader-card{
        max-width: 260px;
        height: 420px;
    }
    .leader-image{
        width: 190px;
        height: 190px;
    }
    .leader-content{
        top: 270px;
    }
    .leader-card:hover .leader-image{
        top: 170px;
    }
}
@media (max-width: 576px){
    .section-heading h2{
        font-size: 30px;
    }
    .leader-card{
        max-width: 280px;
    }
    .leader-image{
        width: 180px;
        height: 180px;
    }
    .leader-content h4{
        font-size: 20px;
    }
    .leader-content{
        top: 255px;
    }
    .leader-card:hover .leader-image{
        top: 165px;
    }
}
/* ==========================
   CAMPUS HIGHLIGHTS
========================== */
.campus-highlights{
    background: mintcream;
}
/* Heading */
.section-title span{
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h2{
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 700;
    margin: 12px 0;
}
.section-title p{
    max-width: 700px;
    margin: auto;
    color: #666;
}
/* Cards */
.highlight-card{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 290px;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.highlight-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}
/* Zoom Image */
.highlight-card:hover img{
    transform: scale(1.15);
}
/* Overlay */
.overlay{
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to top,
        rgba(11,107,58,.92),
        rgba(11,107,58,.15)
    ); */
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: .5s;
}
.highlight-card:hover .overlay{
    opacity: 1;
}
.overlay h5{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transform: translateY(30px);
    transition: .5s;
}
.highlight-card:hover .overlay h5{
    transform: translateY(0);
}
/* Button */
.gallery-btn{
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    transition: .4s;
}
.gallery-btn:hover{
    background: var(--primary-green);
    color: var(--primary-red);
    transform: translateY(-3px);
}
/* Responsive */
@media(max-width:991px){
    .section-title h2{
        font-size: 38px;
    }
    .highlight-card{
        height: 250px;
    }
}
@media(max-width:576px){
    .section-title h2{
        font-size: 30px;
    }
    .highlight-card{
        height: 220px;
    }
}
/* Key statistics */
/* ==========================
   KRIMS STATISTICS SECTION
========================== */

.krims-statistics-section{
    padding:80px 0;
    background:#f5faf7;
}

.krims-stats-title{
    text-align:center;
    margin-bottom:50px;
}

.krims-stats-title h2{
    color:#1d8884;
    font-size:42px;
    font-weight:700;
    margin:0;
}

.krims-stats-grid{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.krims-stat-card{
    width:280px;
    background:#1d8884;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

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

.krims-stat-label{
    color:rgba(255,255,255,.8);
    font-size:16px;
    margin-bottom:15px;
}

.krims-stat-value{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:0;
}

/* Tablet */
@media(max-width:991px){

    .krims-stat-card{
        width:240px;
    }

    .krims-stats-title h2{
        font-size:36px;
    }

}

/* Mobile */
@media(max-width:768px){

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

    .krims-stat-card{
        width:100%;
        max-width:320px;
    }

    .krims-stat-value{
        font-size:34px;
    }

}
/* CTA */
/*==========================
 KRIMS CTA SECTION
==========================*/

.krims-cta-banner{
    padding:80px 0;
    background:var(--light-bg);
}

.krims-cta-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:70px 40px;
    background:linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );
    box-shadow:var(--shadow);
}

/* Content */

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

.krims-cta-content h2{
    color:var(--white);
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.krims-cta-content p{
    color:rgba(255,255,255,0.85);
    font-size:16px;
    max-width:650px;
    margin:0 auto 30px;
    line-height:1.8;
}

/* Buttons */

.krims-cta-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-admission,
.btn-course{
    text-decoration:none;
    padding:14px 32px;
    border-radius:9px;
    font-weight:600;
    transition:.4s ease;
}

.btn-admission{
    background:var(--primary-red);
    color:var(--white);
}

.btn-admission:hover{
    background:var(--light-red);
    color:var(--white);
    transform:translateY(-4px);
}

.btn-course{
    background:transparent;
    border:2px solid var(--white);
    color:var(--white);
}

.btn-course:hover{
    background:var(--white);
    color:var(--primary-green);
    transform:translateY(-4px);
}

/* Floating Shapes */

.shape{
    position:absolute;
    background:rgba(255,255,255,0.12);
    animation:floatShape 6s ease-in-out infinite;
}

.shape-1{
    width:90px;
    height:90px;
    left:30px;
    top:40px;
    transform:rotate(45deg);
}

.shape-2{
    width:60px;
    height:60px;
    right:50px;
    top:50px;
    transform:rotate(45deg);
    animation-delay:1s;
}

.shape-3{
    width:45px;
    height:45px;
    left:80px;
    bottom:40px;
    transform:rotate(45deg);
    animation-delay:2s;
}

.shape-4{
    width:70px;
    height:70px;
    right:80px;
    bottom:35px;
    transform:rotate(45deg);
    animation-delay:3s;
}

@keyframes floatShape{
    0%{
        transform:translateY(0) rotate(45deg);
    }
    50%{
        transform:translateY(-15px) rotate(45deg);
    }
    100%{
        transform:translateY(0) rotate(45deg);
    }
}

/* Responsive */

@media(max-width:991px){

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

    .krims-cta-box{
        padding:60px 25px;
    }
}

@media(max-width:768px){

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

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

    .btn-admission,
    .btn-course{
        width:100%;
        max-width:240px;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4{
        transform:scale(.7) rotate(45deg);
    }
}