/* 1. CSS Variables (Root) */
:root {
    /* Colors from Style Guide */

    --black: #000000;
    --white: #FFFFFF;
    --gray-1: #F4F4F4;
    --gray-2: #A4A4A4;
    --gray-3: #505050;
    --dark-blue: #0D1A2D;
    --blue: #1155E3;
    --light-blue: #D1E0FF;
    --green: #00771D;
    --mid-green: #D2F9DC;
    --light-green: #E5FFEA;
    --pink: #E40176;
    --light-pink: #FFE5F3;
    --orange: #E47E01;
    --light-orange: #FFF3E5;
    --font-main: 'DM Sans', sans-serif;
}




/* 2. Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    color: var(--dark-blue);
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;

}

/* 3. Typography Styles */
h1,
.h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
}

h2,
.h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 52px;
}

h3,
.h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
}

h4,
.h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
}

h5,
.h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

h6,
.h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.subheading {
    font-size: 20px;
    font-weight: 200;
    line-height: 24px;
}

p,
.paragraph-1 {
    font-size: 18px;
    font-weight: 200;
    line-height: 24px;
    margin-bottom: 1.5rem;
}

.paragraph-2 {
    font-size: 16px;
    font-weight: 200;
    line-height: 24px;
}

.login__btn {
text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 400;
    /*line-height: 22px;*/
    /* padding: 6px 26px ; */
    border:none;

}

/* 4. Button Styles */
.btn-custom {

    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 0.73px solid var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;

}

/* Blue Button */
.btn-primary-custom {
    background-color: var(--blue);
    color: var(--white);

}


.btn-primary-custom:hover {
    background-color: var(--dark-blue);

}

/* Dark Button */
.btn-dark-custom {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-dark-custom:hover {
    background-color: #1a2a40;
}

.p-55 {
    padding: 48px;
}


.top-padd{
    padding-top: 60px;
}

/* 5. Mobile Responsive View (Max-width: 768px) */
@media (max-width: 768px) {
.top-padd{
    padding-top: 50px;
}

.h22{
    font-size: 24px !important;
}
.mobile-sticky{
    margin-top:50px ;
}
    .p-55 {
        padding: 30px 8px;
    }

    .hof-card {
        background: var(--white);
        border: 1px solid;
        border-radius: 12px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        transition: transform 0.3s ease;
        width: 100% !important;
    }

    .hof-img {
        margin-left: -47px !important;
    }


    h1,
    .h1 {
        font-size: 36px;
        line-height: 40px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }

    h3,
    .h3 {
        font-size: 20px;
        line-height: 32px;
    }

    h4,
    .h4 {
        font-size: 22px;
        line-height: 26px;
    }


    .btn-custom {
        font-size: 14px;
        padding: 3px 10px;

        gap: 6px;
    }




    /* Body text adjustment */
    p,
    .paragraph-1 {
        font-size: 16px;
        line-height: 22px;
    }


}



.custom-container {
    padding: 0 60px;
}

.padd__right {
    padding: 6px !important;
}


/* --- Desktop Specific (No Changes) --- */
.custom-header {
    box-shadow: 4px 4px 12px 0px #0000000F;

    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #fff !important;

}

.navbar.d-lg-none {
    position: sticky;
    top: 0;
    z-index: 1020;
}


.navbar-nav .nav-link {
    color: var(--black) !important;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    border: 2px solid var(--white) !important;
}

.search-container {
    position: relative;
    /* width: 250px; */
}

.search-input {
  border-radius: 50px;
    padding: 8px 21px 8px 12px;
    font-size: 11px;
    border: 1px solid var(--dark-blue);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    border: none;
    background: none;
}

.navbar-nav .nav-item .nav-link.active-page {
    color: var(--blue) !important;
    font-weight: 700;
}


.navbar-nav .nav-item.active-border {
    border: 2px solid var(--blue);
    border-radius: 8px;
}




.nav-link {
    position: relative;
    color: var(--dark-blue) !important;
}

.nav-link.active-link {
    border-radius: 12px;
    border: 2px solid var(--blue) !important;
    font-weight: 700;
}

/* Underline Indicator */


/* Desktop Hover Logic */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .mega-menu-wrapper {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }


    .dropdown-toggle {
        cursor: pointer;
    }
}

