@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* =========================================
   BASE
========================================= */

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    color: #1c4c57;
}

a {
    color: #34c0ff;
    text-decoration: none;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}
.bg-shape{
    background: url('../../frontend/img/bg-shape.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat
}
/* =========================================
   UTILITIES
========================================= */
.heading-wrap{
    margin-bottom: 40px
}
.main-heading {
    margin: 0px 0;
    font-size: 3rem;
    font-weight: 700;
    color: #071a42;
}

.section-space {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* =========================================
   DROPDOWN
========================================= */

@media(min-width:992px) {
    .dropdown:hover>.dropdown-menu,
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* =========================================
   FIRE ANIMATION
========================================= */
.top-bar{
    background: linear-gradient(135deg, #0a2864, #071a42)
}
.fire {
    display: inline-block;
    font-size: 24px !important;
    font-weight: 700;
    color: #FF4500;
    animation: flicker .2s infinite alternate;
    text-shadow: 0 0 10px rgb(255 69 0 / .8), 0 0 20px rgb(255 69 0 / .6);
}

@keyframes flicker {
    0% {
        text-shadow: 0 0 10px rgb(255 69 0 / .8), 0 0 20px rgb(255 69 0 / .6);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 15px rgb(255 69 0 / .7), 0 0 30px rgb(255 69 0 / .4);
        opacity: .8;
    }
    100% {
        text-shadow: 0 0 20px rgb(255 69 0), 0 0 40px rgb(255 69 0 / .9);
        opacity: 1;
    }
}

/* =========================================
   NAVBAR / TOP BAR
========================================= */
.lc-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* make toggler + cart sit in one row */
.navbar .container {
    display: flex;
    align-items: center;
}
:root{
    --lc-primary:#071a42;
    --lc-white:#ffffff;
    --lc-muted:#94a3b8;
}

/* NAVBAR */
.lc-nav{
    background: var(--lc-white);
    box-shadow: 0 8px 25px rgba(7,26,66,0.08);
    padding: 14px 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 900;
}
.lc-nav .navbar-nav{
    position: relative
}
.lc-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 980;
    background: #fff; /* adjust as needed */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}
/* BRAND */
.lc-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.lc-brand img{
    height:42px;
}


/* LINKS */
.lc-nav-link{
    color: var(--lc-primary) !important;
    font-weight:500;
    margin: 0 6px;
    position:relative;
    font-size: 14.5px;
}

.lc-nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--lc-primary);
    transition:0.3s;
}

.lc-nav-link:hover::after{
    width:100%;
}
.lc-overview {
    display: block;
    font-weight: 600;
    color: #071a42;
    padding: 8px 0 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 0px !important;
}

/* 2-column grid */
.lc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

/* links inside grid */
.lc-grid a {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
    transition: 0.2s;
}

.lc-grid a:hover {
    color: #071a42;
    padding-left: 4px;
}
/* ICONS */
.lc-icon-btn{
    position:relative;
    font-size:18px;
    color:var(--lc-primary);
    cursor:pointer;
    padding:6px;
}

.lc-cart-badge{
    position:absolute;
    top:-5px;
    right:-6px;
    font-size:10px;
    background:#dc3545;
    color:#fff;
    border-radius:50%;
    padding:3px 7px;
}

/* BUTTONS */
.lc-btn-login{
    border:1px solid var(--lc-primary);
    color: #071a42;
    padding:6px 14px;
    border-radius:10px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

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

.lc-btn-signup{
    background: #071a42;
    color:#fff;
    padding:6px 14px;
    border-radius:10px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

.lc-btn-signup:hover{
    opacity:0.9;
}

/* MOBILE */
.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    box-shadow:none;
}
.lc-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    display: none;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
}

/* show on hover */
.lc-mega:hover .lc-mega-menu {
    display: flex;
}

/* LEFT PANEL */
.lc-mega-left {
    width: 40%;
    background: #071a42;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.lc-cat {
    padding: 10px 12px;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.85;
    transition: 0.2s;
    font-size: 14.5px;
    display: flex;
    justify-content: space-between;
}

.lc-cat:hover {
    background: rgba(255,255,255,0.12);
    opacity: 1;
}

.lc-cat.active {
    background: rgba(255,255,255,0.18);
    opacity: 1;
}

/* RIGHT PANEL */
.lc-mega-right {
    width: 60%;
    padding: 15px;
    min-height: 260px;
    background: #0d2040;
}

.lc-panel {
    display: none;
    animation: fadeIn 0.2s ease-in-out;
}

.lc-panel.active {
    display: block;
}

.lc-panel a {
    display: block;
    padding: 6px 5px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    border-radius: 6px;
}

.lc-panel a:hover {
    background: #1e3a6a;
    color: #fff;
}

/* animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.lc-dropdown-wrap{
    position: relative;
}

/* dropdown box */
.lc-drop{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--lc-primary);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    z-index: 999;
}

/* show on hover (desktop) */
@media (min-width: 992px){
    .lc-dropdown-wrap:hover .lc-drop{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* links */
.lc-dlink{
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.lc-dlink:hover{
    background: #1e3a6a;
    color: #fff;
}

/* divider */
.lc-drop-divider{
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

/* highlight last CTA */
.lc-dlink-all{
    font-weight: 600;
    color: #2196F3;
}
/* OVERLAY */
.lc-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.lc-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* DRAWER */
.lc-mobile-drawer{
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #071a42;
    z-index: 999;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.lc-mobile-drawer.active{
    left: 0;
}

/* HEADER */
.lc-drawer-header{
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LEVEL HEADER (NEW UX) */
.lc-level-header{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    color:#fff;
    font-weight:600;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.lc-level-header span{
    font-size:15px;
}

/* CLOSE */
.lc-close{
    background:none;
    border:none;
    color:#fff;
    font-size: 25px;
    margin-top: 0px;
}

/* LEVELS */
.lc-mlevel{
    display:none;
    flex-direction:column;
    overflow-y:auto;
    height:100%;
}

.lc-mlevel.active{
    display:flex;
}

/* LINKS */
.lc-mlevel a,
.lc-next{
    display: flex;
    justify-content: space-between;
    padding:12px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    background:none;
    border:none;
    text-align:left;
    width:100%;
    border-radius: 0px;
    border-bottom: 1px solid #ffffff29;
}

.lc-mlevel a:hover,
.lc-next:hover{
    background:rgba(255,255,255,0.08);
}

/* BACK BUTTON */
.lc-back{
    background:none;
    border:none;
    color:#2196f3;
    font-size:18px;
    cursor:pointer;
}

.lc-ms-auth.hide{
    display: none !important;
}
.lc-ms-auth{
    position: sticky;
    bottom: 0;
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* LOGIN BUTTON */
.lc-ms-login{
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.25s ease;
}

.lc-ms-login:hover{
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* SIGNUP BUTTON */
.lc-ms-signup{
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #2196f3;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s ease;
    box-shadow: 0 10px 20px rgba(33,150,243,0.25);
}

.lc-ms-signup:hover{
    background: #1b7fd6;
    transform: translateY(-1px);
}
/* =========================================
   SCROLLING TEXT
========================================= */

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
    color: #fff;
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
}

.scrolling-text span {
    display: flex;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    align-items: center;
    font-size: 15px;
}

.scrolling-text span:hover {
    animation-play-state: paused;
}

.scrolling-text em {
    font-style: normal !important;
    margin-bottom: 0px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* =========================================
   HERO SECTION
========================================= */

.lc-hero-section {
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 70px 0 70px;
    position: relative;
    isolation: isolate;
    background: #071a42;
}

.lc-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/4050315/pexels-photo-4050315.jpeg') center center/cover no-repeat;
    transform: scale(1.02);
}

.lc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4,17,45,.92) 0%,
        rgba(7,26,66,.86) 45%,
        rgba(10,32,74,.88) 100%
        );
}

.lc-hero-section .container {
    z-index: 2;
    position: relative;
}

.lc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffe000;
    color: #071a42;
    font-weight: 700;
    font-size: .95rem;
    padding: 12px 22px;
    border-radius: 999px;
    margin-bottom: 28px;
    box-shadow: 0 12px 35px rgba(255,224,0,.22);
}

.lc-hero-badge i {
    font-size: .9rem;
}

.lc-hero-title {
    color: #fff;
    font-size: clamp(2.3rem,5vw,3.3rem);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
}

.lc-hero-text {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255,255,255,.82);
    font-size: 1.12rem;
    line-height: 1.5;
    font-weight: 400;
}

.lc-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.lc-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    transition: .3s ease;
}

.lc-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.09);
}

.lc-feature-item i {
    color: #ffe000;
    font-size: 1rem;
}
.cpd-img{
    margin-top: 20px
}
.cpd-img img{
    width: 230px
}
.special-hero{
    min-height: auto
}
.special-hero .lc-hero-bg{
    background: url('../../frontend/img/special-bg.jpg') center center/cover no-repeat;
}
.special-hero .special-rating{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.special-hero .special-stars{
    display: flex;
    align-items: center;
    gap: 9px;
}

.special-hero .special-stars i{
    color: #fbbf24;
    font-size: 18px;
    line-height: 1;
}

.special-hero .special-rating-text{
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}
.special-hero-benefits{
    display:grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    gap: 10px;
}

.special-benefit-card{
    display:flex;
    align-items:flex-start;
    gap: 14px;
    padding: 10px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    border: 1px solid rgb(213 213 213 / 60%);
    border-radius:20px;
    transition:all .3s ease;
}

.special-benefit-card:hover{
}

.special-benefit-icon{
    min-width: 36px;
    width: 36px;
    height: 36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 8px;
    background: #ffffff;
    color: #071a42;
    font-size: 15px;
    border: 1px solid #071a42;
}

.special-benefit-content h2{
    margin: 0 0 2px;
    font-size: 18px;
    font-weight:700;
    color:#111827;
}

.special-benefit-content p{
    margin:0;
}

@media (max-width: 768px){
    .special-hero-benefits{
        grid-template-columns:1fr;
    }

    .special-benefit-card{
        padding:20px;
    }

    .special-benefit-icon{
        width:52px;
        height:52px;
        min-width:52px;
        font-size:20px;
    }
}
/* =========================================
   SEARCH BAR
========================================= */

.lc-search-wrap {
    width: 100%;
    max-width: 700px;
    margin: 48px auto 0;
    position: relative;
}

.lc-search-input {
    height: 76px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(14px);
    padding: 0 150px 0 28px;
    color: #fff;
    font-size: 1rem;
    box-shadow: none !important;
}

.lc-search-input::placeholder {
    color: rgba(255,255,255,.45);
}

.lc-search-input:focus {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
    color: #fff;
}

.lc-search-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 18px;
    background: #ffe000;
    color: #071a42;
    font-size: 1.05rem;
    transition: .3s ease;
    z-index: 2;
}

.lc-search-btn:hover {
    transform: scale(1.05);
}

.lc-voice-btn {
    position: absolute;
    top: 8px;
    right: 76px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

.lc-voice-btn:hover {
    background: rgba(255,255,255,.18);
    transform: scale(1.05);
}

/* =========================================
   LOGO CARD
========================================= */

.logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

.logo-card img {
    max-height: 50px;
    object-fit: contain;

    /* BLACK & WHITE */
    filter: grayscale(100%);
    opacity: 0.75;

    transition: all 0.4s ease;
}

/* CARD HOVER */
.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* IMAGE COLOR ON HOVER */
.logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
/* =========================================
   QUOTE FORM
========================================= */

.quote-section {
    display: flex;
    justify-content: center;
    /* background: #f4f6fb; */
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8fbff 25%,
        #f2f7ff 50%,
        #eef4ff 75%,
        #ffffff 100%
        );
}

.quote-box {
    width: 100%;
    max-width: 1050px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #eef0f6;
}

.quote-top {
    text-align: center;
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e9f0ff;
    color: #2b5cff;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.quote-top p {
    color: #666;
    font-size: 14px;
}

.quote-body {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
}

.field label {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.field select,
.field input {
    width: 100%;
    height: 48.1px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e6e8ef;
    outline: none;
    transition: 0.25s;
    background: #fff;
    font-size: 15px;
}

.field select:focus,
.field input:focus {
    border-color: #2b5cff;
    box-shadow: 0 0 0 4px rgba(43,92,255,0.1);
}

.main-btn{
    background: linear-gradient(135deg, #0f3176, #071a42);
    color: #fff;
    border: none;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43,92,255,0.25);
}
.quote-btn {
    background: linear-gradient(135deg, #0f3176, #071a42);
    color: #fff;
    border: none;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43,92,255,0.25);
}
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 48.1px;
    border: 1px solid #e6e8ef !important;
    border-radius: 12px !important;
    background: #fff;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 14px !important;
    color: #333;
}

.select2-container--default .select2-selection__arrow {
    height: 48px !important;
    right: 10px !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #2b5cff !important;
    box-shadow: 0 0 0 4px rgba(43,92,255,0.1);
}

.select2-dropdown {
    border: 1px solid #e6e8ef !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.select2-search__field {
    border-radius: 8px !important;
}

/* Flatpickr Styling */
.flatpickr-input {
    cursor: pointer;
}

.flatpickr-calendar {
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.flatpickr-day.selected {
    background: #0f3176 !important;
    border-color: #0f3176 !important;
}
/* MODAL */
#ms-search-modal .modal-content{
    background:#071d49;
    border:none;
    border-radius:20px;
    overflow:hidden;
    color:#fff;
}

/* HEADER */
.ms-search-header{
    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.ms-search-box{
    position:relative;
}

.ms-search-input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    border-radius:12px;
    padding:0 52px;
    background:#f1f1f1;
    color:#111827;
    font-size:16px;
    font-weight:500;
}

.ms-search-icon{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
    color:#6b7280;
}

.ms-close-icons{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    gap:10px;
    color:#6b7280;
    font-size:15px;
    cursor:pointer;
}

/* RESULTS */
.ms-results-wrapper{
    max-height:420px;
    overflow-y:auto;
    display:none;
}

.ms-results-wrapper::-webkit-scrollbar{
    width:5px;
}

.ms-results-wrapper::-webkit-scrollbar-thumb{
    background:#365089;
    border-radius:20px;
}

.ms-section-title{
    font-size:11px;
    text-transform:uppercase;
    color:#7d8fb3;
    padding:14px 20px 8px;
    font-weight:600;
    letter-spacing:1px;
}

.ms-result-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px;
    cursor:pointer;
    transition:0.3s;
}

