/********** Template CSS **********/
:root {
    --primary: #ff3300;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
    background-color: #ff3300;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    align-items: center;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}



/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.whatsapp-float-pro {
    position: fixed;
    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: #fff;

    border-radius: 50px;
    padding: 8px 16px 8px 8px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
    font-size: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;

    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float-pro .icon {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-pro:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
}
/* Testimonial Fix */
.testimonial-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.testimonial-item {
    text-align: center;
    padding: 30px;
}

.testimonial-item img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    margin: auto;
}

.testimonial-item p {
    max-width: 700px;
    margin: auto;
}
/* PREMIUM WHY SECTION */

.why-premium{
background: linear-gradient(135deg,#0C2B4B,#021626);
color:white;
position:relative;
overflow:hidden;
}

/* section title */

.section-title h6{
color:#ff3300;
letter-spacing:2px;
text-transform:uppercase;
font-weight:600;
}

.section-title h1{
font-size:42px;
font-weight:700;
margin-top:10px;
}

.section-title p{
color:#d1d1d1;
max-width:600px;
margin:auto;
margin-top:10px;
}


/* WHY PREMIUM WHITE SECTION */

.why-premium{
background:#ffffff;
}

/* section title */

.section-title h6{
color:#ff3300;
letter-spacing:2px;
text-transform:uppercase;
font-weight:600;
}

.section-title h1{
font-size:40px;
font-weight:700;
margin-top:10px;
color:#0C2B4B;
}

.section-title p{
color:#666;
max-width:600px;
margin:auto;
margin-top:10px;
}


/* CARD */

.premium-card{
background:#ffffff;
border-radius:12px;
padding:40px 25px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.4s;
border:1px solid #eee;
position:relative;
}

/* hover effect */

.premium-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}


/* ICON */

.premium-icon{
width:75px;
height:75px;
margin:auto;
border-radius:50%;
background:#ff3300;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#0C2B4B;
margin-bottom:20px;
transition:0.4s;
}

/* icon animation */

.premium-card:hover .premium-icon{
transform:rotate(360deg) scale(1.1);
}


/* numbers */

.premium-card h2{
font-size:36px;
font-weight:700;
color:#0C2B4B;
margin-bottom:10px;
}


/* text */

.premium-card p{
font-size:16px;
color:#777;
margin:0;
}
.counter{
font-size:42px;
font-weight:700;
color:#0C2B4B;
margin-bottom:10px;
}
/* WHY CHOOSE US SECTION */

.why-section{
background:#ffffff;
}

.why-card{
background:#fff;
padding:40px 25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.why-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
background:#ff3300;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
}

.why-card h2{
font-size:42px;
font-weight:700;
color:#0C2B4B;
margin-bottom:10px;
}

.why-card p{
font-size:16px;
color:#555;
}
.text-primary {
  color: #ff3300 !important; /* Orange instead of yellow for text */
}

.about-clean-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-clean-image-wrap {
    position: relative;
    padding: 20px 20px 40px 20px;
    min-height: 560px;
}

.about-clean-bg-shape {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 240px;
    height: 240px;
    background: rgba(255, 102, 26, 0.08);
    border-radius: 50%;
    z-index: 1;
    animation: aboutPulse 4s ease-in-out infinite;
}

.about-clean-main-image {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.about-clean-main-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-clean-main-image:hover img {
    transform: scale(1.06);
}

.about-clean-experience {
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 3;
    background: linear-gradient(135deg, #0d2f5b, #123f78);
    color: #fff;
    padding: 22px 28px;
    border-radius: 22px;
    box-shadow: 0 18px 35px rgba(13, 47, 91, 0.28);
    animation: floatY 3s ease-in-out infinite;
}

.about-clean-experience h2 {
    font-size: 44px;
    line-height: 1;
    margin: 0 0 8px;
    color: #ff661a;
    font-weight: 800;
}

.about-clean-experience p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.about-clean-content {
    padding-left: 10px;
}

.about-clean-subtitle {
    display: inline-block;
    color: #ff661a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
}

.about-clean-subtitle::after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 2px;
    background: #ff661a;
    margin-left: 12px;
    vertical-align: middle;
}

.about-clean-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 22px;
}

.about-clean-title span {
    color: #ff661a;
    display: block;
}

.about-clean-text {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 18px;
}

.about-clean-feature-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-clean-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.about-clean-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
}

