body {
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.bg-theme-color {
    background-color: #CB6A1C !important;
    color: #ffffff;
    font-weight: 600;
}

.bg-theme-color:hover {
    background-color: #424549 !important;
    color: #ffffff;
    font-weight: 600;
}

.topbar {
    font-size: 16px;
    background-color: #ffffff;
}

/* Hover Effects */
.top-left a {
    text-decoration: none;
}

.top-left a:hover,
.top-right a:hover {

    opacity: 0.85;
}

/* Marquee Text */
.news-content {
    font-size: 16px;
    white-space: nowrap;
}

/* Desktop Divider */
.news {
    padding: 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

/* MOBILE MASTER FIX */
@media(max-width: 767px) {

    .topbar-wrapper {
        justify-content: center !important;
        text-align: center;
        gap: 5px;
    }

    .top-left,
    .top-right {
        width: 100%;
        justify-content: center;
    }

    .news {
        width: 100%;
        border: none;
        background-color: #cb6a1c !important;
        padding: 0;
        margin-top: -3px;
    }

    .news-content {
        font-size: 12px;
    }

    .top-left a,
    .top-right a {
        font-size: 11px;
        text-decoration: none;
    }
}

/* ------------------------------------
   TOP LINKS & SOCIAL ICONS
------------------------------------ */
.top-links a,
.top-right-links a {
    text-decoration: none;
    font-size: 13px;
    color: inherit;
}


/* ------------------------------------
   LOGO
------------------------------------ */
.logo-img {
    width: 155px;
    max-height: 50px;
    transition: .3s;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* ------------------------------------
   MAIN NAV
------------------------------------ */

/* Remove focus outline & shadow from Navbar Toggler */
.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none !important;
    outline: none !important;
}


.main-nav {
    transition: background .5s, padding .5s, box-shadow .5s;
    padding: 12px 10px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    /* box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); */
}

/* Sticky Smart Effect */
.main-nav.scrolled {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 6px 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

/* ------------------------------------
   MENU HOVER (Desktop)
------------------------------------ */
.main-menu .nav-link {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 18px;
    position: relative;
    color: #000;
}

.main-menu .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 5%;
    width: 0;
    height: 3px;
    background: #CB6A1C;
    transition: .3s ease;
}

.main-menu .nav-link:hover::after,
.main-menu .nav-item.show .nav-link::after {
    width: 81%;
    left: 10%;
}

/* ------------------------------------
   DESKTOP DROPDOWN HOVER FIX
------------------------------------ */
/* ------------------------------------
   DESKTOP DROPDOWN HOVER FIX (FINAL)
------------------------------------ */
@media (min-width: 992px) {

    /* Make parent containers allow visible dropdown */
    .navbar-collapse {
        overflow: visible !important;
    }

    .navbar-nav {
        position: relative !important;
        z-index: 1000;
    }

    /* Dropdown Menu */
    .navbar-nav .dropdown-menu {
        display: block;
        /* ensures hover works */
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 180px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 9999;
    }

    /* Show on hover */
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate arrow on hover */
    .navbar-nav .nav-item.dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}



/* ------------------------------------
   PREMIUM MOBILE NAVIGATION UX (unchanged)
------------------------------------ */
@media(max-width: 992px) {
    .offcanvas {
        background: #ffffff;
    }

    .main-menu .nav-link {
        width: 100%;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
        transition: .3s ease;
    }

    /* Icon alignment */
    .main-menu .nav-link i:first-child {
        width: 20px;
        text-align: center;
        opacity: 0.85;
    }

    /* Chevron arrow */
    .dropdown-arrow {
        font-size: 13px;
        transition: transform .3s ease;
    }

    .nav-item.show .dropdown-arrow,
    .dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 0 40px;
        transition: all ease .3s;
    }

    .dropdown-menu .dropdown-item {
        font-size: 13px;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, .06);
    }

    .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Hover feeling */
    .nav-link:active,
    .dropdown-item:active {
        background: rgba(0, 0, 0, 0.03);
    }

    /* Logo better view */
    .logo-img-small {
        max-height: 55px;
    }
}