.ms-result-item:hover,
.ms-result-item.ms-active{
    background:#233f7a;
}

.ms-result-left{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.ms-item-icon{
    width:36px;
    height:36px;
    background:#1d4ed8;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
    color:#fff;
}

.ms-item-title{
    font-size: 14px;
    font-weight:600;
    margin-bottom:2px;
    line-height:1.3;
}

.ms-item-sub{
    font-size:12px;
    color:#93a4c4;
}

.ms-arrow{
    color:#7d8fb3;
    font-size:16px;
}

/* FOOTER */
.ms-footer-bar{
    border-top:1px solid rgba(255,255,255,0.05);
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#93a4c4;
    font-size:12px;
}

.ms-kbd{
    background:#22304f;
    padding:2px 7px;
    border-radius:5px;
    color:#fff;
    font-size:11px;
    margin:0 2px;
}
/* featured course modal */
.lc-modal-close{
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f6ff;
    font-size: 22px;
    font-weight: 700;
    color: #0f3176;
    cursor: pointer;
    transition: 0.3s;
}

.lc-modal-close:hover{
    background: #0f3176;
    color: #fff;
}
.lc-modal-content{
    border-radius: 18px;
    border: none;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.lc-modal-body{
    text-align: center;
}

.lc-modal-title{
    font-size: 24px;
    font-weight: 700;
    color: #0f3176;
    margin-bottom: 10px;
}

.lc-modal-text{
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}
.lc-modal-text strong{
    color: #00ca00
}
.lc-modal-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}
.secondary-btn{
    background: transparent;
    color: #0f3176;
    border: 2px solid #0f3176;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.secondary-btn:hover{
    background: #0f3176;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15,49,118,0.15);
}
.feature-sec {
    background: linear-gradient(135deg, #0f3176, #071a42);
    position: relative;
    overflow: hidden;
}

/* subtle glow overlay */
.feature-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0,255,255,0.06), transparent 40%);
    pointer-events: none;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    height: 100%;
}


