: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;
}
html,
body{
    overflow-x: hidden;
    width: 100%;
}

img{
    max-width: 100%;
    height: auto;
}

.programs-intro-section,
.available-courses,
.admission-process,
.career-opportunities,
.brochure-cta,
.placement-section,
.faq-section{
    overflow: hidden;
}
/* ==========================
   PROGRAMS PAGE BANNER
========================== */
.programs-banner{
    position: relative;
    width: 100%;
    height: 450px;
    background: url("../images/programs/Program\ Banner\ \(1\).webp")
                center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.programs-banner-content{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    padding: 0 20px;

}

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

.programs-breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    /* margin-left: -1100px; */
}
.programs-breadcrumb{
    justify-content: flex-start;
    margin-left: 0;
}

.programs-breadcrumb a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

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

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

/* ==========================
   TABLET
========================== */
@media (max-width: 992px){

    .programs-banner{
        height: 380px;
    }

    .programs-banner-content h1{
        font-size: 48px;
        text-align: center;
    }
}

@media (max-width: 768px){

    .programs-banner{
        height: 320px;

        background:
            url("../images/programs/Program Banner mobile.webp")
            center 60px/cover no-repeat;

        display: flex;
        align-items: center;      /* Vertical center */
        justify-content: center;  /* Horizontal center */
        text-align: center;
    }

    .programs-banner-content{
        width: 100%;
        padding: 0 20px;
    }

    .programs-banner-content h1{
        font-size: 36px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        text-align: center;
    }

    .programs-breadcrumb{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .programs-breadcrumb span,
    .programs-breadcrumb a{
        font-size: 14px;
        text-align: center !important;
        color: #fff !important;
    }
}

/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px){

    .programs-banner{
        height: 280px;
    }

    .programs-banner-content h1{
        font-size: 28px;
    }

    .programs-breadcrumb{
        font-size: 13px;
    }

    .programs-breadcrumb span{
        font-size: 13px;
    }
}

/*introduction*/
/* ===================================
   PROGRAMS INTRO SECTION
=================================== */

.programs-intro-section{
    padding:80px 0;
    background:#f8fbf9;
    overflow:hidden;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(11,107,58,.1);
    color:#1d8884;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.programs-content h2{
    font-size:42px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:20px;
    line-height:1.3;
}

.programs-content h2 span{
    color:var(--primary-green);
}

.programs-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

.program-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature-box{
    background:#fff;
    padding:18px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
    font-weight:600;
}

.feature-box:hover{
    transform:translateY(-8px);
    border-left:4px solid var(--primary-green);
}

.feature-box i{
    color:var(--primary-red);
    margin-right:10px;
}

.programs-btn{
    background:var(--primary-red);
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
    transition:.4s;
}

.programs-btn:hover{
    background:var(--primary-green);
    color:#fff;
    transform:translateY(-4px);
}

/* Right Image */

.programs-image-wrapper{
    position:relative;
}

.main-image{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    transition:.5s;
}

.programs-image-wrapper:hover .main-image{
    transform:scale(1.03);
}

.experience-card{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    animation:floatCard 3s ease-in-out infinite;
}

.experience-card h3{
    color:var(--primary-red);
    font-size:36px;
    font-weight:700;
    margin-bottom:5px;
}

.experience-card p{
    margin:0;
    color:#666;
    font-size:14px;
}

.floating-icon{
    position:absolute;
    top:30px;
    right:-20px;
    width:80px;
    height:80px;
    background:var(--primary-green);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    animation:rotateIcon 8s linear infinite;
    box-shadow:0 15px 35px rgba(11,107,58,.25);
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes rotateIcon{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Responsive */

@media(max-width:991px){

    .programs-intro-section{
        padding:80px 0;
    }

    .programs-content h2{
        font-size:38px;
    }

    .experience-card{
        left:10px;
    }

    .floating-icon{
        right:10px;
    }
}

@media(max-width:767px){

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

    .program-features{
        grid-template-columns:1fr;
    }

    .experience-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

    .floating-icon{
        width:60px;
        height:60px;
        font-size:22px;
    }
}
/* ==================================
   AVAILABLE COURSES SECTION
================================== */
/* 
.available-courses{
    padding:80px 0;
    background:#f8f9fa;
}

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

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

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

/* CARD */

.course-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.5s;
    border-bottom: 4px solid #1d8884;
     height:550px;
}

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

.course-img{
    height:260px;
    overflow:hidden;
}

.course-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.course-card:hover .course-img img{
    transform:scale(1.12);
}

/* CONTENT */

.course-content{
    position:relative;
    padding:35px;
    z-index:2;
}

.course-content h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
    transition:.5s;
}

.course-content p{
    color:#666;
    line-height:1.8;
    transition:.5s;
}

.course-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 30px;
    background:#1d8884;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.4s;
}

/* BOTTOM TO TOP OVERLAY */