.about-clean-feature .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff661a, #ff884d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-clean-feature .text h5 {
    font-size: 19px;
    color: #0d2f5b;
    margin: 0 0 6px;
    font-weight: 700;
}

.about-clean-feature .text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

.about-clean-points {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-clean-points span {
    background: #fff7f2;
    color: #0d2f5b;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 16px;
    border-radius: 12px;
    display: block;
}

.about-clean-points i {
    color: #ff661a;
    margin-right: 8px;
}

.about-clean-bottom {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.about-clean-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 60px;
    padding: 10px 18px 10px 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.about-clean-call i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff661a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-clean-call small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

.about-clean-call strong {
    display: block;
    font-size: 17px;
    color: #0d2f5b;
    font-weight: 700;
}

/* Animation */
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes aboutPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Tablet */
@media (max-width: 1199.98px) {
    .about-clean-title {
        font-size: 40px;
    }

    .about-clean-main-image img {
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .about-clean-image-wrap {
        min-height: auto;
        padding: 10px 10px 40px;
    }

    .about-clean-content {
        padding-left: 0;
    }

    .about-clean-title {
        font-size: 34px;
    }

    .about-clean-feature-list,
    .about-clean-points {
        grid-template-columns: 1fr;
    }

    .about-clean-main-image img {
        height: 430px;
    }

    .about-clean-experience {
        right: 20px;
        bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .about-clean-title {
        font-size: 28px;
    }

    .about-clean-text {
        font-size: 15px;
    }

    .about-clean-main-image {
        border-radius: 22px;
    }

    .about-clean-main-image img {
        height: 320px;
    }

    .about-clean-experience {
        padding: 16px 18px;
        border-radius: 18px;
        right: 15px;
    }

    .about-clean-experience h2 {
        font-size: 28px;
    }

    .about-clean-experience p {
        font-size: 13px;
    }

    .about-clean-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .about-clean-bottom .btn,
    .about-clean-call {
        width: 100%;
        justify-content: center;
    }
}

.why-choose-fixed {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-fixed-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.why-fixed-subtitle::before,
.why-fixed-subtitle::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.why-fixed-title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 18px;
}

.why-fixed-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    max-width: 720px;
    margin: 0 auto;
}

.why-fixed-layout {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    align-items: center;
    gap: 28px;
    position: relative;
}

/* sides */
.why-fixed-side {
    position: relative;
}

.why-fixed-side.left::before,
.why-fixed-side.right::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 340px;
    background: rgba(255, 100, 27, 0.10);
    z-index: 1;
}

.why-fixed-side.left::before {
    left: 0;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.why-fixed-side.right::before {
    right: 0;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.why-fixed-panel {
    position: relative;
    z-index: 2;
    padding: 55px 40px;
}

.why-fixed-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 34px;
}

.why-fixed-item:last-child {
    margin-bottom: 0;
}

.why-fixed-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 25px rgba(255, 100, 27, 0.25);
    transition: all 0.35s ease;
}

.why-fixed-item:hover .why-fixed-icon {
    transform: translateY(-6px) scale(1.05);
}

.why-fixed-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0d2f5b;
    margin-bottom: 8px;
}

.why-fixed-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
    margin: 0;
}

/* center */
.why-fixed-center {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.why-fixed-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 45px;
    position: relative;
    animation: whyCircleFloat 4s ease-in-out infinite;
}

.why-fixed-circle::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px dashed rgba(13, 47, 91, 0.08);
    border-radius: 50%;
}