.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ffe0006e;
    color: #ffe000;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-con h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
}

.course-card{
    margin-top: 30px;
    background:#fff;
    border-radius:22px;
    padding:20px;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
    border:1px solid #e9eef7;
    box-shadow:0 10px 25px rgba(16,24,40,0.05);
}

.course-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(16,24,40,0.12);
}
.course-card:hover .price-badge{
    background-color: #ffe000;
    color: #071a42
}
.course-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:16px;
    background:#eef0ff;
    color:#4f46e5;
}

/* 6 rotating color themes */
.col-lg-4:nth-child(6n+1) .course-icon{
    background:#eef0ff;
    color:#4f46e5;
}

.col-lg-4:nth-child(6n+2) .course-icon{
    background:#fff1eb;
    color:#f97316;
}

.col-lg-4:nth-child(6n+3) .course-icon{
    background:#ebfbf1;
    color:#16a34a;
}

.col-lg-4:nth-child(6n+4) .course-icon{
    background:#eff6ff;
    color:#2563eb;
}

.col-lg-4:nth-child(6n+5) .course-icon{
    background:#fdf2f8;
    color:#db2777;
}

.col-lg-4:nth-child(6n+6) .course-icon{
    background: #F3E5F5;
    color: #9C27B0;
}

.price-badge{
    position:absolute;
    text-align: center;
    width: 75px;
    height: 75px;
    line-height: 51px;
    padding-left: 23px !important;
    top: 0px;
    border-radius: 0 1rem 0 4.9rem;
    right: 0px;
    background: #6b3fb2;
    color:#fff;
    font-weight: 700;
    padding:7px 14px;
    font-size: 16px;
    box-shadow:0 6px 16px rgba(30,58,138,.25);
}