.course-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:#1d888488;
    transition:.6s ease;
    z-index:1;
}

.course-card:hover::before{
    bottom:0;
}

/* TEXT COLOR CHANGE */

.course-card:hover h3,
.course-card:hover p{
    color:#000000;
}

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

/* CONTENT SLIDE UP */

.course-content{
    transition:.6s;
}

.course-card:hover .course-content{
    transform:translateY(-20px);
}

/* RESPONSIVE */

@media(max-width:991px){

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

    .course-img{
        height:220px;
    }
}

@media(max-width:767px){

    .available-courses{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }
    .section-title p{
        font-size:16px;
    }
    .course-content{
        padding:25px;
    }

    .course-content h3{
        font-size:24px;
    }

    .course-img{
        height:200px;
    }
} */
/* =========================
   our working section
========================= */
.admission-process {
  background: var(--light-bg); 
}
/* spacing */
.process-wrapper {
  margin-top: 70px;
}
.step-top {
  transform: translateY(-30px);
}
.step-bottom {
  transform: translateY(45px);
}
.step-card {
  position: relative;
  text-align: center;
}
/* curved dashed connector */
.curve {
  position: absolute;
  width: 250px;
  height: 120px;
  right: -125px;
  z-index: 0;
  border-radius: 50%;
  border-style: dashed;
  border-color: #adadad;
  animation: dashMove 18s linear infinite;
}
/* top to down */
.curve-down {
  top: 10px;
  border-width: 2px 0 0 0;
}
/* down to top */
.curve-up {
  top: -65px;
  border-width: 0 0 2px 0;
}
.last-step .curve {
  display: none;
}
/* icon */
.icon-box {
  width: 110px;
  height: 110px;
  background: var(--primary-green);
  border-radius: 50%;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 15px 30px rgba(11,107,58,.25);
}
.icon-box i {
  font-size: 42px;
  color: white;
}
/* content */
.step-card h4 {
  margin-top: 28px;
  font-size: 23px;
  font-weight: 700;
}
.step-card p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  max-width: 290px;
  margin: auto;
}
/* zig-zag positioning */
.step-top {
  transform: translateY(-30px);
}
.step-bottom {
  transform: translateY(45px);
}
.step-card {
  position: relative;
  text-align: center;
  z-index: 2;
}
/* floating */
.icon-box {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}
/* dashed movement */
@keyframes dashMove {
  to {
    background-position: 100px;
  }
}
/* responsive */
@media(max-width:991px){
  .curve{
    display:none;
  }
  .step-top,
  .step-bottom{
    transform:none;
  }
  .step-card{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:var(--shadow);
  }
  .section-title{
    font-size:42px;
  }
}
/* Career Opportunities */

.career-opportunities{
    padding:100px 0;
    background:#f8fbfb;
}

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

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

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

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

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

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

.career-item:nth-child(even){
    flex-direction:row-reverse;
}

.career-icon{
    width:90px;
    height:90px;
    min-width:90px;
    background:#1d8884;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:35px;
    z-index:2;
    transition:.4s;
}

.career-content{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    width:40%;
    transition:.4s;
}

.career-content h3{
    color:#1d8884;
    margin-bottom:10px;
}

.career-item:hover .career-icon{
    transform:scale(1.1) rotate(10deg);
}

.career-item:hover .career-content{
    transform:translateY(-10px);
}

/* Responsive */

@media(max-width:768px){

    .career-wrapper::before{
        left:30px;
    }

    .career-item,
    .career-item:nth-child(even){
        flex-direction:row;
    }

    .career-content{
        width:100%;
    }

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

    .career-icon{
        width:70px;
        height:70px;
        min-width:70px;
        font-size:28px;
    }
}
/* ==========================
   BROCHURE CTA SECTION
========================== */

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

.brochure-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #1d8884,
        #16706d81
    );
    padding:60px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(29,136,132,.25);
}

/* Content */

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.brochure-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.brochure-content p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

/* Button */

.download-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#1d8884;
    padding:18px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    position:relative;
    z-index:2;
}

.download-btn:hover{
    background:#0f5f5c;
    color:#fff;
    transform:translateY(-5px);
}

/* Floating Shapes */

.shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.1);
}

.shape-1{
    width:180px;
    height:180px;
    top:-50px;
    right:-50px;
    animation:float 6s infinite ease-in-out;
}

.shape-2{
    width:120px;
    height:120px;
    bottom:-30px;
    left:40%;
    animation:float 8s infinite ease-in-out;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:991px){

    .brochure-box{
        padding:45px;
        text-align:center;
    }

    .brochure-content h2{
        font-size:38px;
    }

    .download-btn{
        margin-top:25px;
    }
}

@media(max-width:767px){

    .brochure-cta{
        padding:70px 0;
    }

    .brochure-box{
        padding:35px 25px;
        border-radius:20px;
    }

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

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

    .download-btn{
        width:100%;
        justify-content:center;
    }
}
/* ==========================
   PLACEMENT OPPORTUNITIES
========================== */