.why-fixed-badge {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d2f5b, #174882);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.why-fixed-circle h3 {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 800;
    color: #0C2B4B;;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.why-fixed-circle p {
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* bottom */
.why-fixed-bottom-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #edf1f5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.why-fixed-bottom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}

.why-fixed-bottom-card i {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}

.why-fixed-bottom-card h5 {
    font-size: 21px;
    font-weight: 700;
    color:#0C2B4B;
    margin-bottom: 10px;
}

.why-fixed-bottom-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    margin: 0;
}

@keyframes whyCircleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* tablet */
@media (max-width: 1199.98px) {
    .why-fixed-layout {
        grid-template-columns: 1fr 320px 1fr;
        gap: 20px;
    }

    .why-fixed-circle {
        width: 320px;
        height: 320px;
        padding: 35px;
    }

    .why-fixed-title {
        font-size: 40px;
    }

    .why-fixed-text h4 {
        font-size: 21px;
    }

    .why-fixed-side.left::before,
    .why-fixed-side.right::before {
        height: 300px;
    }
}

/* mobile */
@media (max-width: 991.98px) {
    .why-fixed-layout {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 40px;
    }

    .why-fixed-center {
        order: -1;
    }

    .why-fixed-side.left::before,
    .why-fixed-side.right::before {
        display: none;
    }

    .why-fixed-panel {
        padding: 26px 22px;
        background: linear-gradient(135deg, rgba(255,100,27,0.08), rgba(13,47,91,0.04));
        border-radius: 24px;
    }

    .why-fixed-title {
        font-size: 34px;
    }

    .why-fixed-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .why-fixed-title {
        font-size: 28px;
    }

    .why-fixed-desc {
        font-size: 15px;
    }

    .why-fixed-circle {
        width: 280px;
        height: 280px;
        padding: 28px;
    }

    .why-fixed-badge {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .why-fixed-circle h3 {
        font-size: 22px;
    }

    .why-fixed-circle p {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-fixed-text h4 {
        font-size: 19px;
    }

    .why-fixed-text p {
        font-size: 14px;
    }

    .why-fixed-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 20px;
        border-radius: 14px;
    }

    .why-fixed-bottom-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .why-fixed-bottom-card h5 {
        font-size: 18px;
    }
}
.journey-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

.journey-subtitle {
    color: #ff641b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

.journey-title {
    font-size: 46px;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 15px;
}

.journey-desc {
    font-size: 17px;
    color: #667085;
    line-height: 1.8;
}

/* TIMELINE */
.journey-timeline {
    position: relative;
    margin-top: 50px;
}

/* center line */
.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(#ff641b, #0d2f5b);
    transform: translateX(-50%);
}

/* ITEM */
.journey-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.journey-item.right {
    left: 50%;
}

/* CONTENT BOX */
.journey-content {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.journey-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.journey-content h4 {
    font-size: 22px;
    color: #0C2B4B;
    margin-bottom: 10px;
}

.journey-content p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
}

/* ICON */
.journey-icon {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(255,100,27,0.3);
    z-index: 2;
}

/* right side icon */
.journey-item.right .journey-icon {
    left: -30px;
}

/* animation pulse */
.journey-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,100,27,0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* MOBILE */
@media (max-width: 991px) {

    .journey-timeline::before {
        left: 20px;
    }

    .journey-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .journey-item.right {
        left: 0;
    }

    .journey-icon {
        left: 0;
        right: auto;
    }

    .journey-item.right .journey-icon {
        left: 0;
    }
}

@media (max-width: 767px) {
    .journey-title {
        font-size: 30px;
    }

    .journey-content {
        padding: 20px;
    }

    .journey-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

.stats-section {
    background: linear-gradient(135deg, #0d2f5b, #163f78);
    position: relative;
    overflow: hidden;
}

/* light overlay effect */
.stats-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 100, 27, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.stats-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 100, 27, 0.08);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.stat-box {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0;
    border-radius: 0;
}

/* remove hover effect */
.stat-box:hover {
    transform: none;
    background: none;
}

.stat-box i {
    font-size: 36px;
    color: #ff641b;
    margin-bottom: 15px;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: #dbe4ff;
    margin: 0;
}

/* mobile */
@media (max-width: 767px) {
    .stat-box {
        padding: 25px 15px;
    }

    .stat-box h2 {
        font-size: 30px;
    }
}

.courses-modern {
    position: relative;
   background: url("../img/carousel-1.jpg")center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.courses-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.82) 35%,
        rgba(255, 255, 255, 0.78) 100%
    );
    z-index: 1;
}

.courses-modern .container {
    z-index: 2;
}

.courses-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.courses-subtitle::before,
.courses-subtitle::after {
    content: "";
    width: 34px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.courses-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 15px;
}

.courses-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin: 0;
}