.course-title{
    font-size: 17px;
    font-weight:700;
    margin-bottom:10px;
    color: #071a42;
    min-height: 40.5px;
}

.course-desc{
    color:#64748b;
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
    min-height:90px;
}

.bottom-area{
    border-top:1px solid #eef2f7;
    padding-top:14px;
}

.details-link{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
    font-size:13px;
}

.qty-box{
    display:flex;
    align-items:center;
    border:1px solid #dbe3f0;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.qty-btn{
    width:36px;
    height:36px;
    border:none;
    background:#f8fbff;
    color:#2563eb;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.qty-btn:hover{
    background:#2563eb;
    color:#fff;
}

.qty-count{
    width:36px;
    text-align:center;
    font-weight:600;
    font-size:13px;
    color:#0f172a;
}

.cart-btn{
    background: linear-gradient(135deg, #0f3176, #071a42);
    border:none;
    color:#fff;
    padding:10px 18px;
    border-radius:12px;
    font-weight:600;
    font-size:13px;
}
.minimal-features{
    background-color: #f4f6fb;
}



.feature-item{
    position: relative;
    text-align: center;
    padding: unset;
    margin-top: 30px;
    overflow: hidden;
    transition: all .35s ease;
}

/* TOP */
.feature-top{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border:none;
    padding:0;
}

/* ICON BOX */
.feature-top i{
    width: 75px;
    height: 75px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:24px;
    font-size: 32px;
    color: #2563eb;
    background: rgba(255,255,255,0.35);
    border:1px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    box-shadow:
        0 10px 30px rgba(37,99,235,0.10),
        inset 0 1px 0 rgba(255,255,255,0.9);
    position:relative;
    z-index:2;
    transition: all .35s ease;
}

/* ICON HOVER */
.feature-item:hover .feature-top i{
    transform: rotate(-6deg) scale(1.08);
    box-shadow:
        0 18px 35px rgba(37,99,235,0.18),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* TITLE */
.feature-item h3{
    font-size: 25px;
    font-weight:700;
    margin-bottom: 12px;
    color:#071a42;
    line-height:1.3;
    letter-spacing:-0.5px;
}

/* TEXT */
.feature-item p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

.row-online .course-desc{
    margin-bottom: 20px;
    min-height: 40px;
}
.offer-section{

}

.offer-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

/* IMAGE */

.offer-image{
    position:relative;
}

.offer-image img{
    width:100%;
    border-radius:32px;
    display:block;
    object-fit:cover;
}

/* CONTENT */


.price-wrap{
    display:flex;
    align-items: center;
    gap:12px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.price-wrap .price{
    font-size: 30px;
    font-weight:800;
    color:#d781b6;
    line-height:1;
    animation: wholeBlink 1.4s infinite;
}

/* WHOLE TEXT BLINK */
@keyframes wholeBlink{

    0%,100%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:0.45;
        transform:scale(1.04);
    }
}
.small-text{
    font-size:22px;
    font-weight:600;
    color:#d781b6;
}

.offer-content h3{
    font-size: 25px;
    font-weight:700;
    margin-bottom: 10px;
    color:#0b1d4d;
}

.description{
    font-size: 16px;
    line-height:1.9;
    max-width:520px;
    margin-bottom: 26px;
}

/* LIST */

.industry-list{
    display:grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 28px 28px;
    margin-bottom: 60px;
}

.industry-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size: 14px;
    color:#0b1d4d;
    font-weight:500;
}

.industry-item i{
    width: 22px;
    height: 22px;
    line-height: 32px;
    border-radius:50%;
    background:#0b1d4d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 13px;
}

.blog-section{
    background-color: #f7fcff
}

/* Heading */

.section-heading{
    margin-bottom:60px;
}


/* Card */

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.35s ease;
    height:100%;
    border:1px solid #e2e8f0;
}

.blog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(15,23,42,.08);
}

/* Image */

.blog-image{
    display:block;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform .5s ease;
    display:block;
}

.blog-card:hover .blog-image img{
    transform:scale(1.05);
}

/* Content */

.blog-content{
    padding:28px;
}