/* MOBILE DROPDOWN ENHANCED (unchanged) */
@media(max-width: 992px) {
    .main-menu .dropdown-menu {
        display: none;
        padding-left: 25px;
        background: transparent;
        box-shadow: none;
        border: none;
        animation: slideToggle .3s ease;
    }

    @keyframes slideToggle {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        border-bottom: 1px dashed rgba(0, 0, 0, .08);
        padding: 8px 0;
        font-size: 13px;
    }

    .dropdown-arrow {
        transition: transform .3s ease;
        font-size: 12px;
    }

    .nav-item.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}




/* ------------------------------------
   SEARCH UI
------------------------------------ */
.search-bar {
    background: #fff;
    z-index: 1000;
}


/* ------------------------------------
   ICON BUTTONS
------------------------------------ */
.icon-button {
    background: transparent;
    border: none;
    color: #000;
    font-size: 17px;
    transition: .3s;
}

.icon-button:hover {
    color: var(--bs-primary);
}

/* ------------------------------------
   HERO SECTION PREMIUM STYLING
------------------------------------ */
.hero-section {
    position: relative;
    /* background: #0E1A2B; */
    /* dark navy for premium feel */
    overflow: hidden;
    /* padding: 60px 0; */
}

.hero-carousel {
    padding-right: 0 !important;
}

.hero-carousel .item {
    position: relative;
}

.hero-carousel .item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}




/* ------------------------------------
   RIGHT NOTIFICATION BOX (Overlap)
------------------------------------ */
.notification-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    width: 360px;
    transform: translateY(-50%);
    z-index: 15;
}

.notification-frame {
    background: #CB6A1C;
    padding: 18px;
    color: #000000;
    border-radius: 8px 0 0 70px;
    box-shadow: -5px 0 35px rgba(0, 0, 0, 0.35);
    border-left: 15px solid #009975;
    overflow: hidden;
}

.notification-header h3 {
    font-size: 20px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 15px;
}

.notification-header h3 span {
    color: #00C793;
}

/* Auto Scroll Area */
.latest-scroll {
    height: 370px;
    overflow: hidden;
}

.note-list .note-item {
    padding: 10px 0;
    border-bottom: 1px solid rgb(255 255 255 / 58%);
}

.note-item a {
    font-size: 14px;
    text-decoration: none;
    color: #e6eef7;
    transition: .3s;
}

.note-item a:hover {
    color: #00C793;
}

.smart-scroll {
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: #FFD850 rgba(255, 255, 255, 0.1);
}

.smart-scroll::-webkit-scrollbar {
    width: 6px;
}

.smart-scroll::-webkit-scrollbar-thumb {
    background-color: #FFD850;
    border-radius: 10px;
}

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

    .notification-wrapper {
        position: relative;
        width: 100%;
        transform: unset;
        margin-top: 20px;
    }

    .hero-carousel .item img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
    }

    .slider-overlay h2 {
        font-size: 32px;
    }

    .latest-scroll {
        height: 200px;
    }
}



/* --------------------------------------
      Welcome Section
    -------------------------------------- */
.welcome-section {
    padding: 50px 10px;
    background: #ffffff;
}

.welcome-content {
    text-align: justify;
}

.sub-heading {
    font-size: 16px;
    color: #CB6A1C;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0px;
}

.welcome-points {
    padding: 0;
    margin: 0;
    list-style: none;
}

.welcome-points li {
    font-size: 15px;
    color: #001f3f;
    margin-bottom: 10px;
    /* padding-left: 25px; */
    position: relative;
}

.welcome-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: #CB6A1C;
    font-size: 18px;
}

.welcome-image img {
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .main-heading {
        font-size: 26px;
    }

    .welcome-image {
        margin-top: 30px;
    }
}



/*-----------------------// our achivment section //------------------------ */

.achievements-section {
    padding: 50px 10px;
    background: #F7F7F7;
}

.section-sub-title {
    font-size: 16px;
    color: #CB6A1C;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #CB6A1C;
}

.section-desc {
    font-size: 16px;
    color: #444;
}

/* COUNTER CARDS */
.counter-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.counter-box:hover {
    transform: translateY(-6px);
}