.courses-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 47, 91, 0.10);
    transition: all 0.4s ease;
    border: 1px solid rgba(13, 47, 91, 0.06);
    backdrop-filter: blur(10px);
}

.courses-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(13, 47, 91, 0.16);
}

.courses-card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.courses-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.courses-card:hover .courses-card-image {
    transform: scale(1.08);
}

.courses-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 47, 91, 0.05) 0%,
        rgba(13, 47, 91, 0.35) 100%
    );
}

.courses-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 22px rgba(255, 100, 27, 0.26);
}

.courses-card-badge i {
    margin-right: 6px;
}

.courses-card-body {
    position: relative;
    padding: 28px 24px 24px;
    text-align: center;
}

.courses-icon {
    width: 72px;
    height: 72px;
    margin: -64px auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0d2f5b, #174882);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(13, 47, 91, 0.25);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.courses-card:hover .courses-icon {
    transform: rotateY(180deg) translateY(-4px);
    background: linear-gradient(135deg, #ff641b, #ff8a52);
}

.courses-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 14px;
    line-height: 1.3;
}

.courses-card-text {
    font-size: 16px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 20px;
    min-height: 145px;
}

.courses-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 18px;
}

.courses-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7f2;
    color: #0d2f5b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 40px;
}

.courses-meta i {
    color: #ff641b;
}

.courses-card-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ff641b, #0d2f5b);
    border-radius: 10px;
    margin: 0 auto;
    transition: width 0.4s ease;
}

.courses-card:hover .courses-card-line {
    width: 120px;
}

/* floating card animation */
.courses-card {
    animation: cardFloat 4s ease-in-out infinite;
}

.courses-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes cardFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* keep hover stronger than float */
.courses-card:hover {
    animation: none;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .courses-title {
        font-size: 40px;
    }

    .courses-card-title {
        font-size: 24px;
    }

    .courses-card-text {
        min-height: 170px;
    }
}

@media (max-width: 991.98px) {
    .courses-modern {
        background-attachment: scroll;
    }

    .courses-title {
        font-size: 34px;
    }

    .courses-card-text {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .courses-title {
        font-size: 28px;
    }

    .courses-desc {
        font-size: 15px;
    }

    .courses-card-image-wrap {
        height: 220px;
    }

    .courses-card-body {
        padding: 24px 18px 20px;
    }

    .courses-card-title {
        font-size: 21px;
    }

    .courses-card-text {
        font-size: 14px;
    }

    .courses-meta span {
        font-size: 13px;
        padding: 9px 12px;
    }

    .courses-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
        margin-top: -56px;
    }
}

.training-process-section {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.training-process-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 100, 27, 0.07);
    border-radius: 50%;
    top: -90px;
    left: -80px;
}

.training-process-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(13, 47, 91, 0.05);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

.process-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.process-subtitle::before,
.process-subtitle::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.process-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 18px;
}

.process-desc {
    font-size: 17px;
    color: #667085;
    line-height: 1.9;
    margin: 0;
}

.process-row {
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ff641b, #0d2f5b);
    z-index: 0;
    opacity: 0.15;
}

.process-card {
    position: relative;
    z-index: 1;
    height: 100%;
    text-align: center;
    background: #ffffff;
    border-radius: 26px;
    padding: 36px 24px 30px;
    box-shadow: 0 16px 40px rgba(13, 47, 91, 0.08);
    border: 1px solid rgba(13, 47, 91, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,100,27,0.04), rgba(13,47,91,0.03));
    opacity: 0;
    transition: all 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 55px rgba(13, 47, 91, 0.14);
}

