: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;
}

/* ==========================
   B.PHARM PAGE BANNER
========================== */

.bpharm-banner{
    position: relative;
    width: 100%;
    height: 420px;
    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;
}
.bpharm-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.bpharm-banner-content{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.bpharm-banner-content h1{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.bpharm-breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.bpharm-breadcrumb a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.bpharm-breadcrumb a:hover{
    color: var(--primary-green);
}
.bpharm-breadcrumb span{
    color: #fff;
    font-size: 15px;
}
/* Responsive */
@media (max-width: 992px){
    .bpharm-banner{
        height: 350px;
    }
    .bpharm-banner-content h1{
        font-size: 45px;
    }
}
@media (max-width: 576px){
    .bpharm-banner{
        height: 280px;
    }
    .bpharm-banner-content h1{
        font-size: 32px;
    }
    .bpharm-breadcrumb{
        font-size: 14px;
        gap: 6px;
    }
}
/* ==========================
   COURSE OVERVIEW SECTION
========================== */

.course-overview-section{
    padding:100px 0;
    background:var(--white);
    overflow:hidden;
}

.course-overview-image{
    position:relative;
}

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

.course-overview-image:hover img{
    transform:scale(1.03);
}

.course-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(29,136,132,.12);
    color:var(--primary-green);
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.course-overview-content h2{
    font-size:42px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:20px;
}

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

.overview-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 35px;
    background:var(--primary-green);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    margin-top:15px;
}

.overview-btn:hover{
    background:var(--dark-green);
    color:#fff;
    transform:translateY(-5px);
}

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

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

/* 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);
}

/* Responsive */

@media(max-width:991px){

    .course-overview-section{
        padding:80px 0;
    }

    .course-overview-content{
        text-align:center;
    }

    .course-overview-content h2{
        font-size:36px;
    }
}

@media(max-width:576px){

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

    .course-overview-section{
        padding:60px 0;
    }
}
/* ==========================
   DURATION & INTAKE
========================== */
.duration-intake{
    padding:50px 0;
    background:#fff;
}
.duration-intake .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title span{
    display:inline-block;
    background:black !important;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}
.section-title h2{
    font-size:42px;
    color:#000000;
    margin-bottom:15px;
    font-weight: 700;
}
.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
.duration-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:80px;
}
.info-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #1d8884;
}
.info-card:hover{
    transform:translateY(-10px);
}
.card-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#eef8f2;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}
.card-icon i{
    font-size:32px;
    color:#1d8884;
}
.info-card h3{
    color:black;
    margin-bottom:15px;
}
.highlight{
    font-size:42px;
    font-weight:700;
    color:#1d8884;
    margin-bottom:15px;
}
.info-card p{
    color:#666;
    line-height:1.7;
}
/* Roadmap */
.roadmap-item{
    position:relative;
    z-index:2;
    background:#f8faf8;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
}
.roadmap-item span{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:black;
    color:#fff;
    border-radius:50%;
    margin:auto auto 15px;
    font-weight:600;
}
.roadmap-item p{
    color:#444;
    font-weight:500;
}
/* Responsive */
@media(max-width:991px){
    .duration-grid{
        grid-template-columns:1fr;
    }
    .semester-roadmap{
        grid-template-columns:repeat(2,1fr);
    }
    .semester-roadmap::before{
        display:none;
    }
}
@media(max-width:576px){
    .semester-roadmap{
        grid-template-columns:1fr;
    }
    .section-title h2{
        font-size:30px;
    }
    .highlight{
        font-size:34px;
    }
}
/* ==========================
   ELIGIBILITY SECTION
========================== */
.bpharm-eligibility{
    padding:50px 0;
    background:#f8faf8;
}
.bpharm-eligibility .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}
.eligibility-heading{
    text-align:center;
    margin-bottom:60px;
}
/* .eligibility-heading span{
    display:inline-block;
    background:#0b6b3a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
} */
.eligibility-heading h2{
    font-size:42px;
    color:#000000;
    margin-bottom:15px;
    font-weight: 700;
}
.eligibility-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
.eligibility-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.eligibility-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.4s;
}
.eligibility-card:hover{
    transform:translateY(-10px);
}
.icon-box{
    width:80px;
    height:80px;
    margin:auto;
    background:#eef8f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}
.icon-box i{
    font-size:32px;
    color:#1d8884;
}
.eligibility-card h3{
    color:#000000;
    margin-bottom:12px;
    font-size:22px;
}
.eligibility-card p{
    color:#666;
    line-height:1.7;
}
/* Admission Process */
.admission-process{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.process-step{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
}
.process-step span{
    width:60px;
    height:60px;
    background:#9d0808;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 15px;
    font-weight:700;
}
.process-step h4{
    color:#0b6b3a;
    margin:0;
}
/* Responsive */
@media(max-width:991px){
    .eligibility-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .admission-process{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .eligibility-grid,
    .admission-process{
        grid-template-columns:1fr;
    }

    .eligibility-heading h2{
        font-size:30px;
    }
}
/* =========================
   CURRICULUM STRUCTURE
========================= */
.curriculum-section{
    padding:50px 0;
    background:#fff;
}
.curriculum-header{
    text-align:center;
    margin-bottom:50px;
}
.curriculum-header h2{
    color:#000000;
    margin-top:10px;
    font-size:42px;
    font-weight: 700;
}
.semester-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.semester-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border:1px solid #1d8884;
    transition:.4s;
    position:relative;
    overflow:hidden;
}
.semester-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#1d8884;
}
.semester-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.semester-card span{
    display:inline-block;
    background:#f1f8f4;
    color:#0b6b3a;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}
.semester-card h4{
    color:#1d8884;
    margin-bottom:12px;
    font-weight: 600;
}
.semester-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}
@media(max-width:991px){
    .semester-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .semester-grid{
        grid-template-columns:1fr;
    }
    .curriculum-header h2{
        font-size:30px;
    }
}
/* ==========================
   LABS & TRAINING SECTION
========================== */

.labs-training-section{
    padding:100px 0;
    background:#f5faf7;
    overflow: hidden;
}

.section-header{
    max-width:800px;
    margin:auto;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-header p{
    color:#666;
    line-height:1.8;
}

/* Cards */

.lab-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid transparent;
}

.lab-card:hover{
    transform:translateY(-10px);
    border-color:#1d8884;
}

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

.lab-card:hover .lab-icon{
    background:#1d8884;
}

.lab-icon i{
    font-size:32px;
    color:#1d8884;
}

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

.lab-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.lab-card p{
    color:#666;
    line-height:1.8;
}

/* Dots */

.carousel-indicators{
    top:350px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50%;
    background:#1d8884 !important;
    opacity:.4;
}

.carousel-indicators .active{
    opacity:1;
}

#labsCarousel{
    padding-bottom:80px;
}