.counter-number {
    font-size: 22px;
    font-weight: 700;
    color: #CB6A1C;
}

/* TOPPER CARD */
.topper-card {
    background: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #eee;
    transition: .3s;
}

.topper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.topper-img-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}

.topper-img-wrapper img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #CB6A1C;
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.student-name {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #001F3F;
}

.student-detail {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .topper-img-wrapper {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .topper-img-wrapper {
        height: 130px;
    }

    .student-name {
        font-size: 15px;
    }
}


/* ============================
   COURSES SECTION – FINAL UI
   ============================ */

.courses-section {
    padding: 70px 0;
    background: #fefefe;
}

/* Section Headings */
.section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #001F3F;
    margin-bottom: 10px;
}

.section-sub-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #CB6A1C;
    font-weight: 600;
}

/* ============================
   COURSE TABS
   ============================ */

.course-tabs {
    flex-wrap: wrap;
    gap: 10px;
}

.course-tabs .nav-link {
    font-weight: 600;
    cursor: pointer;
    color: #222;
    border: 2px solid #ddd;
    border-radius: 30px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    background: #fff;
}

.course-tabs .nav-link:hover,
.course-tabs .nav-link.active {
    background: #CB6A1C;
    color: #fff !important;
    border-color: #CB6A1C;
}

/* ============================
   COURSE GRID (DESKTOP / TAB)
   ============================ */

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ============================
   COURSE CARD
   ============================ */

.course-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #eee;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.course-title {
    font-size: 17px;
    font-weight: 700;
    color: #001F3F;
    line-height: 1.3;
}

.course-badge {
    background: #CB6A1C;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    white-space: nowrap;
}

/* ============================
   COURSE CONTENT
   ============================ */

.course-meta {
    flex-grow: 1;
    font-size: 14px;
    color: #444;
}

.course-meta p {
    margin-bottom: 6px;
    line-height: 1.5;
}

.course-meta strong {
    color: #001F3F;
    font-weight: 600;
}

/* Long text handling */
.course-desc {
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================
   BUTTON
   ============================ */

.enroll-btn {
    font-size: 14px;
    background: #001F3F;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    width: 100%;
    font-weight: 600;
}

.enroll-btn:hover {
    background: #CB6A1C;
}

/* ============================
   MOBILE UX – HORIZONTAL SCROLL
   ============================ */

@media (max-width: 768px) {
    .course-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .course-card {
        min-width: 85%;
        scroll-snap-align: start;
    }

    /* hide scrollbar */
    .course-grid::-webkit-scrollbar {
        display: none;
    }
}

/* ============================
   LARGE SCREENS
   ============================ */

@media (min-width: 1400px) {
    .course-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* ------------------------////// How we Work Section /////////--------------------- */

/* How We Work Section */
#how-we-work .sub-heading {
    letter-spacing: 1px;
    font-size: 14px;
}

#how-we-work .main-heading {
    font-size: 32px;
    margin-bottom: 15px;
}

#how-we-work .section-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Step Cards */
.step-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.step-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-card .step-number {
    font-size: 24px;
    font-weight: 700;
    color: #9a0000;
    background: rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto;
}

/* Responsive */
@media(max-width: 768px) {
    #how-we-work .main-heading {
        font-size: 26px;
    }

    .step-card {
        padding: 20px 15px;
    }
}



/* ----------------------------////////Knowledge Hub Section /////////--------------------- */