.process-step {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(13, 47, 91, 0.08);
    line-height: 1;
}

.process-icon {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 15px 28px rgba(255, 100, 27, 0.26);
    transition: all 0.4s ease;
}

.process-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 2px dashed rgba(255, 100, 27, 0.25);
    animation: processPulse 4s linear infinite;
}

.process-card:hover .process-icon {
    transform: rotateY(180deg) translateY(-4px);
    background: linear-gradient(135deg, #0d2f5b, #174882);
    box-shadow: 0 18px 34px rgba(13, 47, 91, 0.24);
}

.process-card h4 {
    position: relative;
    font-size: 25px;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 14px;
}

.process-card p {
    position: relative;
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
}

@keyframes processPulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Tablet */
@media (max-width: 1199.98px) {
    .process-title {
        font-size: 40px;
    }

    .process-card h4 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .process-row::before {
        display: none;
    }

    .process-title {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .process-title {
        font-size: 28px;
    }

    .process-desc {
        font-size: 15px;
    }

    .process-card {
        padding: 30px 18px 24px;
        border-radius: 20px;
    }

    .process-step {
        font-size: 34px;
    }

    .process-icon {
        width: 72px;
        height: 72px;
        font-size: 26px;
        border-radius: 20px;
    }

    .process-card h4 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 14px;
    }
}

.achievement-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.achievement-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 100, 27, 0.06);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.achievement-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(13, 47, 91, 0.05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.achievement-images-wrap {
    position: relative;
    min-height: 560px;
    padding: 20px 20px 40px 20px;
}

.achievement-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(13, 47, 91, 0.16);
}

.achievement-main-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.achievement-main-img:hover img {
    transform: scale(1.08);
}

.achievement-small-img {
    position: absolute;
    top: 30px;
    right: 0;
    width: 210px;
    height: 210px;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(13, 47, 91, 0.14);
    z-index: 3;
}

.achievement-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-floating-badge {
    position: absolute;
    left: 20px;
    bottom: 10px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #0d2f5b, #174882);
    color: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 16px 35px rgba(13, 47, 91, 0.24);
    animation: achievementFloat 3s ease-in-out infinite;
}

.achievement-floating-badge i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.achievement-floating-badge h5 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.achievement-floating-badge p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.achievement-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.achievement-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.achievement-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 18px;
}

.achievement-title span {
    color: #ff641b;
}

.achievement-text {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 10px;
}

.achievement-stat-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 26px 20px;
    text-align: center;
    border: 1px solid #edf1f5;
    box-shadow: 0 12px 28px rgba(13, 47, 91, 0.06);
    transition: all 0.35s ease;
}

.achievement-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 47, 91, 0.12);
}

.achievement-stat-card .stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 22px rgba(255, 100, 27, 0.24);
}

.achievement-stat-card h3 {
    font-size: 40px;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 8px;
}

.achievement-stat-card p {
    margin: 0;
    font-size: 16px;
    color: #667085;
    font-weight: 500;
}

.achievement-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
}

.achievement-points span {
    display: block;
    background: #fff7f2;
    color: #0d2f5b;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

.achievement-points i {
    color: #ff641b;
    margin-right: 8px;
}

@keyframes achievementFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1199.98px) {
    .achievement-title {
        font-size: 40px;
    }

    .achievement-main-img img {
        height: 500px;
    }
}

@media (max-width: 991.98px) {
    .achievement-images-wrap {
        min-height: auto;
        padding: 10px 10px 50px;
    }

    .achievement-title {
        font-size: 34px;
    }

    .achievement-points {
        grid-template-columns: 1fr;
    }

    .achievement-main-img img {
        height: 430px;
    }
}

