*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', sans-serif;
    background:#fff;
    overflow-x:hidden;
}

/* HERO */

.course-hero{
    position:relative;
    padding:70px 0;
    background:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.45)),
    url('../images/coursehero.jpeg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

/* BREADCRUMB */

.breadcrumb-custom{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
}

.breadcrumb-custom a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

.breadcrumb-custom span{
    color:#ddd;
    font-size:14px;
}

/* LOGO */

.course-logo{
    width:170px;
    background:#fff;
    padding:18px;
    border-radius:18px;
    margin-bottom:28px;
}

.course-logo img{
    width:100%;
}

/* TITLE */

.course-title1{
    font-size:68px;
    line-height:1;
    font-weight:700;
    margin-bottom:28px;
    letter-spacing:-2px;
}

/* TAGS */

.tag-box{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}

.tag{
    background:#d6fff5;
    color:#032b33;
    border:2px solid #67d8c5;
    padding:10px 16px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.tag:hover{
    transform:translateY(-2px);
}

/* COURSE DURATION */

.course-duration{
    margin-top:10px;
    font-size:20px;
    font-weight:500;
}

.course-duration a{
    color:#fff;
    font-weight:700;
}

/* FORM BOX */

.enroll-box{
    background:#fff;
    border-radius:24px;
    padding:30px;
    color:#111;
    margin-top:0px;
    box-shadow:0 10px 35px rgba(0,0,0,0.2);
}

/* PRICE */

.price{
    text-align:center;
    margin-bottom:22px;
    margin-top: -10%;
}

.old-price{
    font-size:28px;
    font-weight:700;
    text-decoration:line-through;
    color:#8b8b8b;
    margin-right:12px;
}

.new-price{
    font-size:38px;
    font-weight:800;
    color:#002f34;
}

/* INPUTS */

.form-control{
    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
    margin-bottom:15px;
    padding-left:16px;
    font-size:15px;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#ff5a1f;
}

/* BUTTON */

.submit-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:50px;
    background:#e65100;
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:0.3s;
}

.submit-btn:hover{
    background:#c84300;
    transform:translateY(-2px);
}

/* SMALL TEXT */

.small-text{
    text-align:center;
    margin-top:14px;
    color:#777;
    font-size:13px;
}

/* CONTENT SECTION */

.content-section{
    padding:70px 0;
    background:#fff;
}

.content-box{
    background:#f8f9fb;
    border-radius:22px;
    padding:40px;
}

.content-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:18px;
}