.blog-meta{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.blog-meta i{
    color:#2563eb;
    font-size:15px;
}

.blog-content h3{
    margin-bottom:24px;
    line-height: 1.1;
}

.blog-content h3 a{
    text-decoration:none;
    color:#0f172a;
    font-size: 18px;
    font-weight:700;
    transition:.3s;
    line-height: .9;
}

.blog-content h3 a:hover{
    color:#2563eb;
}

/* Read More */

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
    font-size:16px;
    transition:.3s;
}

.read-more i{
    transition:.3s;
}

.read-more:hover i{
    transform:translateX(4px);
}

.lc-testimonial-section{
    overflow:hidden;
}

/* Rating Pill */

.lc-rating-wrapper{
    margin-bottom:60px;
}

.lc-rating-pill{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    background:#fff;
}

.lc-pill-line{
    width:60px;
    height: 4px;
    background:#2563eb;
    border-radius:20px;
    margin-bottom: 12px;
}

.lc-rating-pill h2{
    font-size: 33px;
    font-weight:800;
    color:#0b1d4d;
    margin-bottom: 2px;
}

.lc-rating-stars{
    display:flex;
    gap: 12px;
    margin-bottom: 3px;
}

.lc-rating-stars i{
    color:#f4a61d;
    font-size: 19px;
}

.lc-rating-pill p{
    font-size:18px;
    color:#475569;
    margin-bottom: 0px;
}

.lc-google-text{
    font-size: 26px;
    font-weight:700;
    color:#4285F4;
    letter-spacing: 0px;
}

/* Navigation */

.lc-testimonial-slider-wrap{
    position:relative;
}

.lc-slider-nav{
    position:absolute;
    top:-90px;
    right:0;
    display:flex;
    gap:14px;
    z-index:10;
}

.lc-nav-btn{
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#0b1d4d;
    font-size:20px;
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.lc-nav-btn:hover{
    background:#0b1d4d;
    color:#fff;
}

/* Card */

.lc-testimonial-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding: 32px;
    transition:.3s ease;
    height:100%;
}

.lc-testimonial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(15,23,42,.06);
}

.lc-user-info{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
}

.lc-user-info img{
    width: 55px !important;
    height: 55px;
    border-radius:50%;
    object-fit:cover;
}

.lc-user-info h2{
    font-size: 20px;
    font-weight:700;
    color:#0b1d4d;
    margin:0;
}

.lc-user-info span{
    font-size: 14px;
    color:#94a3b8;
}

.lc-review-stars{
    display:flex;
    gap:8px;
    margin-bottom:24px;
}

.lc-review-stars i{
    color:#f4a61d;
    font-size:18px;
}

.lc-testimonial-card p{
    font-size: 16px;
    line-height: 1.5;
    margin:0;
}

/* Owl spacing */

.lc-testimonial-slider .owl-stage{
    display:flex;
}

.lc-testimonial-slider .owl-item{
    display:flex;
    height:auto;
}
.test-flex{

    display: flex;

    align-items: center;

    justify-content: space-between;
}
.lc-footer{
    background: linear-gradient(135deg, #0a2864, #071a42);
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* TOP */

.lc-footer-top{
    padding: 60px 0 60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
}

.lc-footer-col h2{
    font-size: 16px;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:30px;
    color:#ffffff;
    position:relative;
    padding-bottom:14px;
}

.lc-footer-col h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:2px;
    background:rgba(255,255,255,.25);
}

.lc-footer-col ul{
    margin:0;
    padding:0;
    list-style:none;
}

.lc-footer-col ul li{
    margin-bottom:16px;
}

.lc-footer-col ul li a{
    text-decoration:none;
    color:rgba(255,255,255,.68);
    font-size: 15px;
    transition:.3s ease;
    padding-left: 12px;
    position:relative;
}
.lc-footer-col ul li a:before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background-color: #8db6ff;
    left: 0;
    top: 5.5px;
}
.lc-footer-col ul li a:hover{
    color:#fff;
    padding-left: 15px;
}

/* CONTACT */

.lc-contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom: 14px;
}

.lc-contact-item i{
    font-size:18px;
    color:#8db6ff;
    margin-top:3px;
}

.lc-contact-item span{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    font-size: 14px;
}

/* SOCIAL */

.lc-social-links{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:35px;
}

.lc-social-links a{
    width: 40px;
    height: 40px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size: 16px;
    transition:.3s ease;
    backdrop-filter:blur(8px);
}

.lc-social-links a:hover{
    background:#fff;
    color:#081f4d;
    transform:translateY(-3px);
}

/* BOTTOM */

.lc-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align:center;
    background:#06173b;
}

.lc-footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.55);
    font-size:15px;
    letter-spacing:.3px;
}
.course-hero  .tag{
    display: inline-block;
    font-size: 16px
}
.course-hero{
    position: relative;
    background: #f9fdff;
}
.course-hero .container{
    position: relative;
    z-index: 1
}
.course-hero::before,
.course-hero::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index: 0;
}

.course-hero::before{
    width:350px;
    height:350px;
    background:#4f8cff;
    top:-80px;
    left:-80px;
    opacity:0.25;
}