/* --- Mobile Specific (Below 992px) --- */
@media (max-width: 991px) {
    .nav-link.active-link {
        padding-right: 20px;
        border: none !important;
        border-radius: 12px;
        border-bottom: 2px solid var(--blue) !important;
        font-weight: 700;
    }

    .navbar-nav .nav-item .nav-link.active-page {
        color: var(--blue) !important;
        font-weight: 700;
    }


    .navbar-nav .nav-item.active-border {
        border: none;
        border-bottom: 2px solid var(--blue) !important;
        border-radius: 8px;
    }


    .custom-mobile-drawer {
        width: 280px !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .btn-close-outside {
        position: absolute;
        right: -55px;
        top: 25px;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1060;
    }

    .side-nav-links .nav-link {
        font-size: 18px;
        color: #333 !important;
        padding: 12px !important;
        font-weight: 500;
        display: block;
    }

    .active-link {
        color: #0047ff !important;
    }

    .btn-login-mobile {
        background-color: #0047ff !important;
        color: white !important;
        display: block;
        width: 100%;
        padding: 14px;
        text-align: center;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
    }

    .offcanvas-backdrop.show {
        backdrop-filter: blur(4px);
        opacity: 0.5;
    }

    /* Mobile Search Overlay Styling */
    .mobile-search-overlay {
        position: fixed;
        top: -110%;
        left: 0;
        width: 100%;
        z-index: 2000;
        background: white;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-search-overlay.active {
        top: 0;
        visibility: visible;
    }

    .mobile-search-input {
        border-radius: 50px;
        padding: 10px 45px 10px 20px;
        border: 1px solid #ddd;
        width: 100%;
    }

    .mobile-view-bar {
        display: flex !important;
        gap: 20px;
    }
}





/* mega menu */


/* ================================================================
   MEGA MENU STYLING (Desktop + Mobile Responsive)
   ================================================================ */

/* --- Desktop Specific (992px and above) --- */
@media (min-width: 992px) {
    .nav-item.dropdown.has-mega-menu {
        position: static !important;
        /* Poori width lene ke liye zaroori hai */
    }

    /* Hover par menu open karne ke liye */
    .nav-item.dropdown.has-mega-menu:hover>.mega-menu-wrapper {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-menu-wrapper {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff;
        top: 80px;
        border-radius: 0 0 24px 24px;
        /* box-shadow: 4px 5px 14.1px 0px #00000040; */
        padding: 30px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(15px);
        z-index: 1050;

    }

    /* Columns ke beech ki line */

}

/* --- Mobile Specific (Below 992px) --- */
@media (max-width: 991px) {
    .mega-menu-wrapper {
        position: relative !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 10px !important;
        border: none !important;
        background: #fcfcfc !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        /* Bootstrap toggle handles this */
    }

    /* Dropdown open hone par display show */
    .dropdown.show .mega-menu-wrapper {
        display: block !important;
    }

    .mega-col-border {
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .mega-card .d-flex {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .mega-card img {
        width: 100% !important;
        height: 160px !important;
    }
}

/* --- Inner Elements Styling (Universal) --- */

.mega-title {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    padding: 11px 0;
    border-top: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
    margin-bottom: 16px;

}

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

.mega-list li {
    margin-bottom: 16px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;

    font-size: 16px;
    font-weight: 300;
    color: var(--dark-blue);
    transition: 0.3s ease;
}

.mega-list li a:hover {
    font-weight: 400;
    transform: translateX(6px);
    transition: 0.3s ease;
}

/* Icon Circles */
.m-icon {
    width: 32px;
    height: 32px;
    background-color: var(--light-green);
    /* Variable from your global css */
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.m-icon i,
.m-icon svg {
    width: 18px;
    height: 18px;
    color: #00771D;
}

/* Featured Course Card */
.mega-card {
    background: var(--gray-1);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--gray-2);
}

.mega-card img {
    width: 140px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
}

.card-course-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.card-course-meta {
    font-size: 13px;
    font-weight: 300;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

/* Buttons in Mega Menu */
.m-btn-group {
    display: flex;
    gap: 10px;
}


.card-course-meta i {
    color: var(--blue);
}

.m-btn-blue {
    background: var(--blue);
    color: var(--white) !important;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.m-btn-outline {
    border: 1.5px solid var(--blue);
    color: var(--blue) !important;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.m-btn-blue:hover {
    background: var(--dark-blue);
    color: var(--white) !important;
}

.m-btn-outline:hover {
    background: var(--light-blue);
}



/* --- Hover Logic for Desktop --- */
@media (min-width: 992px) {
    .custom-hover-dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0; /* Smooth transition avoid gap */
        transform: translateY(0);
    }
    
    .custom-hover-dropdown .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .custom-hover-dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* --- Professional Dropdown Design --- */
.custom-dropdown-design {
    display: block; /* Controlled by opacity/visibility on hover */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 12px 0 !important;
    min-width: 200px;
        left: -100px;
        top: 30px;
}

.custom-dropdown-design .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease;
}

.custom-dropdown-design .dropdown-item i {
    color: var(--blue); /* Aapke theme ka primary blue */
    width: 20px;
    text-align: center;
}

.custom-dropdown-design .dropdown-item:hover {
    background-color: #f8f9ff;
    color: var(--blue);
}

/* Arrow adjustment */
.btn-primary-custom.dropdown-toggle::after {
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    vertical-align: middle;
    margin-left: 10px;
}

.btn__contact{
    background: var(--blue) !important;
}

.btn_drp
{
    border: none;
    color: #fff;
    padding: 6px 10px 6px;
    border-radius: 5px;
    background: var(--dark-blue) ;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* home section  */


/* Hero Typography */
.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 60px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--dark-blue);

}



.top-mar {
    margin-top: 60px !important;
}

.bot-mar {
    margin-bottom: 60px !important;
}

.top-pad {
    padding-top: 60px !important;
}

.bot-pad {
    padding-bottom: 60px !important;
}

.con-mar {
    margin: 60px 0;
}

.con-pad {
    padding: 60px 0;
}



/* Gallery setup */
.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.curved-container {
    position: relative;
    background: #f2f2f2;
    padding: 50px 0;
    overflow: hidden;
}

/* Marquee Track */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 100s linear infinite; 
}

.gallery-img {
    width: 400px; /* Desktop image size */
    height: 410px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 10px; /* Images ke beech gap */
}


.curved-container::before, .curved-container::after {
    content: "";
    position: absolute;
    left: -25%;
    right: -25%;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
    height: 220px;
}

.curved-container::before { top: -28%; }
.curved-container::after { bottom: -28%; }

/* Animation */
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .gallery-img {
        width: 260px; 
        height: 250px;
    }
    
    .curved-container::before, .curved-container::after {
        height: 155px;
    }
    .curved-container::before { top: -25%; }
    .curved-container::after { bottom: -25%; }
}

/* section two slider */

.card-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}
.card-img-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 250px;
}

/* Blue Floating Arrow */
.arrow-circle {
    position: absolute;
    bottom: 8px;
    right: 9px;
    background-color: var(--blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fas-art {
    transform: rotate(-45deg);
}

.card-body-custom

 {
    padding: 15px 15px 0px;
}

.meta-info {
    font-size: 18px;
    color: var(--green);
    font-weight: 300;
    line-height: 20px;
}

.number_price{
    display: flex;
    gap: 5px !important;
}


.curr-price {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue);

}

.discount-badge {
    background-color: var(--green);
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Slider Controls */
.swiper-button-next-custom,
.swiper-button-prev-custom {
    width: 45px;
    height: 45px;
    background: var(--gray-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}



.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.sub__pra {
    color: var(--gray-3);

    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;

}

.display-4 {
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
}


/* new css */

/* Testimonial Styles */
.testi-card {
    border-radius: 14px;
    height: 480px;
    overflow: hidden;
    position: relative;
    padding: 30px 18px;
}
.img-card {padding: 0px;}

.img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.bg-light-orange {
    background-color: var(--light-orange);
}

.bg-light-pink {
    background-color: var(--light-pink);
}

.text-orange {
    color: var(--orange);
}

.quote-icon-orange {
    font-size: 40px;
    float: right;
    opacity: 0.8;
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--orange) !important;
}

.quote-icon-pink {
    font-size: 40px;
    float: right;
    opacity: 0.8;
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--pink) !important;
}

.text-dark-blue {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 300;
}

/* Blog Styles */
.blog-card {
    background: #F4F4F4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-links li a,
.social-links li a,
.legal-links li a {

    font-weight: 300;
    font-size: 20px !important;
    line-height: 24px;


}

.legal-link,
.legal-links a {

    font-weight: 300 !important;
    font-size: 20px !important;
    line-height: 24px;


}

.footer-logo img {
    width: 152px;
    height: 85px;
}

.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
}

/* Slider arrows adjustment */
.testi-prev,
.blog-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testi-next,
.blog-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}





.custom-input {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
}

.custom-input:focus {
    box-shadow: none;
    border-color: var(--blue);
}


@media (max-width: 768px) {
    .custom-arrow {
        display: none;
    }

    /* Mobile pe arrows hata de swipe sahi chalta hai */
}





/* footer */

.footer-section {
    background-color: var(--dark-blue);
    /* Style guide color */
    color: white;
    padding: 40px 0;
}

.footer-links,
.social-links {
    list-style: none;
    padding: 0;
}

.footer-links li,
.social-links li {
    margin-bottom: 12px;
}

.footer-links a,
.social-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover,
.social-links a:hover {
    color: white;
}

.subscribe-box {
    background: white;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-input {
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    flex-grow: 1;
    outline: none;
}

.btn-subscribe {
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
}

.footer-hr {
    border-color: var(--white);
}



/* counter */

.text-pink {
    color: var(--pink);
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.border-start-custom {
    border-left: 1px solid #dee2e6;
}

@media (max-width: 767px) {
    .border-start-custom {
        border-left: none;
        border-top: 1px solid #dee2e6;
        padding-top: 20px;
        margin-top: 20px;
    }
}

.counter-item h2 {}


/* Naya Card Container */
.qul-card-new {
    min-height: 450px; /* Aap apne hisaab se adjust kar sakte hain */
    transition: transform 0.3s ease;
}

.light-bg {
    background-color: #F0F4FF; /* Light blue/gray background */
}

/* Dots Styling */
.qul-dot-group {
    display: flex;
    gap: 5px;
}

.qul-dot {
    width: 10px;
    height: 10px;
    background-color: #C4C4C4;
    border-radius: 50%;
    display: inline-block;
}

.qul-dot.active {
    background-color: #0056D2; /* Aapka primary blue color */
}

.qul-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Button style adjustment */
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

.btn-outline-light:hover {
    background: #fff !important;
    color: #0D1A2D !important;
}

/* Responsive */
@media (max-width: 768px) {
    .qul-card-new {
        min-height: auto;
        margin-bottom: 10px;
    }
}



/* circle */


/* Background Helper */
.bg-gray-1 {
    background-color: var(--gray-1);
}

/* Hall of Fame Layout */
.hof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.holf-1{
    margin-right: 25px;
}

/* Card Base Styling */
.hof-card {
    background: var(--white);
    border: 1px solid;
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: transform 0.3s ease;

}

.hof-card:hover {
    transform: translateY(-5px);
}

/* Circular Image Styling */
.hof-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Image offset like design */
    margin-left: -48px;
}

.border__half {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
}

.hof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-user {
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

/* Typography Inside Cards */
.hof-text h6 {
    margin-bottom: 2px;
    color: var(--dark-blue);
    font-weight: 600;
}

.hof-text p {
margin-bottom: 0;
    font-size: 14px;
    color: #0D1A2D;
    line-height: 1.2;
    font-weight: 300;
}

/* Border Colors from Style Guide */
.border-orange {
    border-color: var(--orange) !important;
}

.border-green {
    border-color: #28a745 !important;
}

/* Standard Green */
.border-pink {
    border-color: var(--pink) !important;
}

.border-red {
    border-color: #dc3545 !important;
}

.border-blue {
    border-color: var(--blue) !important;
}

/* Center Card Positioning */
.main-highlight {
    grid-column: span 2;
    width: 60%;
    margin: 0 auto;
    z-index: 2;
    padding: 15px 25px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hof-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .main-highlight {
        width: 100%;
    }

    .hof-img {
        margin-left: -15px;
    }
}




/* Helper Classes based on Style Guide */
.bg-gray-1 {
    background-color: var(--gray-1);
}

.text-blue {
    color: var(--blue);
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.text-pink {
    color: var(--pink);
}

.feature-card {
    position: relative;
    padding-top: 30px;
    /* Space for the floating icon */
}

.icon-shape {
    width: 60px;
    height: 60px;
    border-radius: 0px 12px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: absolute;
    top: 30px;
    left: -0px;
    z-index: 2;
    background-color: var(--gray-1);
    border-right: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);

}

.feature-content {
    border-radius: 0 40px 15px 15px;
    /* Rounded corners as per image */
    transition: transform 0.5s ease;
    border: 1px solid var(--gray-2);
    text-align: left;
}

.feature-card:hover .feature-content {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--dark-blue);
    border-color: var(--gray-2);
    color: var(--white);
}

/* Text alignment and color adjustment */
.feature-content h4 {
    /* color: var(--dark-blue); */
}

.feature-content:hover h4 {
    color: var(--white);
}

.feature-content .paragraph-2 {


    font-weight: 300;
    font-size: 18px;
    line-height: 120%;


}

.feature-content:hover .paragraph-2 {
    color: var(--white) !important;
}

.padd__top {
    padding-top: 80px !important;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
}


/* Card Specific Styles */
.audience-card {
    position: relative;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

/* The dark gradient at the bottom */
.card-overlay {
    background: linear-gradient(0deg, rgba(13, 26, 45, 0.95) 0%, rgba(13, 26, 45, 0.7) 40%, transparent 100%);
    width: 100%;
    padding: 30px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-content h6 {
    color: var(--white);
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.card-content h4 {
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-content p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;

}
.text-dec-none {text-decoration: none;
color: #000 !important;
}

.blog__padding{
    padding: 15px 0 0px !important;
}

.blog__padding p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--gray-3);
}
.blog__padding .text-dark-blue{
margin-top: 20px;
}

h5 .book-title{
font-weight: 500;
font-size: 20px;
line-height: 24px;
color: #0D1A2D !important;
text-decoration: none;



}

.book_heading{
margin-bottom: 15px !important;
}

.cart__icon{
    padding-right: 8px;
}

/* The curved white button slot at the bottom right */
.arrow-btn {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 40px 0 0 0;
    /* Creates that unique inward curve effect */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.arrow-btn i {
    color: var(--blue);
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
}



.audience-card:hover .arrow-btn i {
    color: var(--dark-blue);
}

/* Container Background from Style Guide */
.bg-gray-light {
    background-color: var(--gray-1);
}


@media (min-width: 992px) {
    .col-lg-2-custom {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    margin-bottom: 40px;
    transition: transform 0.3s ease;

}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Floating White Info Box */
.info-box {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: left;
}

.info-box h6 {
    color: var(--dark-blue);
    font-size: 18px;
}

.info-box span {

    font-size: 16px;
    line-height: 18px;



}

/* LinkedIn Icon Overlay */
.linkedin-icon {
    position: absolute;
    top: -20px;
    right: 10px;
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background 0.3s;
}

.linkedin-icon:hover {
    background-color: var(--light-blue);
    color: var(--blue);
}

/* Card Container */
.resource-card {
    background-color: var(--gray-1);
    border-radius: 20px;
    border: none;
    transition: 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.badge-info {
    background-color: var(--white);
    color: var(--gray-3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.badge-info i {
    color: var(--orange);
}

.play-btn {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-primary-custom.btn-sm {
    font-size: 14px;
    font-weight: 600;
}

.card-content h3 {
    color: var(--white);
}

.sub__pra16 {
    font-size: 16px;
    color: var(--gray-3);
}

@media (min-width: 992px) {
    .col-lg-4 {

        padding-right: 30px;
    }
}

.form-select:focus {
    border-color: #dee2e6 !important;
    outline: 0;
    box-shadow: none !important;
}

.form-control:focus {

    background-color: var(--bs-body-bg);
    border-color: #dee2e6;
    outline: 0;
    box-shadow: none;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-orange);
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.section-title-1 {
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.cat-item {
    padding: 10px 15px;
    color: var(--dark-blue);
    margin-bottom: 5px;
    cursor: pointer;
    border-bottom: 2px solid #dee2e6;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
}

.cat-item.active {
    background-color: var(--gray-1);
    color: var(--gray-3);
    border-bottom: 2px solid var(--blue);
    border-radius: 0 0 3px 3px;
}

.product-card {
    border: none;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
    height: 510px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-container {
    background: #f9f9f9;
    padding: 10px;
    position: relative;
    border-radius: 5px;
}

.badge-hot {
    background: var(--primary-orange);
    position: absolute;
    top: 10px;
    left: 10px;
}

.price-text {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-2);
    font-size: 24px;
    margin-left: 5px;
    font-weight: 500;
}

.btn-add-cart {
    background-color: var(--btn-bg);
    color: #5a5fa9;
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
}

.btn-add-cart:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-filter {
    background: #006684;
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
}

.stock-text {
    color: #87c332;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-desc {
    line-height: 1.6;
    font-size: 0.95rem;
}

.price-text {
    color: var(--primary-orange);
    font-weight: bold;
}

/* Thumbnails */
.thumb {
    width: 65px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--light-border);
    border-radius: 4px;
    cursor: pointer;
    padding: 5px;
}

.thumb.active {
    border-color: var(--primary-teal);
    border-width: 2px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 15px;
}

.qty-selector button {
    border: none;
    background: none;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Buttons */
.btn-cart {
    background-color: var(--primary-teal);
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.btn-cart:hover {
    background-color: #004d64;
    color: white;
}

.border-circle {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Boxes */
.specs-box {
    background-color: #fcfcfc;
    font-size: 0.85rem;
}

.bg-light-gray {
    background-color: #f8fafd;
}

.main-img-container img {
    max-height: 450px;
}



.offcanvas {
    transition: transform 0.4s ease-in-out;
    /* Smooth slide animation */
}

.img-container {
    cursor: pointer;
    /* Image par click karne layak cursor */
}

@media (max-width: 768px) {
    .icon-shape {
        width: 50px;
        height: 50px;
        border-radius: 0px 12px 12px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        position: absolute;
        top: 47px;
        left: 38%;

    }

    /* .offcanvas { width: 100% !important; } */
}

.text-teal {
    color: #006684;
}

.cart-item-row {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.cart-qty-btn {
    border: 1px solid #ddd;
    background: white;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}




.cart__titleNew {
    color: var(--dark-blue);
}

.cart-table thead {
    border-bottom: 2px solid #eee;
}

.cart-table th {
    padding: 20px 10px;
    font-size: 16px;
    color: var(--dark-blue);
}

.cart-table td {
    padding: 20px 10px;
    vertical-align: middle;
}

/* Bill Details Card (image_1f47ed.png Match) */
.bill-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.bill-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: fit-content;
    padding: 5px 10px;
}

.qty-btn {
    border: none;
    background: none;
    font-weight: bold;
    padding: 0 10px;
}

.proceed-btn {
    background-color: #00771D;
    /* Blue color from image_1f47ed */
    color: white;
    width: 100%;
    border-radius: 8px;
    padding: 15px;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    font-size: 1.1rem;
}

.price-teal {
    color: #ff6b00;
    font-weight: bold;
}

.subtotal-teal {
    color: #ff6b00;
    font-weight: bold;
}


.icon-wrapper img {
    width: 190px;
}

/* cart animation effect */

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.cart-animate {
    animation: cartBounce 0.5s ease-in-out;
    color: #ffc107 !important;
    /* Temporarily change color during animation */
}

.justify-content-end-1 {
    justify-content: flex-end;
}



/* .signup  {
    border: 1px solid #0D1A2D;
    background-color: #0D1A2D !important;
    color: #fff !important;
}
.signup:hover  {
    border: 1px solid var(--blue);
    background-color: var(--blue) !important;
    color: #fff !important;
} */

/* course  */


.hp-hero-section {
    padding: 60px 0 0px;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.hp-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid var(--blue);
    border-radius: 50px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hp-main-title {
    color: var(--black);
    /* typography styles h1 se inherit honge */
}

.hp-description {
    color: var(--gray-3);
    margin: 16px 0 15px 0;
    max-width: 90%;
}

.hp-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
}

.hp-icon {
    font-style: normal;
    font-size: 20px;
}

.hp-btn-outline {
    background-color: transparent;
    color: var(--blue);
    border: 1px solid var(--blue) !important;
}

.hp-btn-outline:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* --- Visual Elements --- */

.hp-main-graphic {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.hp-hero-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}



/* course card */



/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--dark-blue);
    box-shadow: none;
    font-size: 18px;
}

.accordion-button::after {
    background-size: 12px;
}

/* Radio/Checkboxes Customization */
.form-check-input:checked {
    background-color: var(--blue);
    border-color: var(--blue);
}

/* Course Card Design */


.card-img-top {
    height: 200px;
    object-fit: cover;
}

.badge-discount {
    background-color: var(--green);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.course-meta {
    font-size: 13px;
    color: var(--gray-2);
}

.course-meta span,
.course-meta span i {
    font-size: 15px;
    color: var(--green) ;
}

.course-meta .price-now {
    font-weight: 700;
    color: var(--blue) ;
    font-size: 20px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-2) !important;
    font-size: 18px;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Customization */
.btn-buy {
    background-color: var(--blue);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
}

.btn-view {
    border: 1px solid var(--blue);
    color: var(--blue);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: transparent;
}

/* Pagination */
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    border: 1px solid #ddd;
}

.dark-blue {
    color: var(--dark-blue);
}

.filter__pad {
    padding-right: 8px !important;
}


.text-muted-ld {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    color: var(--gray-2);

}


.form-check-input:checked+.form-check-label {
    color: var(--dark-blue) !important;
    font-weight: 600;
}

.form-check-input[type=radio] {
    border-radius: 50%;
    border: 2px solid #A4A4A4;
    box-shadow: 0px 2px 4px 0px #00000040;
}

.form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-2) !important;
    transition: color 0.3s ease;
}

.rounded-16 {
    border-radius: 12px;
}


.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    padding: 0;
}



/* banner */


/* Banner Section Custom Styles */
.banner-wrapper {
    background-color: var(--dark-blue);
    /* Using your global --dark-blue */
    /* min-height: 450px; */
    display: flex;
    align-items: center;
}

/* Typography Overrides for Banner */
.banner-wrapper .h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
}

/* Custom Button for Banner */
.btn-banner {
    background-color: rgba(255, 255, 255, 0.2);
    /* Glassy effect from screenshot */
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;

}

.btn-banner:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

/* Image Positioning */
.banner-img-container {
    /* position: relative; */
    height: 100%;
}

.banner-image {
    position: absolute;
    bottom: 0px;
    right: -34px;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Layering fix for text */
.z-2 {
    position: relative;
    z-index: 2;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
    .banner-wrapper {
        text-align: center;
        min-height: auto;
        padding-top: 40px;
    }

    .banner-wrapper .h1 {
        font-size: 32px;
    }

    .banner-image {
        position: relative;
        height: 350px;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .paragraph-1 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .banner-wrapper .h1 {
        font-size: 28px;
    }

    .banner-image {
        height: 250px;
    }
}


/* custom faq */


/* FAQ Accordion Custom Styling */
.custom-faq .accordion-item {
    border: 1px solid #E0E0E0 !important;
}

.custom-faq .accordion-button {
    background-color: transparent;
    color: var(--dark-blue);
    padding: 20px;
    font-size: 18px;
}

/* Jab accordion khula ho (Open State) */
.custom-faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--dark-blue);
    box-shadow: none;
}

/* 1. Default State (Down Arrow - Blue Color) */
.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231155E3'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3Cpath fill='white' d='M8 10l4 4 4-4z'/%3E%3C/svg%3E");
    background-size: 32px;
    width: 32px;
    height: 32px;
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}


.custom-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230D1A2D'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3Cpath fill='white' d='M8 14l4-4 4 4z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.gray-3 {
    color: var(--gray-3) !important;
}

.category-boxx {
    border: 0.5px solid #dee2e6;
    padding: 24px;
    border-radius: 12px;
}

.show-boox {
    border: 0.5px solid #dee2e6;
    padding: 18px;
    border-radius: 12px;

}

/* Accordion Item Border for scannability */
.custom-faq .accordion-item {
    background: #FFFFFF;

    border-radius: 12px !important;
    margin-bottom: 15px;
    border: 1px solid #A4A4A4 !important;
}

.custom-faq .accordion-body {
    padding-top: 0;
    padding-bottom: 25px;
}




.border-bot {
    text-align: left;
    border-bottom: 2px solid #dee2e6 !important;
}



/* Custom Accordion Styles with 'blg-' prefix */

.blg-course-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.blg-course-meta {
    font-size: 14px;
    color: var(--gray-3);
    margin-bottom: 0;
}

.blg-expand-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.blg-accordion-container {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.blg-accordion-item {
    border-bottom: 1px solid #E0E0E0;
}

.blg-accordion-item:last-child {
    border-bottom: none;
}

.blg-accordion-header {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--gray-1);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    transition: background 0.3s;
    cursor: pointer;
}

.blg-accordion-header:hover {
    background-color: #ededed;
}

/* Accordion Arrow Icon */
.blg-icon::before {
    content: '\276F';
    /* Standard Arrow */
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s;
    font-size: 12px;
}

.blg-accordion-header.active .blg-icon::before {
    transform: rotate(90deg);
}

.blg-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.blg-accordion-content.show {
    max-height: 500px;
    /* Adjust as needed */
}

/* List Items inside accordion */
.blg-content-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.blg-content-list li {
    padding: 12px 55px;
    font-size: 14px;
    color: var(--gray-2);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Show More Button Styling */
.blg-show-more-btn {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.blg-show-more-btn:hover {
    background: var(--light-blue);
}




/* ?new */


/* Instructor Styles */
.blg-section-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.blg-instructor-name {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
}

.blg-profile-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--blue);
    /* Placeholder bg */
}

.blg-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blg-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blg-stats-list li {
    font-size: 14px;
    color: var(--gray-3);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.blg-stat-icon {
    width: 25px;
    display: inline-block;
}

.blg-about-title {
    color: var(--gray-2);
    margin-bottom: 10px;
}

/* FAQ Accordion Styles */
.blg-faq-item {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.blg-faq-header {
    padding: 20px;
    cursor: pointer;
    background-color: var(--white);
    transition: 0.3s;
}

.blg-faq-header h6 {
    font-weight: 600;
    color: var(--dark-blue);
}

/* Orange/Dark Toggle Icon */
.blg-faq-toggle-icon {
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.blg-faq-toggle-icon::after {
    content: '\276F';
    /* Arrow icon */
    color: white;
    font-size: 14px;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

/* When FAQ is Open */
.blg-faq-header.active .blg-faq-toggle-icon {
    background-color: var(--dark-blue);
}

.blg-faq-header.active .blg-faq-toggle-icon::after {
    transform: rotate(-90deg);
}

.blg-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--white);
}

.blg-faq-content.show {
    max-height: 200px;
}





/* Responsive adjustment */
@media (max-width: 991px) {
    .faq-section {
        text-align: center;
    }

    .custom-faq .accordion-button {
        font-size: 16px;
    }
}


/* course details */

/* Header Section Match */
.main-header {
    background-color: var(--dark-blue);
    color: white;
    padding: 30px 0 30px 0;
}

.breadcrumb-nav {

    color: var(--gray-1);
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;

}

.breadcrumb-nav a {
    color: var(--gray-1);
    text-decoration: none;
}

.course-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    gap: 25px;
    font-size: 14px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
}

/* Sidebar Card Match */
.course-card {
    background: white;
    border-radius: 12px;
      border: 1px solid var(--gray-2) !important;
    border-radius: 12px;
    overflow: hidden;
    height: 340px ;
}

.video-preview {
    position: relative;
    background: #222;

    border-radius: 12px;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.play-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.play-overlay p {
    color: white;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 10px;
}

/* Pricing Section */
.price-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1155E3;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
}

.discount-tag {
    background: #00771D;
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
}

.buy-now-btn {
    background-color: #1155E3 !important;
    border: none;
    padding: 12px;
    font-weight: 600;
}

.preview-btn {
    border-color: #1155E3;
    color: #1155E3;
    font-weight: 500;
}

/* Content Area Match */
.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a2a40;
}

.frt-card
{
height: 250px !important;
}


.small-text {
    font-size: 14px;
    color: #777;
}

.learning-list,
.includes-list {
    list-style: none;
    padding: 0;
}

.learning-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.learning-list i {
    color: #1155E3;
}

.includes-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #888;
}


.meta-info span {
    display: flex !important;
    align-items: baseline;
}

.meta-info span p {
font-size: 15px;
    color: var(--green);
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.meta-info span i {
font-size: 15px;
 
}

.course-meta-main span {
    display: flex !important;
    align-items: baseline;
}

.course-meta-main span p {
    color: var(--dark-blue) !important;
    line-height: 1.5;
    font-weight: 500;

}

.course-meta span {
    display: flex !important;
    align-items: baseline;
}

.course-meta span p {
    font-size: 15px;
    color: var(--green) !important;
    font-weight: 400;
}

.course__details_p span p span {
    font-weight: 300;
    font-size: 18px !important;
    line-height: 22px;
    color: #1a2a40 !important;


}

/* Search Box - Outside Filter */
.search-container {
    max-width: 100%;
}

.search-box {
    position: relative;
}

.search-box input {
    background-color: var(--gray-1);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px 45px 12px 20px;
    font-size: 16px;
}

.search-box i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 18px;
}

/* Mobile Trigger Bar (Categories + Filter Icon) */
.mobile-filter-bar {
    display: none;
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

/* Sidebar & List Items */
.category-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
}

.list-group-item {
    border: none;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-3);
    border-bottom: 1px solid #eee;
    cursor: pointer;
    text-align: left;
}

.list-group-item.active {
    color: var(--black);
    background: var(--gray-1) !important;
    border-bottom: 2px solid var(--blue) !important;
    font-weight: 700;
    border-radius: 0 0 10px 10px;

}

/* Blog Card Style */
.blog-card {
    background: var(--gray-1);
    border-radius: 18px;
    border: none;
    padding: 20px;
}

.blog-img img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    border-radius: 12px;
}

.date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #eee;
}

.date-badge i {
    color: var(--orange);
}

/* Responsive Logic */
@media (max-width: 991px) {
    .mobile-filter-bar {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    .sidebar-column {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 10000;
        transition: 0.3s;
        overflow-y: auto;
    }

    .sidebar-column.active {
        left: 0;
    }

    .mobile-header {
        display: flex !important;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .category-card {
        border: none;
    }

    .search-container {
        position: relative;
        width: 100%;
    }

    .list-group-flush>.list-group-item {
        border-width: 0 0 var(--bs-list-group-border-width);
        text-align: left;
        background: var(--gray-1);
        border-radius: 0 0 10px 10px;
    }
}



/* Sidebar Search styling */
.blg-search-input {
    background-color: var(--gray-1) !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 16px;
}

.blg-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-3);
}

/* TOC Container */
.blg-toc-card {
    border: 1px solid #eee !important;
    background: var(--white);
    position: sticky;
    top: 90px;
    border-radius: 12px;
}

.blg-toc-header h4{
    padding-left: 15px;
}

.blg-toc-header {
    color: var(--dark-blue);
    cursor: pointer;
}

/* Arrow Icon animation */
.blg-arrow-icon {
    transition: transform 0.3s ease;
}

.blg-toc-header[aria-expanded="true"] .blg-arrow-icon {
    transform: rotate(180deg);
}

/* TOC Links Logic */
.blg-toc-list li{
    border-bottom: 2px solid #eeeeee;
       padding: 8px 0px;
           border-radius: 8px;
}

.blg-toc-link {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--gray-3);
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

.blg-toc-link:hover,
.blg-toc-link.blg-active {
    color: var(--black) !important;
    font-weight: 600;
        border-bottom: 5px solid var(--blue);
    background: var(--gray-1);
    border-radius: 8px;
}

.blg-toc-link.blg-active {
    border-bottom: 5px solid var(--blue);
    background: var(--gray-1);
    border-radius: 8px;
}

/* Share Icons */
.blg-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    background-color: var(--light-blue);
    color: var(--blue);
    transition: 0.3s;
}

.blg-share-btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {

    .blg-toc-card {
        position: relative;
        top: 0;
        margin-bottom: 0px;
    }

    #blgTocContent.collapse:not(.show) {
        display: none;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .course-card {
        margin-top: 20px;
    }

    .course-title {
        font-size: 30px;
    }
}


@media (max-width:768px) {
    .order-1 {
        order: 2 !important;
    }


    .footer-section {

        padding: 10px 0;
    }

    .bot-pad {
        padding-bottom: 30px !important;
    }

    .bot-pad {
        padding-bottom: 30px !important;
    }

    .top-mar {
        padding-bottom: 30px !important;
    }

    .bot-mar {
        padding-bottom: 30px !important;
    }

    .curr-price {
        font-size: 18px;

    }


    .testi-prev,
    .blog-prev {
        position: absolute;
        left: 84px;
        top: 111%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .testi-next,
    .blog-next {
        position: absolute;
        right: 91px;
        top: 111%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .mbb__top {
        margin-top: 60px;
    }

    .subheading {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
    }

    .footer-links li a,
    .social-links li a,
    .legal-links li a {
        font-weight: 300;
        font-size: 16px !important;
        line-height: 20px;
    }

    .legal-link,
    .legal-links a {
        font-weight: 300 !important;
        font-size: 16px !important;
        line-height: 24px;
        text-align: center !important;
    }

    .footer-bottom {
        justify-content: center !important;
    }

    .legal-links a {
        font-weight: 300 !important;
        font-size: 11px !important;
        line-height: 24px;
        text-align: center !important;
    }

    .arrow-btn {
        position: absolute;
        bottom: -1px;
        right: -1px;
        background-color: var(--white);
        width: 50px;
        height: 50px;
    }

    .counter-section {
        margin-top: 30px;
    }

    h5,
    .h5 {
        font-size: 16px;
        font-weight: 500;
        line-height: 18px;
    }

    .zn__right {
        text-align: center;
    }

    .justify-content-end-1 {
        justify-content: center;
    }

    .sub__pra-about {

        font-size: 16px;
        line-height: 19px;
        margin-bottom: 20px;
        text-align: center;
    }

    .meta-info {
        font-size: 14px;
        line-height: 17px;
    }

    .old-price {

        font-size: 18px;
        margin-left: 0px;

    }

    .course-card {

        padding: 12px;

    }

    .sub__pra {

        font-size: 16px;
        line-height: 19px;
        text-align: start;

    }

    .team-card img {
    width: 100%;
    height: 100%;

}

    .audience-card {
    position: relative;
    height: 307px;
    }

    .card-overlay {

    padding: 20px 20px 20px;
    }

    .display-4 {
        font-size: 32px;
        font-weight: 600;
        line-height: 40px;
    }

    .subscribe-input {
        padding: 0px 5px;

    }


    .btn-subscribe {

        padding: 5px 9px;
        font-weight: 600;
        font-size: 13px;
    }
    
.feature-content h4 {
    text-align: center;
}

.feature-content .paragraph-2 {
    text-align: center !important;
}
.feature-content:hover .paragraph-2 {
    color: var(--white) !important;
    text-align: center !important;
    margin-top: 10px
}

    .custom-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;

    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 19px;
        text-align: center;

    }
}




/* about */


/* Custom About CSS Styles */

/* Featured Logos Section */
.about-logos img {
    height: 30px;
    filter: grayscale(100%);
    opacity: 1;
    transition: 0.3s;
}

.about-logos img:hover {
    opacity: 1;
}

/* Hero Section Patterns */
.about-hero {
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid var(--gray-1);
    border-radius: 50%;
    z-index: -1;
}

.about-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid var(--gray-1);
    border-radius: 50%;
}

.about-sub-heading {
    letter-spacing: 1px;
}

/* Counter Styles */
.counter-value {
    display: inline-block;
    font-weight: 700;
}

/* Image Section Styles */
.about-image-wrapper {
position: relative;
    padding: 50px;
    border: 1px solid var(--gray-2);
    border-radius: 12px;
}

.about-floating-card {
    position: absolute;
    bottom: 0;
    left: -30px;
    background: var(--white);
    max-width: 280px;
    border-left: 5px solid var(--blue);
}

@media (max-width: 991px) {
    .about-floating-card {
        position: relative;
        left: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}

/* Knowledge Button Alignment */
.btn-primary-custom i {
    font-size: 14px;
}



/* Container height to accommodate absolute bubbles */
.bubbles-layout-container {
    height: 400px;
    /* Adjust based on your content */
    margin-top: 50px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 10;
}

/* Bubble Sizes as per Image */
.b-main {
    width: 240px;
    height: 240px;
}

/* Center Pink */
.b-7 {
    width: 260px;
    height: 260px;
}

/* Large Right Blue */
.b-1 {
    width: 140px;
    height: 140px;
}

/* Top Left Green */
.b-2 {
    width: 110px;
    height: 110px;
}

/* Blue Runner */
.b-4 {
    width: 130px;
    height: 130px;
}

/* Top Right Green Yoga */
.b-5 {
    width: 150px;
    height: 150px;
}

/* Yoga Meditating */
.b-6 {
    width: 100px;
    height: 100px;
}

/* Pink Running */
.b-3 {
    width: 60px;
    height: 60px;
}

/* Small Girl */

/* Colors with soft Tints */
.bubble-green {
    background-color: #D2F9DC;
}

.bubble-blue {
    background-color: #D1E0FF;
}

.bubble-pink {
    background-color: #FFE5F3;
}

.bubble-orange {
    background-color: #FFF3E5;
}

/* View More Button Circle */
.b-btn {
    width: 105px;
    height: 105px;
    border: 1px solid var(--gray-3);
    background: transparent;
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.b-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* Responsive: Stack them on mobile */
@media (max-width: 991px) {
    .bubbles-layout-container {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .bubble {
        position: static !important;
        width: 120px !important;
        height: 120px !important;
    }
}



.about-features-section {
    background-color: #F8F9FA;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    overflow: hidden;
    /* padding: 100px 0; */
    height: 100%;
}

.features-center-img img {
    max-width: 650px;
    z-index: 1;
}

.feature-card-1 {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 350px;
    z-index: 2;
}

/* Icon Box Styles */
.f-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
}

.bg-orange-tint {
    background-color: #FFF3E5;
}

.bg-green-tint {
    background-color: #E5FFEA;
}

.bg-pink-tint {
    background-color: #FFE5F3;
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.text-pink {
    color: var(--pink);
}

/* Exact Card Positions */
.f-top-left {
    top: 6%;
    left: 11%;
}

.graph li {
    text-decoration: none;
    list-style: none !important;

}

.f-top-right {
    top: 6%;
    right: 11%;
}

.f-bottom-left {
    bottom: 5%;
    left: 5%;
}

.f-bottom-right {
    bottom: 5%;
    right: 5%;
}

/* Responsive Logic */
@media (max-width: 1200px) {
    .feature-card {
        width: 280px;
        margin-bottom: 0 !important;
        /* padding: 20px; */
    }
}

@media (max-width: 991px) {
    .about-features-section {
        background-image: none;
        padding: 50px 0;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-card {
        position: static !important;
        width: 100%;
        max-width: 400px;
    }

    .features-center-img {
        order: -1;
        margin-bottom: 30px;
    }
}



/* Mission, Vision & Story Section */
.bg-light-blue {
    background-color: #E6F0FF;
    /* Soft tint of your blue */
}

.bg-blue {
    background-color: var(--blue);
}

.story-card {
    min-height: 450px;
}

.story-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.icon-box-small {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure equal height on desktop */
@media (min-width: 992px) {
    .story-card {
        min-height: 100%;
    }
}

/* Objects fit for the images */
.object-fit-cover {
    object-fit: cover;
}

/* Hover effects for cards */
.mission-card,
.vision-card,
.story-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}



/* Slider Wrapper Positioning */
.gallery-slider-wrapper {
    padding: 0 50px;
}

/* Navigation Buttons */
.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--gray-1);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--dark-blue);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

/* Container adjustment */
.gallerySwiper .swiper-slide {
    height: 280px; 
    display: flex;
    align-items: stretch;
    transition: all 0.5s ease;
}


.gallery-card {
    position: relative;
    overflow: hidden; 
    border-radius: 15px;
    display: block; 
}

/* Image Styling */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease; 
}


.gallery-content {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); 
    padding: 15px 20px; 
    text-align: left; 
    color: white; 
    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    opacity: 0;
    transform: translateY(100%);
    
    transition: opacity 0.4s ease, transform 0.4s ease;
    
    box-sizing: border-box;
    

    height: 40%; 
    overflow: hidden; 
    
    display: flex; 
    flex-direction: column;
    justify-content: flex-end; 
}

/* Text styling inside overlay */
.gallery-content .gallery-title {
    margin: 0;
    padding: 0;
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 2px;
}

.gallery-content .gallery-caption {
    margin: 0;
    padding: 0;
    font-size: 0.9rem; 
    opacity: 0.9; 
}

/* Hover Effect - Changes on Hover */
.gallery-card:hover .gallery-content {
    opacity: 1; 
    transform: translateY(0); 
}

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


/* Responsive Fix */
@media (max-width: 768px) {
        .about-logos img {
    height: 22px;

}

    .con-pad {
        padding: 20px 0;
    }

    .gallery-prev,
    .gallery-next {
        position: absolute;
        top: 116%;
    }

    .gal-pad {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .gallery-next {
        right: 0%;
    }

    .gallery-prev {
        left: 60% !important;
    }

    .features-center-img img {
        max-width: 100%;
        z-index: 1;
    }

    .feature-card-1 {
        position: static;
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        width: 100%;
        z-index: 2;
        margin-bottom: 15px;
    }

    .about-image-wrapper {
        position: relative;
        padding-bottom: 30px;
    }

    .top-pad {
        padding-top: 20px !important;
    }

    .gallery-slider-wrapper {
        padding: 0 10px;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

.cousrse-meta span span,
.cousrse-meta span p {
    color: var(--green) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}



/* join us */


/* Contact Section Styles */
.join-contact-section {
    background-color: var(--white);
}

.join-input {
    background-color: var(--gray-1) !important;
    border: none !important;
    padding: 12px 15px !important;
    border-radius: 4px !important;
    color: var(--dark-blue);
}

.join-input::placeholder {
    color: var(--gray-2);
    font-size: 14px;
}

.join-submit-btn {
    padding: 14px !important;
    font-size: 16px !important;
    letter-spacing: 1px;
}

/* Social Icons Styling */
.join-social-icon {
    font-size: 20px;
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s ease;
}

.join-social-icon:hover {
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* Career Banner Styling */
.join-career-card {
    background-color: var(--dark-blue);
    border-radius: 12px;
}

/* --- Subscribe Section Styles --- */
.contact-subscribe-section {
    background-color: #F8F9FB;
    /* Halka greyish-white background jaisa image mein hai */
    padding: 80px 0;
    border-radius: 20px;
    /* Optional: Agar aap ise rounded box banana chahte hain */
    margin: 40px 0;
}

.contact-subscribe-section h2 {
    color: var(--dark-blue);
    line-height: 1.2;
}

.contact-subscribe-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Newsletter Input Style */
.contact-input-newsletter {
    background-color: #FFFFFF !important;
    border: 1px solid #D1D1D1 !important;
    border-radius: 10px !important;
    padding: 15px 25px !important;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: none !important;
}

/* Subscribe Button specific style */
.subscribe-btn {
    border-radius: 10px !important;
    padding: 0 40px !important;
    height: 56px;
    /* Input ke barabar height */
    font-size: 16px !important;
    letter-spacing: 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .contact-subscribe-section {
        padding: 50px 20px;
    }

    .contact-input-newsletter {
        max-width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* Newsletter Styling */
.join-newsletter-area {
    background-color: #F8F9FA;
}

.join-news-input {
    max-width: 400px;
    height: 50px;
    border: 1px solid #ddd !important;
}

.join-subscribe-btn {
    height: 50px;
    padding: 0 40px !important;
    border-radius: 8px !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .join-career-card h4 {
        font-size: 18px;
    }

    .join-news-input {
        width: 100%;
        max-width: 100%;
    }
}


/* pdf */


/* Fix for Opacity/Overlay issue */
.modal-backdrop {
    z-index: 1040 !important;
}

#pdfDownloadModal {
    z-index: 1050 !important;
}

/* Modal Styling */
.pdf-modal-dialog {
    max-width: 850px;
}

.pdf-modal-container {
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pdf-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
    opacity: 0.7;
}

/* Layout Sides */
.pdf-image-container {
    background-color: #fff;
    height: 100%;
    display: flex;
    /* align-items: flex-end; */
}

.pdf-img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pdf-form-side {
    background-color: var(--gray-1);
    /* Light gray background from screenshot */
}

.pdf-wrapper {
    padding: 60px 45px;
}

/* Typography */
.pdf-top-text {
    font-size: 13px !important;
    letter-spacing: 1px;
    color: var(--gray-2);
}

.pdf-title {
    font-size: 32px !important;
    line-height: 1.2;
    font-weight: 700;
}

/* Input Styles */
.pdf-field {
    background-color: #E2E6EA !important;
    /* Specific input gray */
    border: none !important;
    height: 54px !important;
    border-radius: 8px !important;
    font-size: 16px;
}

.pdf-field::placeholder {
    color: var(--gray-2);
}

.pdf-phone-box {
    background-color: #E2E6EA;
    border-radius: 8px;
    padding-left: 10px;
}

.pdf-prefix {
    background: transparent !important;
    border: none !important;
    font-weight: 500;
    color: var(--dark-blue);
}

/* Button */
.pdf-action-btn {
    height: 54px !important;
    font-size: 22px !important;
    border-radius: 8px !important;
    text-transform: none !important;
    text-align: center;
    display: block !important;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .card-img-wrapper {
    height: 169px;
}
    .pdf-wrapper {
        padding: 40px 25px;
    }

    .pdf-title {
        font-size: 24px !important;
    }
}



/* Section Background */
.joinus-section {
    background-color: var(--dark-blue);
    /* Global Variable Use */
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.pragraph-11 {
    font-size: 15px !important;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Icons Container */
.joinus-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.join-info-box h6 {
    color: var(--gray-3);
}

.join-info-box h5 {
    color: var(--dark-blue);
}

/* Floating Icon Styling */
.joinus-floating-icon {
    position: absolute;
    width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.joinus-floating-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Specific Positions according to Screenshot */
.icon-fb {
    bottom: 20%;
    left: 10%;
}

.icon-x {
    top: 15%;
    left: 20%;
}

.icon-in {
    top: 15%;
    right: 20%;
}

.icon-ig {
    bottom: 20%;
    right: 10%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .joinus-floating-icon {
        width: 45px;
        height: 45px;
    }

    .icon-fb {
        left: 5%;
        bottom: 10%;
    }

    .icon-x {
        left: 5%;
        top: 5%;
    }

    .icon-in {
        right: 5%;
        top: 5%;
    }

    .icon-ig {
        right: 5%;
        bottom: 10%;
    }
}

@media (max-width: 1199px) {
    .product-card {

        height: 500px;
    }
}



/* faqs */


/* 2. FAQS Custom CSS (Desktop & Common) */


.faqs-sidebar-card {
    border: 1px solid var(--gray-2);
    border-radius: 12px;
    padding: 20px;
    background: var(--white);
    margin-bottom: 20px;
}

.faqs-search-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.faqs-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 12px;
    border: 1px solid var(--gray-3);
    background: #F8F8F8;
    outline: none;
}

.faqs-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-blue);
    font-size: 18px;
}

.faqs-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faqs-cat-item {
    padding: 12px 0;
    border-bottom: 1px solid #EEE;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    color: var(--gray-3);
    font-weight: 500;
    position: relative;
}

.faqs-cat-item:last-child {
    border-bottom: none;
}

.faqs-cat-item.active,
.faqs-cat-item:hover {
    color: var(--dark-blue);
    border-bottom: 2px solid var(--blue);
}

.faqs-form-card {
    background: #E5EDFF;
    border-radius: 12px;
    padding: 24px;
}

.faqs-form-control {
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.faqs-form-check {
    font-size: 12px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.faqs-submit-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.faqs-submit-btn:hover {
    background: var(--dark-blue);
}

/* Accordion */
.faqs-accordion-item {
    border: 1px solid var(--gray-2);
    border-radius: 12px;
    margin-bottom: 15px;
    background: var(--white);
    overflow: hidden;
}

.faqs-accordion-button {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
}

.faqs-accordion-icon {
    font-size: 24px;
    color: var(--blue);
    transition: 0.3s;
}

.faqs-accordion-item.open .faqs-accordion-icon {
    transform: rotate(180deg);
    color: var(--dark-blue);
}

.faqs-accordion-content {
    padding: 0 20px 20px 20px;
    display: none;
}

.faqs-accordion-item.open .faqs-accordion-content {
    display: block;
}

.faqs-list-title {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}


.faqs-mobile-controls {
    display: none;
}

.faqs-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

.faqs-mobile-menu-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 24px;
}

.add-faaa {
    display: none;
}

@media (max-width: 991px) {
    .faqs-accordion-button {
        font-size: 20px;
    }

    .faqs-mobile-controls {
        display: block;
        margin-bottom: 20px;
    }

    .desktop-sidebar {
        display: none;
    }

    .add-faaa {
        display: block;
    }

    .faqs-category-btn {
        width: 100%;
        padding: 7px;
        border: 1px solid var(--gray-2);
        border-radius: 12px;
        font-size: 14px;
    }

    .faqs-search-input {

        padding: 4px 45px 7px 15px;

    }

    .hp-hero-section {
        padding: 10px 0 10px;

    }

    .mobile-cat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }


    .faqs-mobile-menu .faqs-cat-item {
        padding: 15px 10px;
        background: #fff;
    }

    .faqs-mobile-menu .faqs-cat-item.active {
        background: #F4F4F4;
        border-bottom: 2px solid var(--blue);
        border-radius: 4px;
    }
}



/* join-contact us */

/* Contact Page Specific CSS */

.contact-tabs {
    border-bottom: 1px solid #dee2e6;
    justify-content: space-around;
}

.contact-tabs .nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px 8px 0 0;
    padding: 15px 40px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.contact-tabs .nav-link.active {
    background-color: #E9EFFF !important;
    color: var(--dark-blue) !important;
    border-bottom: 3px solid var(--blue);
}

.contact-main-img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}

.contact-form-container {
    padding: 20px;
}

.contact-input {
    background-color: var(--gray-1);
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 16px;
}

.contact-input:focus {
    background-color: #fcfcfc;
    box-shadow: 0 0 0 2px var(--light-blue);
    outline: none;
}

/* Careers Upload Box */
.contact-upload-box {
    border: 1.5px dashed var(--gray-2);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background-color: var(--gray-1);
    cursor: pointer;
}

.contact-upload-box i {
    font-size: 2rem;
    color: var(--gray-2);
}

.feature-content:hover h4 {
    color: #fff !important;
}

/* Image Overlay for Career Tab */
.contact-career-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.contact-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 20px;
}

/* Footer Section */
.contact-social-icons a {
    color: var(--blue);
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-social-icons a:hover {
    color: var(--dark-blue);
}

.contact-footer h6 {
    margin-bottom: 8px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .contact-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}



/* search list */



.search-container {
    position: relative;
}


.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff !important;
    /* border: 1px solid #ddd !important; */
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 99999 !important;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.paragraph-225{
    font-size: 14px !important;
    color: var(--gray-3);
}

.search-result-item:hover {
    background-color: #f0f7ff;
    color: var(--blue);
}

/* Active Link Design */
.active-link {
    color: var(--blue) !important;
    font-weight: 700;
}


/* whatsapp css */

.callback-button{
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 99;
    background-color: var(--blue);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 16px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
        border: 1px solid var(--blue);
            font-weight: 600;
    
}

.callback-button:hover{
     background-color: var(--dark-blue);
       border: 1px solid var(--dark-blue);
}







/*  ftp css */


/* FTP Layout */
.ftp-sidebar {
    background-color: var(--dark-blue);
    min-height: 100vh;
}

.ftp-testimonial-card {
    background: var(--white);
    border-radius: 12px;
}

.ftp-avatar {
    width: 32px;
    height: 32px;
    background: #ccc;
    border-radius: 50%;
}

/* Stepper */
.ftp-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.ftp-step.active {
    background: var(--blue);
    color: var(--white);
}

.ftp-line {
    height: 2px;
    background: var(--gray-1);
    flex-grow: 1;
    margin: 0 10px;
}

/* Form Styles */
.ftp-form-step {
    display: none;
}
.ftp-form-step.active {
    display: block;
}

.ftp-input {
    background-color: var(--gray-1);
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
}

.ftp-radio-btn {
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-check:checked + .ftp-radio-btn {
    background-color: var(--blue);
    color: white;
    border-color: var(--blue);
}

.btn-custom {
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
   
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary-custom {
    background-color: var(--blue);
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    h1 { font-size: 32px; }
    .ftp-form-container { padding: 20px !important; }
}


.about-image-wrapper video {
    object-fit: cover; 
    min-height: 400px; 
    background-color: #f8f9fa;
}



.ftp-unique-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftp-unique-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

/* The Unique Dot Design */
.bullet-dot {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Outer Ring */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
}

.bullet-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Text Styling */
.ftp-unique-list li strong {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.ftp-unique-list li p {
    line-height: 1.4;
}

.text-muted {
    color: var(--black) !important;
}




/* Card Container */
.qul-card {
    background: #ffffff;
    border: 1px solid var(--gray-2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Main Card Container */
.qul-card {
    background-color: #f8faff; /* Screenshot jaisa light bluish tint */
    border: 1px solid transparent;
    transition: all 0.3s ease;
}


.qul-row {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-bottom: 20px; 
}

/* Text Styling */
.qul-text {
    margin-bottom: 0 !important;
    font-size: 16px;
    color: #2c3e50; 
    font-weight: 500;
}

/* Dots Grouping */
.qul-dot-group {
    display: flex;
    gap: 6px; 
}


.qul-dot {
    width: 10px;
    height: 10px;
    background-color: #bdc3c7; 
    border-radius: 50%;
    display: inline-block;
}

/* Active Dot (Blue) */
.qul-dot.active {
    background-color: var(--blue); 
}

/* Hover Effect for Card */
.qul-card:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 251, 0.05) !important;
}

.grid-box-img{
   
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 251, 0.05) !important;
}

.read__more{
    font-size: 20px !important;
    font-weight: 600;
    margin-top: -13px;
    margin-bottom: 0;
}


@media(min-width:1600px){
 
.audience-card {
    position: relative;
    height: 601px;
}

}
@media(max-width:768px){
    .slider__slide {

    border-radius: 21px !important;
}
    .btn-custom {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 16px;
    }
    .about-image-wrapper video {
    object-fit: cover;
    min-height: 100%;
    background-color: #f8f9fa;
}

.flex-re-mobile{
    flex-direction: column;
}

    .ftp-form-container {
        padding: 0px !important;
    }

    .ftp-radio-btn {
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
}
}



/* privcy policy */


/* New Layout CSS - Conflict-free */
        .policy-page-wrapper {
            padding: 80px 0;
            word-wrap: break-word;
        }
        .policy-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .policy-header {
            margin-bottom: 50px;
        }
        .policy-content section {
            margin-bottom: 40px;
        }
        .policy-list {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 24px;
        }
        .policy-list li {
            font-size: 18px;
            font-weight: 200;
            line-height: 24px;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }
        .policy-contact-box {
            background-color: var(--gray-1);
            padding: 30px;
            border-radius: 12px;
            margin-top: 20px;
        }
        /* Link styles */
        .policy-content a {
            color: var(--blue);
            text-decoration: none;
            /*font-weight: 600;*/
        }


/* Sirf layout ke liye naye CSS classes */
        .policy-container-main {
            padding: 60px 0;
        }
        .policy-wrapper-inner {
            max-width: 960px;
            margin: 0 auto;
        }
        .policy-section-mb {
            margin-bottom: 35px;
        }
        .policy-list-style {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .policy-list-style li {
            font-size: 18px;
            font-weight: 200;
            line-height: 24px;
            margin-bottom: 8px;
        }
        .policy-contact-block {
            background-color: var(--gray-1);
        padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        
        

/* --- Hall of Fame Fix --- */

.hall-hero {
    position: relative; 
    width: 100%;
    min-height: 500px;
    height: auto; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hall-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hall-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hall-overlay {
    position: relative; 
    z-index: 2; 
    width: 100%;
    padding: 80px 20px; /* Space upar niche se */
    /*background: rgba(0, 0, 0, 0.4); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hall-container {
    max-width: 850px;
    margin: 0 auto;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hall-hero {
        min-height: 400px;
    }
}

.hall-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.hall-title {
    color: var(--white) !important;
    margin-bottom: 15px;
}

.hall-subtitle {
    color: var(--white) !important;
    margin-bottom: 35px !important;
    font-weight: 400;
}


@media (max-width: 768px) {
.hall-logo {
    max-width: 125px;
    margin-bottom: 0px;
}
    .hall-hero {
        height: 80vh; 
    }
     .hall-title {
        font-size: 29px !important;
        line-height: 28px !important;
    }
    .hall-subtitle {
        font-size: 16px !important;
    }
    .hall-subtitle {
    color: var(--white) !important;
    margin-bottom: 9px !important;
    font-weight: 400;
}
}
        

