



/* 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.5;
    font-family: var(--font-main);

}

/* 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 {

    font-size: 16px !important;
    font-weight: 700;
    line-height: 22px;
    padding: 6px 26px !important;

}

/* 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);
    border: 0.73px solid 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;
}


/* 5. Mobile Responsive View (Max-width: 768px) */
@media (max-width: 768px) {


    .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;
    }


    .login__btn {
        width: auto;
        padding: 8px 20px !important;
    }

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


}



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

.padd__right {
    padding-right: 10px !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: 18px;
    font-weight: 300;
    line-height: 22px;
}

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

.search-input {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    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;
}

/* Aapne jo border manga tha uske liye */
.navbar-nav .nav-item.active-border {
    border: 2px solid var(--blue);
    border-radius: 8px;
}



/* Modern Underline Design (Border ki jagah) */
.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;
    }
    
    /* Cursor pointer taaki link clickable lage */
    .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;
}

/* Aapne jo border manga tha uske liye */
.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: 50px 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);
}










/* 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);

}



/* common */
.gallery-wrapper {
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* curved desktop */
.curved-container {
    /* clip-path: polygon(100% 0%, 100% 100%, 50% 89%, 0 100%, 0 0, 50% 11%); */


}




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

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

.trust-logos img {
    height: 50px;
}


.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;
}

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




/* hide mobile by default */
.mobile-gallery {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .trust-logos img {
        height: 20px;
    }

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

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

    /* hide desktop layout */
    .desktop-gallery {
        display: none;

    }

    .mobile-gallery {}

    /* show marquee */
    .mobile-gallery {

        display: block;
        overflow: hidden;
    }

    .marquee-track {
        display: flex;
        width: max-content;
        animation: marqueeScroll 45s linear infinite;
        /* very slow */
    }

    .mobile-gallery .gallery-img {
        width: 260px;
        height: 250px;
        flex-shrink: 0;
    }

}

/* marquee animation */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}





/* section two slider */


/* Card Styling */
.course-card {
    background: var(--gray-1);
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    height: 100%;
    position: sticky;
    top: 10%;
}

.course-card:hover {
    background: var(--white);
    box-shadow: 0px 6px 13px 0px #0000001A;



}

.card-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    object-fit: cover;
}

/* 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: 25px 5px 10px;
}

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

.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: 400px;
    overflow: hidden;
    position: relative;
    padding: 30px 18px;
}

.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 {
    
}


/* star */

/* Common Box Styles */
.grid-box-dark {
    background-color: var(--dark-blue);
}

.grid-box-light {
    background-color: var(--gray-1);
}

.grid-box-img {
    height: 220px;
}

.overlay-text {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.grid-box-banner {
    min-height: 250px;
    z-index: 1;
}

.z-n1 {
    z-index: -1;
}

/* Dot Progress Bar Style */
.quality-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots-wrapper {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #C4C4C4;
    border-radius: 50%;
}

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

.btn-outline-light {
    background-color: #FFFFFF66 !important;
}

.btn-outline-light:hover {
    background-color: var(--white) !important;
    color: var(--blue);
    border: 3px solid #0145E4
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .grid-box-dark {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .grid-box-banner {
        padding: 30px !important;
        text-align: center;
    }

    .btn-outline-light {
        margin-top: 20px;
        width: 100%;
    }
}



/* 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;
}

/* 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;
    width: 80%;
}

.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: 12px;
    color: var(--gray-3);
    line-height: 1.3;
}

/* 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 {
    color: var(--gray-3) !important;

    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: 420px;
    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;
    padding-bottom: 50px;
    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);
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 14px;
    /* Image uses slightly smaller text */
}

/* 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 {}

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

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

/* Custom Column for 5 items in a row on Desktop */
@media (min-width: 992px) {
    .col-lg-2-custom {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* Important for the floating box overlap */
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

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

.team-card img {
    width: 100%;
    height: 300px;
    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 {
    color: var(--dark-blue);
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    line-height: 22px;



}

/* 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);
    /* Subtle gray from your guide */
    border-radius: 20px;
    border: none;
    /* height: 100%; */
    transition: 0.3s ease;
}

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

/* Badge for Date/Time */
.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);
    /* Highlight color */
}

/* Play Button */
.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);
}

/* Register Button adjustment */
.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);
}

/* Vertical Divider for Desktop */
@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;
}

/* Category Sidebar */
.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 */
.product-card {
    border: none;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
    height: 440px;
}

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

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

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

/* .badge-discount {
    background: #3f51b5;
    position: absolute;
    top: 40px;
    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 */
.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: 35px;
    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;
}





/* course  */


.hp-hero-section {
    padding: 60px 0 10px;
    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);
}

.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 */
.course-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.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: 13px;
    color: var(--green) !important;
}

.price-now {
    font-weight: 700;
    color: var(--blue) !important;
    font-size: 18px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-2) !important;
    font-size: 18px;
}

/* 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;
}

.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;
}


.book-title {

    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--dark-blue);
    text-decoration: none;
    text-align: left !important;
}

.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 #eee;
    /* margin-top: -160px;  */
    overflow: hidden;
}

.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: 10px;
}

.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;
}

p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.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;
}



/* 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: 15px;
    border: none;
    padding: 10px;
}

.blog-img img {
    width: 100%;
    height: 220px;
    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 #EEEEEE !important;
    background: var(--white);
    position: sticky;
    top: 20px;
}

.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 {
    border-left: 2px solid #F0F0F0;
}

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

.blg-toc-link:hover,
.blg-toc-link.blg-active {
    color: var(--blue) !important;
    font-weight: 600;
}

.blg-toc-link.blg-active {
    border-left: 3px solid var(--blue);
    background: rgba(17, 85, 227, 0.04);
    margin-left: -2px;
}

/* 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: 164px;
        top: 111%;
        transform: translateY(-50%);
        z-index: 10;
    }

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

    .mbb__top {
        margin-top: 60px;
    }

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

    .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: center;

    }

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

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

    }


    .btn-subscribe {

        padding: 5px 14px;
        font-weight: 600;
        font-size: 13px;
    }

    .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: 0.6;
    transition: 0.3s;
}

.about-logos img:hover {
    filter: grayscale(0%);
    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-bottom: 50px;
}

.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;
}

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

.feature-card-1 {
    position: absolute;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    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: 9%;
    left: 12%;
}

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

}

.f-top-right {
    top: 9%;
    right: 12%;
}

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

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

/* Responsive Logic */
@media (max-width: 1200px) {
    .feature-card {
        width: 280px;
        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;
}

/* Gallery Card Base - Normal State */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: 0.4s;
}

/* The Text Content Box - Hidden by Default */
.gallery-content {
    background-color: white;
    padding: 20px;
    text-align: left;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 0 0 15px 15px;
}

/* Hover Effect - Replicating your 2nd card example */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card:hover .gallery-content {
    bottom: 0;
    /* Slides up into view */
    opacity: 1;
    /* Becomes visible */
    position: relative;
    /* Takes up space at the bottom */
}

.gallery-card:hover img {
    border-radius: 15px 15px 0 0;
    /* Match the top of the card */
}

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

    .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: 320px;
        z-index: 2;
    }

    .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;
}

/* 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) {
    .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;
}

/* 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;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    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-2);
    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-2);
    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;
}

/* 3. Mobile View Styling (Screenshots match) */
.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;
    }

    /* Mobile Category List Style (Screenshot 2) */
    .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;
    }
}