.course-hero::after{
    width:400px;
    height:400px;
    background:#ff5fd7;
    bottom:-120px;
    right:-120px;
    opacity:0.18;
}
.course-hero p{
    line-height: 1.6;
    margin-bottom: 30px
}
.course-hero .heading-wrap{
    margin-bottom: 20px
}
.course-p-ul{
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px
}
.course-p-div{
    color: #be1865;
    font-size: 22px;
    font-weight: 600;
}
.cource-count-div{
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 12px;
}
.course-hero-img{
    max-height:500px;
    width:100%;
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.course-hero-img img{
    width:100%;
    height:500px;
    object-fit:cover;
    object-position:center;
    display:block;
}

.course-price-bar{
    position:absolute;
    left:25px;
    right:25px;
    bottom: 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    background:rgba(255,255,255,.95);
    backdrop-filter: blur(-8px);
    -webkit-backdrop-filter:blur(12px);
    padding: 15px 24px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}
.course-price-bar.bar-img{
    display: inline-table;
}
.course-price-bar.bar-img img{
    width: 200px !important;
    height: auto
}
.price-left{
    display:flex;
    flex-direction:column;
}

.price-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:700;
    color:#0f3176;
    margin-bottom:4px;
}

.price-left h2{
    margin:0;
    font-size:42px;
    font-weight:800;
    color: #be1865;
    line-height:1;
}

.price-divider{
    width:1px;
    height:50px;
    background:#dbe2ea;
}

.price-right{
    display:flex;
    flex-direction:column;
}

.price-right span{
    font-size:14px;
    color:#6b7280;
}

.price-right strong{
    font-size:22px;
    font-weight:700;
    color: #071a42;
}

.care-process-section{
    position:relative;
    overflow:hidden;
}


.process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-wrapper::before{
    content:'';
    position:absolute;
    top: 52px;
    left:18%;
    width:64%;
    height:2px;
    background: #071a42;
    z-index:0;
}

.process-card{
    position:relative;
    background:#fff;
    padding: 30px;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(15,23,42,.06);
    border:1px solid #edf2f7;
    transition:.4s ease;
    z-index:2;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(15,23,42,.12);
}

.process-card.active{
    background: #071a42;
    color:#fff;
}

.process-card.active p,
.process-card.active h3{
    color:#fff;
}

.step-number{
    position:absolute;
    top: 26px;
    right:25px;
    font-size: 48px;
    font-weight:900;
    color:rgba(15,23,42,.05);
    line-height:1;
}

.process-card.active .step-number{
    color:rgba(255,255,255,.15);
}

.step-icon{
    width: 60px;
    height: 62px;
    border-radius: 16px;
    background: #071a4214;
    color: #071a42;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 30px;
    margin-bottom:30px;
}

.process-card.active .step-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.process-card h3{
    font-size: 22px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
}

.process-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}
.course-cta{

    background: #f8fbff;

    border: 1px solid #dbe3f0;

    border-radius: 16px;

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    align-items: center;

    padding: 35px;
}

.course-cta-h{

    font-weight: 700;

    color: #071a42;
}

.course-cta-action{
    display: flex;

    align-items: center;
    gap: 10px
}
.faq-sec{
    background-color: #f4f6fb;
}
.lc-faq-accordion{
    max-width:900px;
    margin:auto;
}

.lc-faq-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius: 16px !important;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 35px rgba(15,49,118,.08);
}

.lc-faq-accordion .accordion-button{
    background:#fff;
    color:#111827;
    font-size: 16px;
    font-weight:600;
    padding: 22px 22px;
    box-shadow:none !important;
    border:none;
    position:relative;
}

.lc-faq-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#0f3176;
}

.lc-faq-accordion .accordion-button::after{
    display:none;
}

.lc-faq-accordion .accordion-button::before{
    content:"\F4FE";
    font-family:"bootstrap-icons";
    position:absolute;
    right:28px;
    font-size:22px;
    color: #2b5cff;
    transition:.35s ease;
}

.lc-faq-accordion .accordion-button:not(.collapsed)::before{
    content:"\F2EA";
    transform:rotate(180deg);
}

.lc-faq-accordion .accordion-body{
    padding:0 28px 26px;
    font-size:16px;
    line-height:1.8;
    color:#5b6472;
}

.lc-faq-accordion .accordion-collapse{
    transition:all .35s ease;
}
.lc-cart-canvas{
    width:420px !important;
    border-left:1px solid #edf1f7;
}

.lc-cart-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px;
    border-bottom:1px solid #edf1f7;
}

.lc-cart-header h2{
    font-weight:700;
    margin:0;
    font-size: 20px
}

.lc-cart-body{
    padding: 15px;
    overflow-y:auto;
}

.lc-cart-item{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:15px;
    padding: 15px;
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:16px;
    margin-bottom:15px;
    transition:.3s;
}

.lc-cart-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.lc-cart-content{
    flex:1;
}

.lc-cart-content h3{
    margin:0 0 8px;
    font-weight:600;
    line-height:1.4;
    font-size: 14px;
}

.lc-cart-meta{
    display:flex;
    align-items:center;
    gap:15px;
    color:#6b7280;
    font-size:14px;
}

.lc-cart-price{
    font-weight:700;
    color:#0f3176;
}

.lc-cart-delete{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#fff5f5;
    color:#dc2626;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.lc-cart-delete:hover{
    background:#dc2626;
    color:#fff;
}

.lc-cart-footer{
    border-top:1px solid #edf1f7;
    padding:20px;
    margin-top:auto;
}

.lc-cart-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    font-size:18px;
}

.lc-cart-total strong{
    color:#0f3176;
}

.lc-checkout-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

@media(max-width:576px){

    .lc-cart-canvas{
        width:100% !important;
    }

}
.first-aid{
    background: linear-gradient(180deg, oklch(98% .012 260) 0%, oklch(95% .025 245) 100%);
}
.first-aid-left, .first-aid-right{
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px
}
.first-aid-left .lc-faq-accordion .accordion-button{
    padding: 15px
}
.first-aid-left .lc-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 5px;
    border-radius: 12px !important;
}