.placement-section{
    padding:50px 0;
    background:#ffffff;
    overflow:hidden;
}

.placement-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(29,136,132,.1);
    color:#1d8884;
    font-weight:600;
    margin-bottom:20px;
}

.placement-content h2{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    color:#222;
    margin-bottom:20px;
}

.placement-content h2 span{
    color:#1d8884;
}

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

/* Features */

.placement-features{
    margin:30px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    padding:15px 20px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.4s;
}

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

.feature-item i{
    color:#1d8884;
    font-size:20px;
}

/* Button */

.placement-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 35px;
    background:#1d8884;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.placement-btn:hover{
    background:#13514e;
    color:#fff;
    transform:translateY(-5px);
}

.placement-btn i{
    transition:.4s;
}

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

/* Image */

.placement-image{
    position:relative;
}

.placement-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    height: 500px;
}

.placement-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#1d8884;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(29,136,132,.3);
}

.placement-box i{
    font-size:35px;
    margin-bottom:10px;
}

.placement-box h4{
    margin-bottom:5px;
    font-weight:700;
}

/* Animation */

.reveal-left,
.reveal-right{
    opacity:0;
    transition:1s ease;
}

.reveal-left{
    transform:translateX(-80px);
}

.reveal-right{
    transform:translateX(80px);
}

.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}


/* Tablet */
@media (max-width: 992px){
    .placement-image img{
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .placement-image img{
        height: 300px;
        border-radius: 20px;
    }
}

/* Small Mobile */
@media (max-width: 576px){
    .placement-image img{
        height: 250px;
        border-radius: 15px;
    }
}
/* Responsive */

@media(max-width:991px){

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

    .placement-content{
        text-align:center;
    }

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

    .feature-item{
        justify-content:center;
    }

    .placement-box{
        right:10px;
    }
}

@media(max-width:576px){

    .placement-section{
        padding:60px 0;
    }

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

    .placement-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
    padding:60px 0;
    background:#f8faf8;
}
.faq-header{
    text-align:center;
    margin-bottom:50px;
}
.faq-header span{
    color:#1d8884;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}
.faq-header h2{
    color:#1d8884;
    font-size:42px;
    margin-top:10px;
}
.faq-wrapper{
    max-width:900px;
    margin:auto;
}
.faq-item{
    background:#fff;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    transition:.3s;
}
.faq-item.active{
    border-color:#E42525;
}
.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 25px;
    cursor:pointer;
}
.faq-question h4{
    margin:0;
    color:#333;
    font-size:18px;
    padding-right:15px;
}
.faq-question i{
    color:#E42525;
    transition:.3s;
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}
.faq-answer p{
    margin:0;
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}
.faq-item.active .faq-answer{
    max-height:200px;
}
.faq-item.active .faq-question i{
    transform:rotate(45deg);
}
@media(max-width:576px){
    .faq-header h2{
        font-size:30px;
    }
    .faq-question{
        padding:18px;
    }
    .faq-question h4{
        font-size:16px;
    }
}

/* AVAILABLE COURSES */
.available-courses{
    background: var(--light-bg);
}

.section-title h2{
    color: var(--dark-green);
    font-size: 42px;
    font-weight: 700;
}

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

.course-card{
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

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

.course-img{
    overflow: hidden;
}

.course-img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.course-card:hover .course-img img{
    transform: scale(1.08);
}

.course-content{
    padding: 30px;
    text-align: center;
}

.course-content h3{
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.course-content p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.course-btn:hover{
    background: var(--primary-red);
    color: #fff;
}

@media(max-width:768px){
    .section-title h2{
        font-size: 32px;
    }

    .course-img img{
        height: 220px;
    }
}

/* Eligibilty */
.krims-eligibility{
    background: var(--light-bg);
}

.eligibility-tag{
    display:inline-block;
    padding:8px 18px;
    background: rgba(29,136,132,.1);
    color: var(--primary-green);
    border-radius:30px;
    font-weight:600;
}

.eligibility-heading{
    margin-top:15px;
    font-size:42px;
    font-weight:700;
    color:var(--dark-green);
}

.eligibility-text{
    max-width:700px;
    margin:auto;
    color:#666;
}

.eligibility-card{
    background: var(--white);
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

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

.eligibility-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary-green));
}

.eligibility-icon{
    width:75px;
    height:75px;
    background:rgba(29,136,132,.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.eligibility-icon i{
    font-size:30px;
    color:var(--primary-green);
}

.eligibility-card h3{
    color:var(--dark-green);
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.eligibility-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.eligibility-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    color:#555;
    line-height:1.7;
}

.eligibility-card ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:var(--primary-green);
    font-weight:700;
}

@media(max-width:768px){

    .eligibility-heading{
        font-size:32px;
    }

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

    .eligibility-card h3{
        font-size:24px;
    }
}