.kh-card {
    height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.kh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.kh-title {
    background-color: #CB6A1C;

    font-size: 18px;
    /* border-radius: 6px; */
    color: #ffffff !important;
}

.kh-content {
    overflow-y: auto;
    height: 380px;
    padding-right: 5px;
    scroll-behavior: smooth;

}

/* List Items */
.item-list {
    list-style: none;
    padding-left: 0;
}

.item-list li {
    margin-bottom: 5px;
    padding-left: 5px;
    font-size: 12px;
}

.item-list li a {
    color: #1A0DAB;
    font-weight: 700;
    text-decoration: none;
}

.item-list li a:hover {
    color: #008cff;
    text-decoration: underline;


}

.item-list span {
    font-size: 12px;
    color: #999;
}

/* Scrollbar Style */
.smart-scroll2::-webkit-scrollbar {
    width: 6px;
}

.smart-scroll2::-webkit-scrollbar-thumb {
    background: #CB6A1C;
    border-radius: 10px;
}

@media(max-width: 768px) {
    .kh-card {
        height: auto;
    }

    .kh-content {
        height: 300px;
    }
}



/* -------------------/////////-Youtube Video Section/////// ---------------------------- */

#latest-videos .youtube-card {
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

#latest-videos .youtube-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

#latest-videos .thumb {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

#latest-videos iframe {
    width: 100%;
    height: 100%;
    transition: .4s ease;
}

#latest-videos .youtube-card:hover iframe {
    transform: scale(1.05);
}

#latest-videos .video-title {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 0;
}


/* ---------------------------////// faculty Card Section ////////-------------------- */

.FacultyProSection h2 span {
    color: #CB6A1C !important;
}

.facultyProCard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: .3s ease;
    text-align: center;
}

.facultyProCard:hover {
    transform: translateY(-6px);
}

.facultyProImg {
    width: 100%;
    height: 300px;
    object-fit: fill;
}

.facultyProBtn {
    width: 100%;
    border: none;
    background: #CB6A1C;
    color: #fff;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
    transition: .3s ease;
}

.facultyProBtn:hover {
    background: #a55415;
}

.facultyProInfo {
    background: #ffffff;
    color: #000000;
    padding: 15px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.facultyProName {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.facultyProSubject {
    display: block;
    color: #CB6A1C;
    text-transform: uppercase;
    margin-top: 6px;
}


/* ----------/////////// Input //////--------------- */


.modal-content {
    animation: fadeSlideUp .35s ease-in-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group-text {
    border-right: 0 !important;
}

.input-group .form-control {
    border-left: 0 !important;
}

.input-group:focus-within .input-group-text i {
    color: #CB6A1C;
    transition: .3s ease;
}




/*Image grow on box hover animation*/
.icon-box img {
    transition: 0.3s;
}

.icon-box:hover img {
    transform: scale(1.1);
}


/*Scroll Bar*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb {
    background: #002347;
    border-radius: 50px;
}

@media (max-width: 1130px) {
    .fixed-archive {
        width: 250px;
    }
}

@media (max-width: 1030px) {
    .fixed-archive {
        width: 230px;
    }
}

@media (max-width: 860px) {
    .fixed-archive {
        width: 230px;
    }
}

@media (max-width: 767px) {
    .fixed-archive {
        width: 100%;
    }

    /*.fixed-archive.fixed {*/
    /*    position: static;*/
    /*}*/
    .w-responsive {
        width: fit-content;
    }
}

.font-responsive {
    font-size: 16px;
}

.responsive-height {
    height: 26rem;
}

@media (max-width: 1750px) {
    .responsive-height {
        height: 23rem;
    }
}

@media (max-width: 1670px) {
    .font-responsive {
        font-size: 15px;
    }
}

@media (max-width: 1600px) {
    .font-responsive {
        font-size: 14px;
    }

    .responsive-height {
        height: 22rem;
    }
}

@media (max-width: 1500px) {
    .font-responsive {
        font-size: 13px;
    }

    .responsive-height {
        height: 21rem;
    }
}

@media (max-width: 1440px) {
    .font-responsive {
        font-size: 12px;
    }

    .responsive-height {
        height: 19rem;
    }
}

@media (max-width: 1340px) {
    .font-responsive {
        font-size: 10px;
    }

    .responsive-height {
        height: 18rem;
    }
}

@media (max-width: 1270px) {
    .responsive-height {
        height: 16rem;
    }
}

@media (max-width: 1200px) {
    .font-responsive {
        font-size: 10px;
    }

    .responsive-height {
        height: 14rem;
    }
}

@media (max-width: 1060px) {
    .responsive-height {
        height: 13rem;
    }
}

@media (max-width: 1024px) {
    .font-responsive {
        font-size: 10px;
    }

    .responsive-height {
        height: 12rem;
    }
}

@media (max-width: 991px) {
    .font-responsive {
        font-size: 14px;
    }

    .responsive-height {
        height: 14rem;
    }
}


.field-item .showAnswer {
    background-color: #f4511e;
    padding: 0.5rem 1rem;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}

.field-item input[type='checkbox'] {
    display: none;
}

.field-item .showAnswer+input[type="checkbox"]+div {
    display: none;
    border: 1px solid #dbdbdb;
    margin: 20px;
    margin-top: 0;
    padding: 0.5rem;
    border-radius: 6px;
}

.field-item .showAnswer+input[type="checkbox"]:checked+div {
    display: block;
}

.img-hover {
    transition: 0.5s;

}

.img-hover:hover {
    transform: scale(1.1);
}

.card-link-hover {
    transition: 0.5s;
    box-shadow: 2px 2px 11px 0px;
}

.card-link-hover:hover {
    box-shadow: 4px 7px 9px 3px;
}

.strip-reverse {
    position: absolute;
    top: 40px;
    left: -65px;
    width: 14rem;
    height: fit-content;
    transform: rotate(-45deg);
    z-index: 100;
}

.strip-reverse::before,
.strip-reverse::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 24px;
    width: 0;
    height: 0;
    /*background-color: #00162b;*/
    /*background-color: red;*/
    border-top: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 9px solid #001d38;
    /*transform: rotate(45deg) translate(19px, -1px);*/
    transform: rotate(45deg);
    z-index: 10;
}

.strip-reverse::after {
    left: 208px;
    top: 17px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid #001d38;
    border-left: 8px solid transparent;
}

.cs-editor div {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.cs-editor h1,
.field-item h1 {
    font-size: 1.5rem;
    margin-top: 1.5rem
}

.cs-editor h2,
.field-item h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem
}

.cs-editor h3,
.field-item h3 {
    font-size: 1.18rem;
    margin-top: 1.5rem
}

.cs-editor h4,
.field-item h4 {
    font-size: 1.08rem;
    margin-top: 1.5rem
}

.cs-editor h5,
.field-item h5 {
    font-size: 1rem;
    margin-top: 1.5rem
}

.cs-editor h6,
.field-item h6 {
    font-size: 0.9rem;
    margin-top: 1.5rem
}

.cs-editor p,
.field-item p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-left: 0.5rem;
    color: #474747;
}