@media (max-width: 767.98px) {
    .achievement-title {
        font-size: 28px;
    }

    .achievement-text {
        font-size: 15px;
    }

    .achievement-main-img {
        border-radius: 22px;
    }

    .achievement-main-img img {
        height: 320px;
    }

    .achievement-small-img {
        width: 130px;
        height: 130px;
        top: 15px;
        right: 10px;
        border-width: 5px;
        border-radius: 18px;
    }

    .achievement-floating-badge {
        left: 10px;
        right: 10px;
        bottom: 0;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .achievement-floating-badge h5 {
        font-size: 15px;
    }

    .achievement-floating-badge p {
        font-size: 12px;
    }

    .achievement-stat-card {
        border-radius: 18px;
        padding: 22px 16px;
    }

    .achievement-stat-card h3 {
        font-size: 30px;
    }

    .achievement-stat-card p {
        font-size: 14px;
    }
}

.premium-courses-section {
    position: relative;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.premium-courses-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.premium-courses-bg-shape.shape-1 {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -120px;
    background: rgba(255, 100, 27, 0.08);
}

.premium-courses-bg-shape.shape-2 {
    width: 260px;
    height: 260px;
    bottom: -100px;
    right: -100px;
    background: rgba(13, 47, 91, 0.06);
}

.premium-courses-section .container {
    position: relative;
    z-index: 2;
}

.premium-courses-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.premium-courses-subtitle::before,
.premium-courses-subtitle::after {
    content: "";
    width: 34px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.premium-courses-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 18px;
}

.premium-courses-desc {
    font-size: 17px;
    color: #667085;
    line-height: 1.9;
    margin: 0;
}

.premium-course-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premium-course-item {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 35px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 47, 91, 0.06);
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(13, 47, 91, 0.08);
    transition: all 0.45s ease;
}

.premium-course-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(13, 47, 91, 0.14);
}

.premium-course-item.reverse {
    grid-template-columns: 1fr 420px;
}

.premium-course-item.reverse .premium-course-image {
    order: 2;
}

.premium-course-item.reverse .premium-course-content {
    order: 1;
}

.premium-course-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 320px;
}

.premium-course-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,47,91,0.05), rgba(13,47,91,0.28));
}

.premium-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-course-item:hover .premium-course-image img {
    transform: scale(1.08);
}

.premium-course-content {
    padding: 10px 10px 10px 0;
}

.premium-course-top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.premium-course-tag {
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 40px;
    box-shadow: 0 10px 22px rgba(255, 100, 27, 0.24);
}

.premium-course-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef5ff;
    color: #0d2f5b;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 40px;
}

.premium-course-duration i {
    color: #ff641b;
}

.premium-course-content h3 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: #0d2f5b;
    margin-bottom: 14px;
}

.premium-course-content p {
    font-size: 16px;
    color: #667085;
    line-height: 1.9;
    margin-bottom: 20px;
}

.premium-course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.premium-course-features span {
    background: #fff7f2;
    color: #0d2f5b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-course-features i {
    color: #ff641b;
}

.premium-course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #0d2f5b, #174882);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 40px;
    box-shadow: 0 14px 26px rgba(13, 47, 91, 0.18);
    transition: all 0.35s ease;
}

.premium-course-btn:hover {
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1199.98px) {
    .premium-courses-title {
        font-size: 40px;
    }

    .premium-course-item,
    .premium-course-item.reverse {
        grid-template-columns: 360px 1fr;
    }

    .premium-course-item.reverse .premium-course-image {
        order: 2;
    }

    .premium-course-item.reverse .premium-course-content {
        order: 1;
    }

    .premium-course-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .premium-courses-title {
        font-size: 34px;
    }

    .premium-course-item,
    .premium-course-item.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-course-item.reverse .premium-course-image,
    .premium-course-item.reverse .premium-course-content {
        order: unset;
    }

    .premium-course-image {
        height: 280px;
    }

    .premium-course-content {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .premium-courses-title {
        font-size: 28px;
    }

    .premium-courses-desc {
        font-size: 15px;
    }

    .premium-course-item {
        padding: 16px;
        border-radius: 22px;
    }

    .premium-course-image {
        height: 220px;
        border-radius: 18px;
    }

    .premium-course-content h3 {
        font-size: 22px;
    }

    .premium-course-content p {
        font-size: 14px;
    }

    .premium-course-features span,
    .premium-course-duration,
    .premium-course-tag {
        font-size: 12px;
    }
}

.course-benefits-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.course-benefits-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 100, 27, 0.06);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.course-benefits-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(13, 47, 91, 0.05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.course-benefits-content {
    position: relative;
    z-index: 2;
}

.course-benefits-subtitle {
    display: inline-block;
    color: #ff641b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}

.course-benefits-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff641b;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.course-benefits-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0d2f5b;
    margin-bottom: 20px;
}

.course-benefits-title span {
    color: #ff641b;
}

.course-benefits-text {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 28px;
}

.course-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 20px;
    padding: 18px 18px;
    box-shadow: 0 12px 30px rgba(13, 47, 91, 0.06);
    border: 1px solid rgba(13, 47, 91, 0.05);
    transition: all 0.35s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13, 47, 91, 0.10);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(255, 100, 27, 0.24);
}