/* Mobile */

@media(max-width:991px){

    .carousel-item .row{
        justify-content:center;
    }

    .carousel-item .col-lg-4{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .labs-training-section{
        padding:70px 0;
    }

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

    .lab-card{
        padding:25px;
    }
}
/* ==========================
   CAREER OPPORTUNITIES
========================== */

.career-opportunities-section{
    padding:80px 0;
    background:#fff;
    overflow: hidden;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

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

/* Career Card */

.career-card{
    background:#fff;
    border:1px solid rgba(29,136,132,.15);
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    
}

.career-card:hover{
    background:#1d8884;
    transform:translateY(-10px);
}

.career-card i{
    font-size:45px;
    color:#1d8884;
    margin-bottom:15px;
    transition:.4s;
}

.career-card h5{
    margin:0;
    font-weight:600;
    color:#222;
    transition:.4s;
}

.career-card:hover i,
.career-card:hover h5{
    color:#fff;
}

/* Pagination */

.carousel-indicators{
    bottom:-60px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50%;
    background:#1d8884 !important;
    opacity:.4;
}

.carousel-indicators .active{
    opacity:1;
}

#careerCarousel{
    padding-bottom:80px;
}

/* Animation */

.carousel-item{
    animation: fadeSlide .8s ease;
}

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:991px){

    .career-opportunities-section{
        padding:80px 0;
    }

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

@media(max-width:576px){

    .career-opportunities-section{
        padding:60px 0;
    }

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

    .career-card{
        padding:25px;
    }

    .career-card i{
        font-size:38px;
    }
}
/* ==========================
   HIGHER EDUCATION OPTIONS
========================== */
.higher-education{
    padding:50px 0;
    background:#fff;
}
.he-header{
    text-align:center;
    margin-bottom:50px;
}
.he-header span{
    color:#0b6b3a;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}
.he-header h2{
    color:#1d8884;
    font-size:40px;
    margin-top:10px;
}
.he-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.he-card{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}
.he-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#1d8884;
}
.he-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}
.he-card i{
    font-size:42px;
    color:#E42525;
    margin-bottom:18px;
}
.he-card h4{
    margin:0;
    color:#333;
    font-size:18px;
}
@media(max-width:991px){
    .he-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .he-grid{
        grid-template-columns:1fr;
    }
    .he-header h2{
        font-size:30px;
    }
}
/* ==========================
   PLACEMENT SUPPORT SECTION
========================== */