.cs-editor ul li,
.field-item li {
    font-size: 1rem;
    color: #474747;
}

.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
    transform: translateY(0px);
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .hide-max-768 {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hide-min-768 {
        display: none !important;
    }
}

.achievers-carousel .owl-item.active.center {
    transform: scale(1.1);
}

.animate-slider-notification1 {
    overflow: hidden;
    animation: sliderNotification1 20s linear infinite;
}

@keyframes sliderNotification1 {
    0% {
        transform: translateY(0);
    }

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

.animate-slider-notification2 {
    overflow: hidden;
    animation: sliderNotification2 20s linear infinite;
}

@keyframes sliderNotification2 {
    0% {
        transform: translateY(0);
    }

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

@media screen and (min-width: 425px) {
    .post-align {
        margin: 20px 0;
    }
}

/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: auto;
    padding: 20px;
    width: 100%;
    min-width: 300px;
}

/* Style the input fields */
input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
    transition: all ease-in-out 900ms;
}

/* Make circles that indicate the steps of the form: */
.step {
    color: black;
    line-height: 16px;
    background-color: #bbbbbb;
    border: none;
    transition: all ease-in-out 300ms;
    position: relative;
    border-radius: 0 2px 2px 0;
}

.step_containter {
    background-color: #bbbbbb;
}

.step:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 20px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    right: -19px;
    transition: all ease-in-out 300ms;
    top: 0;
    transform: translateX(-100%);
}

/* Mark the active step: */
.step.active {
    opacity: 1;
    color: white;
    background: linear-gradient(90deg, rgba(22, 69, 117, 1) 78%, rgba(11, 211, 219, 1) 100%);
    transition: all ease-in-out 300ms;
    z-index: 999;
}