.first-aid-left .lc-faq-accordion .accordion-body {
    padding: 0 18px 18px;
}
.first-ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.first-ul li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.first-ul li::before{
    content: "\f26e"; /* bi-check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: -1px;
    color: #0a2762;
    font-size: 18px;
    font-weight: 700;
}
.first-h{
    margin: 20px 0;
    font-size: 2rem;
    font-weight: 700;
    color: #071a42;
}
.first-you-vid{
    border-radius: 12px;
    margin-top: 25px;
    margin-bottom: 25px
}
.first-you-vid iframe{
    border-radius: 12px;
}
.first-aid-right .quote-box{
    box-shadow: none
}
.first-aid-right .quote-top{
    text-align:left;
    margin-bottom: 20px;
}
.first-aid-right .quote-body{
    display: flex;
    flex-direction: column;
    align-items: inherit;
    gap: 15px;
}
.first-aid-right .main-heading{
    font-size: 1.4rem
}

.lc-course-list{
    list-style:none;
    padding:0;
    margin:0;
    margin-bottom: 20px;
}

.lc-course-list li{
    display:flex;
    align-items:center;
    padding: 9px 0;
    border-bottom:1px solid #eee;
}

.lc-course-list li:last-child{
    border-bottom:none;
}

.lc-course-list i{
    width: 36px;
    height: 36px;
    min-width: 36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background: rgb(7 26 66 / 13%);
    color: #071a42;
    font-size: 16px;
    margin-right:15px;
}

.lc-course-list span{
    font-size: 14px;
    font-weight:600;
    color:#111;
}
.first-r-img{
    width: 200px;
    margin-left: auto;
    margin-right: auto
}
.lc-course-sidebar{
    position: relative;
    background: #fff;
    border: 1px solid #e8e3dc;
    border-radius: 32px;
    padding: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.lc-save-ribbon{
    position: absolute;
    top: 0;
    right: 0;
    background: #081d42;
    color: #fff;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom-left-radius: 20px;
}

.lc-price-wrap{
    margin-bottom: 20px;
}

.lc-old-price{
    font-size: 26px;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 5px;
    font-weight: 700;
}

.lc-new-price{
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #081d42;
}
.lc-new-price.stand-p{
    animation: wholeBlink 1.4s infinite;
}
.lc-course-meta{
    margin-top: 15px;
}

.lc-meta-card{
    border: 1px solid #e8e3dc;
    border-radius: 20px;
    padding: 12px;
    height: 100%;
}

.lc-meta-label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 10px;
}

.lc-meta-label i{
    color: #d99028;
}

.lc-meta-value{
    font-size: 22px;
    font-weight: 600;
    color: #081d42;
    line-height: 1.2;
}

.lc-sidebar-divider{
    height: 1px;
    background: #ece7e1;
    margin: 25px -36px;
}

.lc-sidebar-title{
    font-size: 28px;
    font-weight: 700;
    color: #081d42;
    margin-bottom: 24px;
}

.lc-benefit-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.lc-benefit-list li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #1f2937;
}

.lc-benefit-list li::before{
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0px;
    color: #2b5cff;
    font-size: 16px;
}
.side-et-features{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.side-et-feature-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 22px;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:20px;
    transition:all .3s ease;
    box-shadow:0 4px 20px rgba(15,23,42,.05);
}

.side-et-feature-item:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(15,23,42,.10);
    border-color:#d6e3ff;
}

.side-et-feature-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#041b4d,#0d57d0);
    color:#fff;
    font-size:26px;
}

.side-et-feature-title{
    font-size:1.45rem;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
}
.lc-course-sidebar .lc-hero-features{
    
margin-top: 10px;
}
.lc-course-sidebar .lc-hero-features .lc-feature-item{
    
background: #fff;
    
border: 1px solid #071a42;
    
color: #071a42;
    
width: 100%;
}
.lc-course-sidebar .lc-hero-features .lc-feature-item i{
    
color: #2563eb;
}
.side-logos{
    width: 200px
}
.side-et-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.side-et-offer-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.side-et-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.side-et-offer-courses {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #219326;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #eafbd7;
    padding: 3px 15px;
    border-radius: 100px;
}

.side-et-offer-card h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.side-et-offer-featured {
    background: linear-gradient(135deg, #0d6efd, #084298);
    border-color: #0d6efd;
    position: relative;
    overflow: hidden;
}

.side-et-offer-featured::before {
    content: "Best Value";
    position: absolute;
    top: 14px;
    right: -36px;
    background: #ffc107;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
}


.side-et-offer-featured h4 {
    color: #fff;
}

@media (max-width: 576px) {
    .side-et-offers-grid {
        grid-template-columns: 1fr;
    }

    .side-et-offer-card h4 {
        font-size: 20px;
    }
}
/* Cookie box */

.ck-cookie-box {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 360px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  z-index: 99999;
}

.ck-cookie-icon {
  width: 48px;
  height: 48px;
  background: #071a42;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.dd-cookie {
    display: flex;
    gap: 10px;
    align-items: center
}
.dd-cookie h2 {
  font-size: 22px;
  font-weight: 700;
  color: #071a42;
  margin-bottom: 10px;
}

.ck-cookie-content p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
}

.ck-cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.ck-btn-primary {
  background: #071a42;
  color: #fff;
  border: none;
  height: 48px;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 600;
}

.ck-btn-outline {
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 48px;
  padding: 0 25px;
  border-radius: 12px;
}

.ck-footer-links {
  margin-top: 18px;
  font-size: 13px;
  display: flex;
  gap: 10px;
}

.ck-footer-links a {
  color: #071a42;
  text-decoration: none;
  font-weight: 600;
}

/* Modal */