.benefit-text h5 {
    font-size: 21px;
    font-weight: 700;
    color: #0d2f5b;
    margin-bottom: 6px;
}

.benefit-text p {
    margin: 0;
    font-size: 14px;
    color: #667085;
    line-height: 1.8;
}

.course-benefits-image-wrap {
    position: relative;
    min-height: 540px;
    padding: 20px 20px 40px;
}

.course-benefits-main-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(13, 47, 91, 0.15);
    position: relative;
    z-index: 2;
}

.course-benefits-main-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.course-benefits-main-image:hover img {
    transform: scale(1.08);
}

.course-benefits-float-card {
    position: absolute;
    right: 0;
    top: 40px;
    background: linear-gradient(135deg, #0d2f5b, #174882);
    color: #fff;
    border-radius: 22px;
    padding: 22px 24px;
    max-width: 220px;
    z-index: 3;
    box-shadow: 0 16px 35px rgba(13, 47, 91, 0.22);
    animation: benefitsFloat 3s ease-in-out infinite;
}

.course-benefits-float-card h3 {
    font-size: 40px;
    font-weight: 800;
    color: #ff641b;
    margin-bottom: 8px;
    line-height: 1;
}

.course-benefits-float-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.course-benefits-mini-card {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(13, 47, 91, 0.12);
}

.course-benefits-mini-card i {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.course-benefits-mini-card h6 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #0d2f5b;
}

.course-benefits-mini-card span {
    font-size: 13px;
    color: #667085;
}

@keyframes benefitsFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1199.98px) {
    .course-benefits-title {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .course-benefits-title {
        font-size: 34px;
    }

    .course-benefits-main-image img {
        height: 430px;
    }

    .course-benefits-image-wrap {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .course-benefits-title {
        font-size: 28px;
    }

    .course-benefits-text {
        font-size: 15px;
    }

    .benefit-text h5 {
        font-size: 18px;
    }

    .benefit-text p {
        font-size: 13px;
    }

    .course-benefits-main-image img {
        height: 320px;
    }

    .course-benefits-float-card {
        max-width: 160px;
        padding: 16px;
        right: 10px;
        top: 20px;
    }

    .course-benefits-float-card h3 {
        font-size: 26px;
    }

    .course-benefits-mini-card {
        left: 10px;
        right: 10px;
        bottom: 0;
        padding: 14px;
    }
}

.who-can-join-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    position: relative;
}

/* Heading */
.join-subtitle {
    color: #ff641b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.join-title {
    font-size: 42px;
    font-weight: 800;
    color: #0d2f5b;
}

/* Card */
.join-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon */
.join-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff641b, #ff8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(255,100,27,0.3);
    transition: 0.3s;
}

.join-card:hover .join-icon {
    transform: rotate(360deg);
}

/* Text */
.join-card h5 {
    font-weight: 700;
    color: #0d2f5b;
    margin-bottom: 10px;
}

.join-card p {
    font-size: 14px;
    color: #667085;
}

/* Background glow effect */
.join-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,100,27,0.1);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}