.content-box p{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.course-list{
    margin-top:25px;
    padding-left:0;
}

.course-list li{
    list-style:none;
    margin-bottom:16px;
    font-size:16px;
    color:#333;
}

.course-list i{
    color:#0d6efd;
    margin-right:10px;
}

/* TABLET */

@media(max-width:991px){

    .course-hero{
        padding:55px 0;
    }

    .course-title1{
        font-size:52px;
    }

    .enroll-box{
        margin-top:0px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .course-hero{
        padding:40px 0;
    }

    .breadcrumb-custom{
        gap:8px;
    }

    .breadcrumb-custom a{
        font-size:13px;
    }

    .course-logo{
        width:130px;
        padding:12px;
        margin-bottom:22px;
    }

    .course-title1{
        font-size:42px;
        line-height:1.1;
        margin-bottom:22px;
    }

    .tag-box{
        gap:10px;
        margin-bottom:25px;
    }

    .tag{
        padding:8px 12px;
        font-size:13px;
        border-radius:8px;
    }

    .course-duration{
        font-size:18px;
    }

    .enroll-box{
        padding:22px;
        border-radius:18px;
        
    }

    .old-price{
        font-size:22px;
    }

    .new-price{
        font-size:30px;
    }

    .submit-btn{
        height:50px;
        font-size:16px;
    }

    .content-box{
        padding:25px;
    }

    .content-box h2{
        font-size:28px;
    }

}

/* MOBILE FIX */

@media(max-width:576px){

    .course-hero{
        padding:35px 0 25px;
        background-position:center;
    }

    .breadcrumb-custom{
        margin-bottom:20px;
    }

    .breadcrumb-custom a{
        font-size:13px;
    }

    .course-title1{
        font-size:42px;
        line-height:1.1;
        margin-bottom:22px;
    }

    /* TAGS */

    .tag-box{
        gap:12px;
        margin-bottom:22px;
    }

    .tag{
        padding:10px 14px;
        font-size:14px;
        border-radius:12px;
    }

    .tag i{
        font-size:13px;
    }

    /* DURATION */

    .course-duration{
        font-size:18px;
        margin-top:5px;
        margin-bottom:20px;
    }

    /* FORM BOX */

    .enroll-box{
        margin-top: 0px;
        padding:22px 18px;
        border-radius:22px;
    }

    /* BOOK DEMO TEXT */

    .price{
        margin-bottom:18px;
    }

    .new-price{
        font-size:28px;
        line-height:1.2;
        display:block;
        text-align:center;
    }

    /* INPUTS */

    .form-control{
        height:50px;
        font-size:15px;
        border-radius:14px;
        margin-bottom:14px;
        padding-left:16px;
    }

    /* BUTTON */

    .submit-btn{
        height:50px;
        font-size:16px;
        border-radius:40px;
    }

    .small-text{
        font-size:12px;
    }

}

/* FORM BOX */

.enroll-box{
    background:#ffffff;
    padding:28px;
    border-radius:26px;
    color:#111;
    margin-top:0px;
    box-shadow:0 10px 35px rgba(0,0,0,0.18);
}

/* TOP */

.form-top h3{
    font-size:28px;
    font-weight:600;
    color:#071a3d;
    margin-bottom:6px;
}

.form-top h3 span{
    color:#ff5b61;
}

.form-top p{
    color:#667085;
    font-size:15px;
    margin-bottom:28px;
    font-weight:500;
}

/* LABEL */

.enroll-box label{
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
    color:#1d3557;
}



/* BUTTON */

.submit-btn{
    width:100%;
    height:35px;
    border:none;
    border-radius:18px;
    background:#ffcc00;
    color:#000;
    font-size:12px;
    font-weight:700;
    margin-top:10px;
    transition:0.3s;
}

.submit-btn i{
    margin-left:10px;
}

.submit-btn:hover{
    transform:translateY(-2px);
    background:#f5c400;
}

/* SMALL TEXT */

.small-text{
    text-align:center;
    margin-top:14px;
    font-size:13px;
    color:#8b8b8b;
}

.input-box{
    height:48px;
    background:#f7f7f9;
    border:1px solid #e4e7ec;
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 14px;
    margin-bottom:14px;
}

.input-box i{
    color:#8a94a6;
    font-size:15px;
    margin-right:10px;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
    font-weight:600;
    color:#222;
}
/* MOBILE */

@media(max-width:576px){

    .enroll-box{
        padding:22px;
        border-radius:22px;
        margin-top:25px;
    }

    .form-top h3{
        font-size:26px;
    }

    .form-top p{
        font-size:13px;
        margin-bottom:20px;
    }

    .enroll-box label{
        font-size:11px;
    }

    .input-box{
        height:52px;
        border-radius:16px;
        padding:0 14px;
        margin-bottom:14px;
    }

    .input-box i{
        font-size:12px;
        margin-right:10px;
    }

    .input-box input{
        font-size:12px;
    }

    .submit-btn{
        height:52px;
        font-size:13px;
        border-radius:16px;
    }

}

/* =========================
COURSE DETAILS
========================= */

.course-details-section{
    padding:70px 0;
    background:#f7f9fc;
}

.section-heading{
    margin-bottom:30px;
}

.section-heading h2{
    font-size:34px;
    font-weight:800;
    color:#0a1f44;
    margin-bottom:10px;
}

.section-heading p{
    color:#666;
    font-size:15px;
}

/* CURRICULUM */

.curriculum-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.curriculum-item{
    border-bottom:1px solid #eee;
}

.curriculum-header{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.curriculum-header h3{
    font-size:18px;
    font-weight:700;
    margin:0;
}

.curriculum-content{
    padding:0 25px 20px;
}

.curriculum-content ul{
    padding-left:18px;
}

.curriculum-content li{
    margin-bottom:10px;
    color:#555;
    font-size:15px;
}

/* TOOLS */

.tools-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:15px;
    margin-bottom:60px;
}

.tool-card{
    background:#fff;
    padding:18px;
    border-radius:14px;
    text-align:center;
    font-weight:700;
    font-size:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-bottom:60px;
}

.project-card{
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.project-card i{
    font-size:28px;
    color:#0d6efd;
    margin-bottom:18px;
}

.project-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.project-card p{
    color:#666;
    font-size:14px;
    line-height:1.7;
}

/* OUTCOMES */

.outcomes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    margin-bottom:60px;
}

.outcome-item{
    background:#fff;
    padding:20px;
    border-radius:14px;
    font-weight:600;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.outcome-item i{
    color:#00b894;
    margin-right:10px;
}

/* FAQ */

.faq-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-item{
    border-bottom:1px solid #eee;
    padding:22px 25px;
}

.faq-question{
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-answer{
    color:#666;
    font-size:14px;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

    .course-details-section{
        padding:50px 0;
    }

    .section-heading h2{
        font-size:26px;
    }

    .curriculum-header h3{
        font-size:15px;
    }

    .project-card{
        padding:22px;
    }

}
/* ==================================
PREMIUM CURRICULUM
================================== */

.premium-curriculum{
    padding:80px 0;
    background:#f5f7fb;
}

.premium-heading{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:45px;
}

.heading-icon{
    width:62px;
    height:62px;
    background:#005bbb;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    box-shadow:0 8px 20px rgba(0,91,187,0.25);
}

.premium-heading h2{
    font-size:34px;
    font-weight:800;
    color:#071c45;
    margin-bottom:8px;
}

.premium-heading p{
    font-size:17px;
    color:#4e5d78;
    max-width:700px;
    line-height:1.7;
}

/* LIST */

.premium-curriculum-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* ITEM */

.premium-item{
    background:#fff;
    border-radius:28px;
    padding:28px 35px;
    display:flex;
    align-items:center;
    gap:25px;
    transition:0.3s;
    border:1px solid #edf0f5;
    box-shadow:0 5px 18px rgba(0,0,0,0.04);
}

.premium-item:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

/* NUMBER */

.module-number{
    width:72px;
    min-width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:800;
    color:#fff;
}

/* COLORS */

.blue{
    background:linear-gradient(135deg,#005bbb,#0b75ff);
}

.cyan{
    background:linear-gradient(135deg,#007cf0,#00dfd8);
}

.green{
    background:linear-gradient(135deg,#0072ff,#88d66c);
}

.orange{
    background:linear-gradient(135deg,#ff6b00,#ffcc29);
}

/* CONTENT */

.module-content{
    flex:1;
}

.module-content h3{
    font-size:20px;
    font-weight:700;
    color:#071c45;
    margin-bottom:8px;
}

.module-content span{
    color:#5b657a;
    font-size:14 px;
    font-weight:500;
}

/* ARROW */

.module-arrow{
    font-size:26px;
    color:#1c2434;
}

/* MOBILE */

@media(max-width:768px){

    .premium-curriculum{
        padding:50px 0;
    }

    .premium-heading{
        gap:15px;
        margin-bottom:30px;
    }

    .heading-icon{
        width:48px;
        height:48px;
        border-radius:14px;
        font-size:18px;
    }

    .premium-heading h2{
        font-size:38px;
    }

    .premium-heading p{
        font-size:14px;
    }

    .premium-item{
        padding:18px;
        gap:15px;
        border-radius:22px;
    }

    .module-number{
        width:52px;
        min-width:52px;
        height:52px;
        font-size:22px;
        border-radius:16px;
    }

    .module-content h3{
        font-size:16px;
        line-height:1.5;
    }

    .module-content span{
        font-size:14px;
    }

    .module-arrow{
        font-size:18px;
    }

}
/* =========================
NEW MODERN SECTION
========================= */

.course-main-section{
    padding:70px 0;
    background:#f5f7fb;
}

/* BOX */

.modern-box{
    background:#fff;
    border-radius:22px;
    padding:24px;
    margin-bottom:22px;
    border:1px solid #edf0f5;
    box-shadow:0 4px 15px rgba(0,0,0,0.04);
}

/* TITLES */

.section-title-small span{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#0d6efd;
}

.section-title-small h2{
    font-size:24px;
    font-weight:800;
    margin-top:8px;
    color:#071c45;
}

/* ACCORDION */

.curriculum-accordion{
    margin-top:20px;
}

.accordion-item-custom{
    border:1px solid #edf0f5;
    border-radius:18px;
    margin-bottom:16px;
    overflow:hidden;
    transition:0.3s;
}

.accordion-header-custom{
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    background:#fff;
}

.left-part{
    display:flex;
    align-items:center;
    gap:15px;
}

.module-badge{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:800;
    color:#fff;
}

.blue{
    background:linear-gradient(135deg,#005bbb,#0b75ff);
}

.cyan{
    background:linear-gradient(135deg,#00b4db,#0083b0);
}

.green{
    background:linear-gradient(135deg,#00b894,#00cec9);
}

.orange{
    background:linear-gradient(135deg,#ff8008,#ffb347);
}

.left-part h3{
    font-size:16px;
    margin-bottom:5px;
    font-weight:700;
    color:#071c45;
}

.left-part p{
    font-size:12px;
    color:#667085;
    margin:0;
}

.accordion-header-custom i{
    font-size:14px;
    color:#071c45;
    transition:0.3s;
}

/* CONTENT */

.accordion-content-custom{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
    background:#fafcff;
}

.accordion-content-custom ul{
    padding:0 25px 20px 75px;
}

.accordion-content-custom li{
    font-size:13px;
    color:#555;
    margin-bottom:10px;
    line-height:1.7;
}

/* ACTIVE */

.accordion-item-custom.active .accordion-content-custom{
    max-height:300px;
}

.accordion-item-custom.active .accordion-header-custom i{
    transform:rotate(45deg);
}

/* TOOLS */

.tools-modern-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:12px;
    margin-top:20px;
}

.tool-modern{
    background:#f5f7fb;
    border:1px solid #e8edf5;
    border-radius:14px;
    padding:14px;
    text-align:center;
    font-size:13px;
    font-weight:700;
    color:#071c45;
    transition:0.3s;
}

.tool-modern:hover{
    transform:translateY(-3px);
    background:#fff;
}

/* PROJECTS */

.project-modern-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-top:20px;
}

.project-modern-card{
    background:#f9fbff;
    border-radius:18px;
    padding:22px;
    border:1px solid #edf0f5;
}

.project-modern-card i{
    font-size:22px;
    color:#0d6efd;
    margin-bottom:14px;
}

.project-modern-card h4{
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
}

.project-modern-card p{
    font-size:13px;
    line-height:1.7;
    color:#666;
}

/* STICKY FORM */

.sticky-form-wrapper{
    position:sticky;
    top:100px;
}

.sticky-course-form{
    background:#fff;
    border-radius:24px;
    padding:26px;
    border:1px solid #edf0f5;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.form-heading-right span{
    background:#eef4ff;
    color:#0d6efd;
    font-size:10px;
    padding:6px 10px;
    border-radius:30px;
    font-weight:700;
}

.form-heading-right h3{
    font-size:28px;
    font-weight:800;
    margin-top:14px;
    color:#071c45;
}

.form-heading-right p{
    font-size:13px;
    color:#667085;
    line-height:1.7;
    margin-top:8px;
    margin-bottom:22px;
}

/* INPUT */

.input-modern{
    height:52px;
    border:1px solid #e6ebf2;
    border-radius:14px;
    padding:0 15px;
    display:flex;
    align-items:center;
    margin-bottom:14px;
    background:#fafcff;
}

.input-modern i{
    font-size:13px;
    color:#7b8794;
    margin-right:10px;
}

.input-modern input{
    width:100%;
    border:none;
    background:transparent;
    outline:none;
    font-size:13px;
    font-weight:600;
}

/* BUTTON */

.modern-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#005bbb,#0b75ff);
    color:#fff;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
}

.modern-submit-btn:hover{
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:991px){

    .sticky-form-wrapper{
        position:relative;
        top:0;
        margin-top:25px;
    }

}

@media(max-width:576px){

    .course-main-section{
        padding:40px 0;
    }

    .modern-box{
        padding:18px;
        border-radius:18px;
    }

    .section-title-small h2{
        font-size:20px;
    }

    .accordion-header-custom{
        padding:15px;
    }

    .module-badge{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .left-part h3{
        font-size:14px;
    }

    .left-part p{
        font-size:11px;
    }

    .accordion-content-custom ul{
        padding:0 20px 18px 20px;
    }

    .sticky-course-form{
        padding:20px;
    }

    .form-heading-right h3{
        font-size:22px;
    }

}

/* =========================
CERTIFICATION SECTION
========================= */

.certification-modern-box{
    margin-top: 30px;
}

.certification-modern-text{
    font-size: 16px;
    line-height: 1.8;
    color: #5b6475;
    margin-top: 12px;
    margin-bottom: 28px;
}

.certification-modern-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certification-modern-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    background: #fff;
    transition: 0.3s ease;
}

.certification-modern-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.certification-modern-icon{
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.certification-modern-icon i{
    font-size: 18px;
}

.certification-modern-icon.orange{
    background: #fff3ea;
    color: #ff7a00;
}

.certification-modern-icon.blue{
    background: #eef4ff;
    color: #1565d8;
}

.certification-modern-icon.green{
    background: #ecfff5;
    color: #0ba360;
}

.certification-modern-content h3{
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #081b3a;
    margin-bottom: 10px;
}

.certification-modern-content p{
    font-size: 16px;
    line-height: 1.8;
    color: #5f6b7a;
    margin: 0;
}

/* MOBILE RESPONSIVE */

@media(max-width: 768px){

    .certification-modern-item{
        flex-direction: column;
        padding: 18px;
    }

    .certification-modern-content h3{
        font-size: 15px;
    }

    .certification-modern-content p{
        font-size: 14px;
        line-height: 1.7;
    }

    .certification-modern-icon{
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
    }

}
/* =========================
PLACEMENT ASSISTANCE SECTION
========================= */

.placement-modern-box{
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

/* TOP */

.placement-heading-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.placement-title-left{
    display: flex;
    align-items: center;
    gap: 20px;
}

.placement-icon-main{
    width: 72px;
    height: 72px;
    background: #1565d8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(21,101,216,0.20);
}

/* BADGE */

.placement-badge{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9800,#ff5e00);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgeRotate 6s linear infinite;
}

.placement-badge-inner{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #fff;
    background: linear-gradient(135deg,#ff9800,#ff5e00);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.placement-badge-inner strong{
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.placement-badge-inner span{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* TEXT */

.placement-modern-text{
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-top: 18px;
    margin-bottom: 30px;
    max-width: 850px;
}

/* LIST */

.placement-modern-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.placement-modern-item{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: #f8fafc;
    border-radius: 18px;
    transition: 0.3s ease;
    border: 1px solid #edf2f7;
}

.placement-modern-item:hover{
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.placement-modern-item p{
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: #1b2a4e;
}

/* CHECK ICON */

.placement-check{
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.placement-check.green{
    background: #e9fff1;
    color: #08a957;
}

.placement-check.blue{
    background: #eef4ff;
    color: #1565d8;
}

.placement-check.orange{
    background: #fff4e8;
    color: #ff7a00;
}

.placement-check.purple{
    background: #f3ecff;
    color: #7b4dff;
}

.placement-check.cyan{
    background: #eafcff;
    color: #00acc1;
}

/* ANIMATION */

@keyframes badgeRotate{

    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(10deg);
    }

}

/* MOBILE */

@media(max-width:768px){

    .placement-heading-flex{
        flex-direction: column;
        align-items: flex-start;
    }

    .placement-title-left{
        align-items: flex-start;
    }

    .placement-icon-main{
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .placement-badge{
        width: 120px;
        height: 120px;
        margin-left: 20%;
    }

    .placement-badge-inner strong{
        font-size: 30px;
    }

    .placement-badge-inner span{
        font-size: 11px;
    }

    .placement-modern-item{
        align-items: flex-start;
        padding: 18px;
    }

    .placement-modern-item p{
        font-size: 13px;
    }

    .placement-check{
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

}

/* =========================
FAQ SECTION
========================= */

.faq-modern-box {
    margin-top: 30px;
}

/* SUBTITLE */

.faq-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    margin-top: 15px;
    margin-bottom: 35px;
}

/* ACCORDION */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* FAQ ITEM */

.faq-item {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: #dce7ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* QUESTION */

.faq-question {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: #071c3d;
    margin: 0;
}

/* ICON */

.faq-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1665d8;
    font-size: 18px;
    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #1665d8;
    color: #fff;
}

/* ANSWER */

.faq-answer {
    display: none;
    padding: 0 30px 30px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
}

/* HOVER */

.faq-item:hover {
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {

    .faq-question {
        padding: 22px 20px;
    }

    .faq-question h3 {
        font-size: 18px;
        line-height: 1.6;
    }

    .faq-answer {
        padding: 0 20px 24px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .faq-subtitle {
        font-size: 15px;
    }
}

/* =========================
SMALL FAQ BOX STYLE
========================= */

.faq-modern-box {
    margin-top: 30px;
}

/* SUBTITLE */

.faq-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-top: 10px;
    margin-bottom: 22px;
    line-height: 1.7;
}

/* FAQ ACCORDION */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* FAQ ITEM */

.faq-item {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    
}

.faq-item.active {
    border-color: #dbe7ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

/* QUESTION */

.faq-question {
    padding: 1px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #071c3d;
    margin: 0;
    line-height: 1.5;
}

/* ICON */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1665d8;
    font-size: 12px;
    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #1665d8;
    color: #fff;
}

/* ANSWER */

.faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 11px;
    }
}