.step.active:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 20px solid #0bd3db;
    border-bottom: 16px solid transparent;
    position: absolute;
    right: -19px;
    top: 0;
    transform: translateX(0%);
}

/* ===================Inner pages hero section CSS ====================== */

/* Background & Overlay */
.whyHero-section {
    background: linear-gradient(rgb(0 20 45 / 26%), rgb(0 20 45 / 39%)), url(../images/Banner.jpg);
    padding: 140px 10px 110px;
    color: #fff;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 660px;
}

.text-gold {
    color: #CB6A1C !important;
}

/* Headline Underline */
.whyHero-underline {
    width: 110px;
    height: 4px;
    background: #CB6A1C;
    border-radius: 10px;
    margin-top: 8px;
}

/* Typography */
.whyHero-title {
    font-size: 2rem;
    letter-spacing: .5px;
}

.whyHero-subtitle {
    max-width: 750px;
    font-size: 1rem;
    color: #e9ecf1;
}

/* Breadcrumb */
.whyHero-breadcrumb {
    gap: 8px;
    background: transparent;
    font-size: 1rem;
}

.whyHero-breadcrumb a {
    color: #e8ebee;
    font-weight: 500;
    text-decoration: none;
}

.whyHero-breadcrumb .active {
    color: #CB6A1C;
    font-weight: 600;
}

/* Floating Decorative Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.224);
    animation: float 6s infinite ease-in-out;
}

.circle1 {
    width: 134px;
    height: 134px;
    top: 17%;
    left: 10%;
    animation-duration: 7s;
}

.circle2 {
    width: 120px;
    height: 120px;
    bottom: 18%;
    right: 17%;
    animation-duration: 9s;
}

@keyframes float {

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

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

/* Divider */
.whyHero-divider {
    position: absolute;
    bottom: -1px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {


    .whyHero-title {
        font-size: 1.3rem;
    }

    .whyHero-section {
        
        padding: 50px 15px 44px;
        background: linear-gradient(rgb(0 20 45 / 41%), rgb(0 20 45 / 53%)), url(../images/Banner.jpg);
        color: #fff;
        overflow: hidden;
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 150px;
    }


    .whyHero-subtitle {
        max-width: 750px;
        font-size: 0.7rem;
        color: #e9ecf1;
    }

    .whyHero-breadcrumb {
        gap: 8px;
        background: transparent;
        font-size: 0.8rem;
    }

    .circle1 {
        width: 80px;
        height: 80px;
        top: 17%;
        left: 10%;
        animation-duration: 7s;
    }


    .circle2 {
        width: 80px;
        height: 80px;
        bottom: 18%;
        right: 17%;
        animation-duration: 9s;
    }


}


/* =====================Our Approch CSS ==================== */


.text-theme {
    color: #CB6A1C !important;
}

.step-card {
    border: 1px solid rgba(0, 0, 0, 0.05);

    border: 1px solid #CB6A1C;
}

.step-hover:hover {

    box-shadow: 0 15px 40px rgba(0, 0, 0, .09);
    background: #ffffff;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #CB6A1C;
}

@media(max-width: 768px) {
    .step-card {
        padding: 30px 20px;
    }
}


/* <!-- ===============End ========== --> */

@media (max-width: 1400px) {

    #footer ul p {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    #footer .footer {
        max-height: 150px;
        overflow-y: auto;
    }

    #footer ul li {
        margin-bottom: 2px;
    }
}



/*=================//////////////======================Knowledge inner pages ===============*/

/* =========================================================
   FINAL KNOWLEDGE CONTENT + VIDEO RESPONSIVE STYLESHEET
   (No HTML change required)
   Works with: #page .page-section structure
========================================================= */
/* =========================================================
   FINAL IMPROVED KNOWLEDGE PAGE STYLING
   Better alignment + Premium Tags chips
   (No HTML change required)
========================================================= */

#page,
#page .page-section,
#page .container,
#page .row,
#page [class*="col-"] {
  width: 100%;
  overflow-x: hidden;
}

/* Page Section */
#page .page-section {
  padding: 44px 0;
  background: #ffffff;
}