.placement-support-section{
    padding:100px 0;
    background:var(--light-bg);
    overflow:hidden;
}

.section-heading{
    max-width:800px;
    margin:auto;
}

.placement-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(29,136,132,.12);
    color:var(--primary-green);
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:15px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

.placement-support-content h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--text-dark);
}

.placement-support-content p{
    color:#666;
    line-height:1.9;
}

/* Support List */

.placement-support-list{
    margin:30px 0;
}

.support-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    padding:15px 20px;
    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.4s;
}

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

.support-item i{
    color:var(--primary-green);
    font-size:20px;
}

/* Button */

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

.placement-support-btn:hover{
    background:var(--dark-green);
    color:#fff;
    transform:translateY(-5px);
}

/* Cards */

.placement-support-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.support-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

.support-card:hover{
    transform:translateY(-10px);
    background:var(--primary-green);
}

.support-card i{
    font-size:40px;
    color:var(--primary-green);
    margin-bottom:15px;
    transition:.4s;
}

.support-card h4{
    margin-bottom:10px;
    font-weight:600;
    transition:.4s;
}

.support-card p{
    color:#666;
    transition:.4s;
}

.support-card:hover i,
.support-card:hover h4,
.support-card:hover p{
    color:#fff;
}

/* 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);
}

/* Responsive */

@media(max-width:991px){

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

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

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

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

@media(max-width:767px){

    .placement-support-cards{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

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

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

    .placement-support-content h3{
        font-size:24px;
    }
}
/* ==========================
   ADMISSION PROCESS V2
========================== */

.admission-process-v2{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.admission-heading{
    max-width:800px;
    margin:auto;
}

.admission-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(29,136,132,.1);
    color:var(--primary-green);
    font-weight:600;
    margin-bottom:15px;
}

.admission-heading h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.admission-heading p{
    color:#666;
}

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

.admission-card.show{
    opacity:1;
    transform:translateY(0);
}

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

.step-no{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:700;
    color:rgba(29,136,132,.08);
}

.admission-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:20px;
    transition:.4s;
}

.admission-card:hover .admission-icon{
    background:#1d8884;
}

.admission-icon i{
    font-size:35px;
    color:#1d8884;
    transition:.4s;
}

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

.admission-card h5{
    font-weight:600;
    margin-bottom:15px;
}

.admission-card p{
    color:#666;
    margin:0;
    line-height:1.8;
}

/* Desktop Connecting Line */

@media(min-width:992px){

    .admission-card::after{
        content:"";
        position:absolute;
        top:45px;
        right:-30px;
        width:60px;
        height:3px;
        background:#1d8884;
    }

    .col-lg:last-child .admission-card::after{
        display:none;
    }
}

/* Responsive */

@media(max-width:991px){

    .admission-process-v2{
        padding:80px 0;
    }

    .admission-heading h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .admission-process-v2{
        padding:60px 0;
    }

    .admission-heading h2{
        font-size:28px;
    }
}

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

.faq-section{
    padding:60px 0;
    background:var(--light-bg);
}
.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:40px;
    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:#052A29;
}
.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:#1d8884;
    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;
    }
}
/* Center the button */
.apply-btn-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 0;
}
/* ==========================
   APPLY NOW CTA
========================== */
.apply-cta-section{
    padding:100px 20px;
    background:#052a29;
    text-align:center;
    overflow:hidden;
    position:relative;
}
.apply-cta-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-100px;
    left:-100px;
}
.apply-cta-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    bottom:-100px;
    right:-100px;
}
.apply-cta-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}
.cta-tag{
    display:inline-block;
    background:#fff;
    color:#0b6b3a;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.apply-cta-content h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}
.apply-cta-content p{
    color:rgba(255,255,255,0.9);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}
.apply-now-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 42px;
    background:#fff;
    color:#0b6b3a;
    text-decoration:none;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}
.apply-now-btn i{
    transition:.3s;
}
.apply-now-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}
.apply-now-btn:hover i{
    transform:translateX(5px);
}
/* Responsive */
@media(max-width:768px){
    .apply-cta-content h2{
        font-size:34px;
    }
    .apply-cta-content p{
        font-size:16px;
    }
    .apply-now-btn{
        padding:16px 35px;
        font-size:17px;
    }
}