.ck-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.ck-modal-header {
  background: #071a42;
  padding: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ck-modal-body {
  padding: 20px;
}

.ck-top-text {
  color: #6b7280;
  margin-bottom: 30px;
}

.ck-row {
  display: flex;
  gap: 20px;
  padding: 10px;
  border: 1px solid #edf2f7;
  border-radius: 18px;
  margin-bottom: 8px;
  transition: .3s;
}

.ck-row:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.ck-row-content h5 {
  font-weight: 700;
  color: #071a42;
  margin-bottom: 2px;
  font-size: 16px;
}

.ck-row-content p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

.ck-switch {
  transform: scale(1.3);
}

.ck-switch:checked {
  background-color: #071a42;
  border-color: #071a42;
}

.ck-modal-footer {
  padding: 25px 35px;
  border-top: 1px solid #eee;
}

.ck-save-btn {
  background: #071a42;
  height: 54px;
  border: none;
  color: white;
  border-radius: 14px;
  padding: 0 35px;
  font-weight: 600;
}
/* =========================================
MEDIA QUERIES
========================================= */

@media (max-width: 991px) {
    .desk-menu{
        display: none
    }
    .lc-hero-section {
        min-height: auto;
        padding: 50px 0 50px;
    }

    .lc-hero-title {
        font-size: 2rem;
    }
    .heading-wrap {
        margin-bottom: 20px;
    }
    .lc-search-input {
        height: 68px;
        border-radius: 18px;
        padding: X0 132px 0 20px;
    }

    .lc-search-btn,
    .lc-voice-btn {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .lc-voice-btn {
        right: 68px;
    }

    .lc-feature-item {
        width: 100%;
        justify-content: center;
    }

    .quote-body {
        grid-template-columns: 1fr;
    }

    .quote-btn {
        width: 100%;
    }
    .blog-content h3 a{
        font-size:24px;
    }
    .offer-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }



    .price{
        font-size:58px;
    }

    .offer-content h3{
        font-size:28px;
    }

    .industry-list{
        grid-template-columns:1fr;
    }

    .feature-top i{
        width:72px;
        height:72px;
        font-size:30px;
    }

    .feature-item h3{
        font-size:24px;
    }

    .feature-item p{
        font-size:15px;
        line-height:1.7;
    }
    .lc-rating-pill{
        width:100%;
        border-radius:30px;
        padding:28px;
    }

    .lc-rating-pill h2{
        font-size:38px;
    }

    .lc-slider-nav{
        position:static;
        justify-content:center;
        margin-bottom:30px;
    }

    .lc-testimonial-card{
        padding:28px;
    }

    .lc-testimonial-card p{
        font-size:16px;
    }
    .ms-search-header {
        padding: 10px;
    }
    .ms-search-input{
        font-size: 14px
    }
    .ms-footer-bar{
        font-size: 9px
    }
    .ms-kbd{
        font-size: 9px
    }
    .ms-item-title {
        font-size: 12px;
    }
    .ms-item-sub {
        font-size: 11px;
    }
    .ms-item-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .main-heading {
        font-size: 2rem;
    }
    .process-wrapper{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-wrapper::before{
        display:none;
    }

    .process-card{
        margin-bottom:20px;
    }
    .course-price-bar{
        left:15px;
        right:15px;
        bottom:15px;
        gap:15px;
        padding:15px;
    }

    .price-left h2{
        font-size:32px;
    }

    .price-right strong{
        font-size:18px;
    }
    .course-p-ul {
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 20px
    }
    .course-p-div {
        font-size: 16px;
    }
    .cource-count-div{
        gap: 15px
    }
    .course-cta{
        display: block;
        text-align: center;
        padding: 20px
    }
    .course-cta-h{
        margin-bottom: 20px
    }
    .course-cta-action{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .course-cta-action a{
        width: 100%
    }
    .lc-course-sidebar{
        padding: 24px;
        border-radius: 24px;
    }

    .lc-new-price{
        font-size: 52px;
    }

    .lc-sidebar-title{
        font-size: 30px;
    }

    .lc-sidebar-divider{
        margin: 28px -24px;
    }
    .side-et-feature-item{
        padding:16px 18px;
        gap:14px;
    }

    .side-et-feature-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:22px;
    }

    .side-et-feature-title{
        font-size:1.2rem;
    }
}

@media all and (min-width:992px) {
    .srch .dropdown-menu {
        width: 250px;
    }

    .f-mob {
        display: none;
    }

    .f-desk {
        display: block;
    }
}

@media (min-width:1200px) {
    .m-nav-container.container {
        max-width: 1200px;
    }
}
@media(max-width:1100px){

    .lc-footer-top{
        grid-template-columns:repeat(2,1fr);
        gap:50px;
    }

}

@media(max-width:767px){

    .lc-footer-top{
        grid-template-columns:1fr;
        padding:70px 0 50px;
        gap:40px;
    }

    .lc-footer-col h2{
        margin-bottom:24px;
    }

    .lc-footer-col ul li{
        margin-bottom:14px;
    }

    .lc-social-links{
        flex-wrap:wrap;
    }

    .lc-footer-bottom{
        padding:22px 18px;
    }

    .lc-footer-bottom p{
        line-height:1.8;
        font-size:14px;
    }

}
@media all and (max-width:992px) {

    .f-desk {
        display: none;
    }

    .f-mob {
        display: block;
    }

    .mbr {
        display: block;
    }

    .navbar {
        background-color: #fff;
    }

    .login-button {
        margin-bottom: 0;
    }
    .feature-box {
        padding: 18px;
    }

    .feature-con h3 {
        font-size: 15px;
    }
}