/* Improve overall text rendering */
#page .page-section * {
  box-sizing: border-box;
}

/* Main Content Width */
#page .page-section .col-md-12 {
  max-width: 980px;
  margin: 0 auto 8px;
}

/* Heading */
#page .page-section h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #0b1b3a;
  letter-spacing: 0.2px;
}

/* Remove extra gap created by empty <p> */
#page .page-section p:empty {
  display: none;
}

/* Paragraph Typography */
#page .page-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #2f2f2f;
  margin: 0 0 14px;
}

/* Nested <p><p> safety */
#page .page-section p p {
  margin: 0;
  padding: 0;
}

/* Strong/Bold */
#page .page-section b,
#page .page-section strong {
  color: #111;
  font-weight: 700;
}

/* Justify paragraphs */
#page .page-section p[align="justify"] {
  text-align: justify;
}

/* Normal links */
#page .page-section a {
  color: #0b5ed7;
  text-decoration: none;
}
#page .page-section a:hover {
  text-decoration: underline;
}

/* =========================================================
   TAGS Styling (inline red)
   Your HTML: <p style="color:red">Tags: .... <a>..</a></p>
========================================================= */
#page .page-section p[style*="color:red"] {
  /* remove old red look */
  color: #111 !important;

  /* alignment + spacing */
  display: block;
  margin: 10px 0 18px;
  padding: 12px 12px;

  /* clean container */
  border: 1px solid #ededed;
  background: #fcfcfc;
  border-radius: 8px;

  /* typography */
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;

  /* handle long tags */
  white-space: normal;
  word-break: break-word;

  /* Better look */
  letter-spacing: 0.2px;
}

/* Make "Tags:" label stronger (without HTML change) */
#page .page-section p[style*="color:red"]::first-line {
  font-weight: 800;
}

/* Tag links as premium chips */
#page .page-section p[style*="color:red"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 8px 8px 0 0;
  padding: 7px 12px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  color: #CB6A1C;
  background: #ffffff;

  border: 1px solid #e7e7e7;
  border-radius: 999px; /* pill style */

  text-decoration: none;
  transition: 0.2s ease;

  /* avoid ugly breaking */
  max-width: 100%;
}

/* Hover */
#page .page-section p[style*="color:red"] a:hover {
  border-color: #CB6A1C;
  background: #fff6ee;
  text-decoration: none;
}

/* =========================================================
   YouTube / iframe Responsive + Alignment
========================================================= */

/* Video column alignment fix */
#page .col-sm-4 {
  margin: 6px 0 18px;
}

/* Make sure video does not overflow */
#page .embed-responsive {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 !important;
  overflow: hidden;

  border: 1px solid #ededed;
  border-radius: 8px; /* minimal but premium */
  background: #f8f8f8;
}

/* 16:9 ratio */
#page .embed-responsive-16by9 {
  padding-top: 56.25% !important;
}

/* iframe responsive */
#page .embed-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* Video title below iframe */
#page .col-sm-4 h5 {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

#page .col-sm-4 h5 a {
  color: #111;
  text-decoration: none;
}

#page .col-sm-4 h5 a:hover {
  color: #CB6A1C;
}

/* =========================================================
   "See also" CTA styling
========================================================= */
#page .page-section p b a[href*="Gig_Economy.php"] {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;

  border: 1px solid #e7e7e7;
  background: #fafafa;

  color: #111;
  border-radius: 8px;

  text-decoration: none;
  font-weight: 800;
}

#page .page-section p b a[href*="Gig_Economy.php"]:hover {
  border-color: #CB6A1C;
  color: #CB6A1C;
  background: #fff6ee;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 991px) {
  #page .page-section {
    padding: 28px 0;
  }

  #page .page-section h2 {
    font-size: 24px;
  }

  #page .page-section p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  #page .page-section h2 {
    font-size: 21px;
  }

  #page .page-section p[style*="color:red"] {
    padding: 10px;
    font-size: 13.5px;
  }

  #page .page-section p[style*="color:red"] a {
    font-size: 12.5px;
    padding: 7px 10px;
    margin: 7px 7px 0 0;
  }
}
