        
            :root {
                --accent: #f4bd01;
                --dark-900: #0b0b0d;
                --dark-800: #131316;
                --muted: #6b6b6b;
            }

            /* Typography */
            html,
            body {
                height: 100%;
            }
            body {
                font-family:
                    "Poppins",
                    system-ui,
                    -apple-system,
                    "Segoe UI",
                    Roboto,
                    "Helvetica Neue",
                    Arial;
                background: #0f0f10;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                font-family: "Poppins", serif;
                margin-bottom: 0.4rem;
                font-weight: 600;
            }
            p {
                color: #fff;
            }

            /* NAVBAR */
            .site-header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1050;
                transition: all 0.28s ease;
                backdrop-filter: blur(0px);
                z-index: 9;
            }
            .site-header .navbar {
                padding: 0.8rem 1rem;
                transition:
                    padding 0.25s ease,
                    background-color 0.25s ease,
                    box-shadow 0.25s ease;
            }
            .site-header.shrink .navbar {
                padding: 0.45rem 1rem;
                background: rgba(10, 10, 12, 0.94);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
                border-bottom: 1px solid rgba(255, 255, 255, 0.03);
                backdrop-filter: blur(6px);
            }
            .navbar-brand img {
                height: 52px;
                width: auto;
            }

            /* Desktop nav styling */
            .nav-link {
                color: rgba(255, 255, 255, 0.9) !important;
                font-weight: 600;
            }
            .nav-link:hover {
                color: var(--accent) !important;
            }

            /* Mega menu */
            .mega-menu {
                min-width: 780px;
                padding: 1.25rem;
                background: linear-gradient(180deg, rgba(11, 11, 13, 0.98), rgba(17, 17, 19, 0.98));
                border-radius: 0.35rem;
                border: 1px solid rgba(255, 255, 255, 0.03);
            }
            .mega-menu .col-title {
                font-weight: 700;
                color: #fff;
                margin-bottom: 0.5rem;
            }
            .mega-menu a {
                display: block;
                color: rgba(255, 255, 255, 0.85);
                padding: 0.18rem 0;
                font-weight: 500;
            }
            .mega-menu a:hover {
                color: var(--accent);
                text-decoration: none;
            }

            /* mobile menu: stylish toggle */
            .mobile-toggle {
                width: 46px;
                height: 46px;
                border-radius: 6px;
                display: inline-grid;
                place-items: center;
                background: linear-gradient(180deg, #0f0f10, #0b0b0d);
                border: 1px solid rgba(255, 255, 255, 0.04);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
            }
            .hamburger {
                width: 22px;
                height: 14px;
                position: relative;
                display: inline-block;
            }
            .hamburger span {
                position: absolute;
                left: 0;
                right: 0;
                height: 2px;
                background: #fff;
                display: block;
                transition: all 0.28s ease;
                border-radius: 2px;
            }
            .hamburger span:nth-child(1) {
                top: 0;
                transform-origin: center;
            }
            .hamburger span:nth-child(2) {
                top: 6px;
                opacity: 0.95;
            }
            .hamburger span:nth-child(3) {
                bottom: 0;
                transform-origin: center;
            }
            .offcanvas.show .hamburger span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }
            .offcanvas.show .hamburger span:nth-child(2) {
                opacity: 0;
                transform: scale(0.2);
            }
            .offcanvas.show .hamburger span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }

            /* Offcanvas full width */
            .offcanvas-start {
                width: 100% !important;
                max-width: 100% !important;
                background: linear-gradient(180deg, #060607, #0e0e10);
            }
            .offcanvas-body {
                padding: 2rem;
                color: rgba(255, 255, 255, 0.95);
            }
            .offcanvas .nav-link {
                font-size: 1.05rem;
                padding: 0.6rem 0;
                display: flex;
                align-items: center;
                gap: 0.6rem;
                color: rgba(255, 255, 255, 0.95) !important;
            }

            /* Hero */
            .hero {
                min-height: 88vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                position: relative;
                padding: 120px 1rem 60px; /* allow for fixed header */
                background: url("/assets/img/hero-bg.jpg") center/cover no-repeat;
            }
            .hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(6, 6, 6, 0.7), rgba(6, 6, 6, 0.76));
                z-index: 0;
            }
            .hero-inner {
                position: relative;
                z-index: 2;
                max-width: 980px;
                margin: 0 auto;
                padding: 2rem;
            }
            .hero .eyebrow {
                color: var(--accent);
                font-weight: 700;
                letter-spacing: 0.6px;
                margin-bottom: 0.6rem;
                display: inline-block;
            }
            .hero h1 {
                font-size: clamp(28px, 5.2vw, 56px);
                line-height: 1.03;
                margin-bottom: 0.6rem;
                color: #fff;
            }
            .hero p.lead {
                font-size: clamp(15px, 1.6vw, 20px);
                color: rgba(255, 255, 255, 0.95);
                margin-bottom: 1rem;
            }
            .hero .sub {
                max-width: 780px;
                margin: 0 auto 1.6rem;
                color: #fff;
            }

            /* CTA sharp */
            .btn-cta {
                background: var(--accent);
                color: #111;
                font-weight: 700;
                border-radius: 0;
                border: none;
                padding: 0.8rem 1.2rem;
                box-shadow: 0 8px 30px rgba(244, 189, 1, 0.12);
                transition:
                    transform 0.16s ease,
                    box-shadow 0.16s ease;
            }
            .btn-cta:hover {
                transform: translateY(-3px);
                box-shadow: 0 18px 40px rgba(244, 189, 1, 0.14);
            }

            /* Utilities */
            .divider {
                height: 1px;
                background: rgba(255, 255, 255, 0.04);
                margin: 1.25rem 0;
            }

            /* Responsive tweaks */
            @media (max-width: 992px) {
                .mega-menu {
                    min-width: 95%;
                }
                .hero {
                    padding-top: 110px;
                }
                .navbar-brand img {
                    height: 42px;
                }
            }
            .dropdown-menu[data-bs-popper] {
                left: -300px;
            }
            a {
                text-decoration: none !important;
            }
            .muted a {
                color: #eee;
            }
        


        
            .text-dark {
                color: #444;
            }
            .hero h1 {
                font-weight: 600;
            }
        


        
            .ltd-features-section .display-6 {
                font-weight: 700;
            }
            .ltd-features-section .lead strong {
                color: #0b0b0d;
            }
            .feature-card {
                transition:
                    transform 0.18s ease,
                    box-shadow 0.18s ease;
            }
            .feature-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 18px 36px rgba(11, 11, 13, 0.06);
            }
            .feature-card .icon-wrap {
                flex: 0 0 48px;
            }
            @media (max-width: 576px) {
                .ltd-features-section .lead {
                    font-size: 1rem;
                }
                .feature-check {
                    display: none;
                } /* to keep mobile clean */
            }
        


        
            /* About Section Background */
            .about-section {
                background: #f3f3f3;
                font-family: "Poppins", sans-serif;
            }

            /* Image Styling */
            .about-img-wrapper {
                overflow: hidden;
                border-radius: 14px;
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
            }

            .about-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* Typography */
            .about-title {
                font-family: "Poppins", serif;
                color: #0b0b0d;
                font-weight: 700;
                margin-bottom: 1rem;
            }

            .about-text {
                color: #303030;
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 1rem;
            }

            .about-list strong {
                font-family: "Poppins", serif;
                color: #0b0b0d;
                font-size: 1.05rem;
            }

            .about-subtext {
                font-size: 0.92rem;
                color: #4d4d4d;
                margin-top: 2px;
            }

            /* Icons */
            .about-icon {
                width: 42px;
                height: 42px;
                display: grid;
                place-items: center;
                border-radius: 8px;
                font-size: 1.2rem;
            }

            .icon-yellow {
                background: #f4bd01;
                color: #0b0b0d;
            }

            .icon-dark {
                background: #0b0b0d;
                color: #ffffff;
            }

            /* View More Button */
            .about-btn {
                background: #0b0b0d;
                color: #fff;
                padding: 0.65rem 1.2rem;
                border-radius: 6px;
                font-weight: 600;
                font-family: "Poppins", sans-serif;
                border: none;
                transition: 0.2s ease-in-out;
            }

            .about-btn:hover {
                background: #000;
                color: #fff;
            }
        


        
            /* Section */
            #courses {
                background: #fff;
            }

            .eyebrow {
                color: #6b6b6b;
                font-weight: 600;
                font-family: "Poppins", sans-serif;
            }
            .section-title {
                font-family: "Poppins", serif;
                font-size: 1.25rem;
                color: #0b0b0d;
            }

            /* Swiper container adjustments */
            .swiper {
                overflow: hidden;
                padding-bottom: 6px;
            }
            .swiper-wrapper {
                align-items: stretch;
            }

            /* Course card */
            .course-card {
                background: #ffffff;
                border: 1px solid rgba(11, 11, 13, 0.04);
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(11, 11, 13, 0.05);
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            .card-img {
                width: 100%;
                height: 170px;
                overflow: hidden;
                border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            }
            .card-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
            .card-body {
                padding: 1rem;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                flex: 1;
            }

            .course-title {
                font-family: "Poppins", serif;
                font-size: 1.05rem;
                margin-bottom: 0.25rem;
                color: #0b0b0d;
            }
            .price {
                font-weight: 700;
                color: #0b0b0d;
            }
            .rating {
                color: #f4bd01;
                font-size: 0.95rem;
            }

            .course-one-liner {
                color: #444;
                font-size: 0.95rem;
                flex: 1;
            }

            .btn-cta {
                background: #f4bd01;
                color: #0b0b0d;
                border-radius: 0;
                border: none;
                /*padding: 0.45rem 0.75rem;*/
                font-weight: 700;
            }

            .view-course {
                border-radius: 0;
                padding: 11px;
                font-weight: 600;
            }

            /* Nav buttons (per carousel) — local to each position-relative wrapper */
            .swiper-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 30;
                width: 42px;
                height: 42px;
                display: grid;
                place-items: center;
                border-radius: 8px;
                background: #ffffff;
                color: #111;
                border: 1px solid rgba(11, 11, 13, 0.06);
                box-shadow: 0 6px 18px rgba(11, 11, 13, 0.08);
                cursor: pointer;
            }
            .digital-prev {
                left: 10px;
            }
            .digital-next {
                right: 10px;
            }
            .web-prev {
                left: 10px;
            }
            .web-next {
                right: 10px;
            }

            .swiper-nav-btn i {
                font-size: 16px;
            }

            /* Pagination styling placed below each carousel */
            .swiper-pagination {
                display: block;
                text-align: center;
                margin-top: 18px;
            }
            .swiper-pagination-bullet {
                background: rgba(11, 11, 13, 0.14);
                opacity: 1;
            }
            .swiper-pagination-bullet-active {
                background: #0b0b0d;
            }

            /* Responsive tweaks */
            @media (max-width: 991.98px) {
                .swiper-nav-btn {
                    width: 36px;
                    height: 36px;
                }
            }

            /* On very small screens hide arrows (use dots) */
            @media (max-width: 575.98px) {
                .swiper-nav-btn {
                    display: none;
                }
                .card-img {
                    height: 150px;
                }
                .swiper {
                    padding-bottom: 12px;
                }
            }

            /* Prevent any accidental overflow causing horizontal scroll */
            #courses,
            #courses .container,
            .position-relative {
                overflow-x: hidden;
            }
        


        
            .cta-section {
                background: linear-gradient(180deg, #0b0b0d 0%, #0f0f10 100%);
                color: #fff;
                font-family: "Poppins", sans-serif;
            }

            .cta-title {
                font-family: "Poppins", serif;
                font-size: 1.6rem;
                margin: 0 0 0.35rem 0;
                color: #fff;
                font-weight: 700;
                text-align: center;
            }

            .cta-sub {
                margin: 0 auto 1.1rem auto;
                color: rgba(255, 255, 255, 0.9);
                font-size: 1rem;
                line-height: 1.6;
                max-width: 820px;
            }

            /* Buttons row */
            .cta-buttons-row {
                margin-top: 0.6rem;
            }

            .cta-buttons-row .btn {
                min-width: 150px;
                padding: 0.62rem 0.9rem;
                border-radius: 8px;
                font-weight: 700;
                display: inline-flex;
                gap: 0.6rem;
                align-items: center;
                justify-content: center;
                border: none;
                transition:
                    transform 0.12s ease,
                    box-shadow 0.12s ease;
                box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
            }
            .cta-buttons-row .btn:hover {
                transform: translateY(-3px);
            }
            .hero .btn:hover {
                background: #fff;
            }
            /* Call button - make it distinct (light) so it doesn't visually merge with dark bg */
            .cta-btn-call {
                background: #ffffff;
                color: #0b0b0d;
                border: 1px solid rgba(11, 11, 13, 0.06);
                box-shadow: 0 10px 30px rgba(11, 11, 13, 0.12);
                border-radius: 8px;
            }
            .cta-btn-call i {
                font-size: 1.05rem;
            }

            /* WhatsApp button - recognisable green */
            .cta-btn-whatsapp {
                background: #25d366;
                color: #0b0b0d;
                border-radius: 8px;
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.12);
            }

            /* Book Demo - sharp edges, yellow theme */
            .btn-cta,
            .cta-btn-demo {
                background: #f4bd01;
                color: #0b0b0d;
                border-radius: 0; /* sharp edges as requested */
                padding-left: 1rem;
                padding-right: 1rem;
                box-shadow: 0 10px 30px rgba(244, 189, 1, 0.12);
            }

            .cta-note {
                color: rgba(255, 255, 255, 0.78);
                font-size: 0.92rem;
            }
            .cta-note .cta-email {
                color: rgba(255, 255, 255, 0.95);
                text-decoration: underline;
            }

            /* Responsive */
            @media (max-width: 575.98px) {
                .cta-buttons-row .btn {
                    width: 100%;
                    min-width: auto;
                    justify-content: center;
                }
                .cta-title {
                    font-size: 1.25rem;
                }
                .cta-sub {
                    font-size: 0.95rem;
                    padding: 0 1rem;
                }
            }
        


        
            .stats-section {
                background: #f3f3f3;
                font-family: "Poppins", sans-serif;
            }

            .stat-box {
                padding: 1.2rem 0.5rem;
            }

            .stat-icon {
                font-size: 2rem;
                color: #f4bd01;
                margin-bottom: 0.4rem;
            }

            .stat-number {
                font-size: 2rem;
                font-weight: 700;
                margin: 0;
                color: #0b0b0d;
                font-family: "Poppins", serif;
            }

            .stat-label {
                margin: 0;
                font-size: 0.95rem;
                color: #444;
                font-weight: 600;
            }

            @media (max-width: 575.98px) {
                .stat-number {
                    font-size: 1.6rem;
                }
                .stat-icon {
                    font-size: 1.7rem;
                }
            }
        


        
            #video-testimonials {
                background: #fff;
                font-family: "Poppins", sans-serif;
            }

            .section-title {
                font-family: "Poppins", serif;
                font-size: 1.35rem;
                color: #0b0b0d;
            }

            .swiper {
                overflow: hidden;
            }
            .swiper-wrapper {
                align-items: stretch;
            }

            .swiper-slide {
                display: flex;
                align-items: flex-start;
                height: 100%;
            }

            .video-card {
                width: 100%;
                background: #ffffff;
                border: 1px solid rgba(11, 11, 13, 0.04);
                border-radius: 10px;
                padding: 0.75rem;
                box-shadow: 0 12px 30px rgba(11, 11, 13, 0.05);
                display: flex;
                flex-direction: column;
                gap: 0.6rem;
                height: 100%;
            }

            /* Responsive iframe wrapper: 16:9 */
            .video-wrap {
                width: 100%;
                aspect-ratio: 16 / 9;
                background: #000;
                overflow: hidden;
                border-radius: 8px;
            }
            .video-iframe {
                width: 100%;
                height: 100%;
                border: 0;
                display: block;
            }

            .video-title {
                font-family: "Poppins", serif;
                margin: 0;
                color: #0b0b0d;
                font-size: 1rem;
            }
            .video-desc {
                margin: 0;
                color: #444;
                font-size: 0.95rem;
            }

            /* Nav buttons */
            .swiper-nav-btn {
                position: absolute;
                top: 30% !important;
                transform: translateY(-50%);
                z-index: 20;
                width: 44px;
                height: 44px;
                display: grid;
                place-items: center;
                border-radius: 8px;
                background: #ffffff;
                color: #111;
                border: 1px solid rgba(11, 11, 13, 0.06);
                box-shadow: 0 10px 30px rgba(11, 11, 13, 0.08);
            }
            .videos-prev {
                left: -10px;
            }
            .videos-next {
                right: -10px;
            }

            .swiper-nav-btn i {
                font-size: 18px;
            }

            @media (max-width: 767.98px) {
                .videos-prev,
                .videos-next {
                    display: none;
                }
            }
        

        
            .reviews-section-bg {
                background: #f3f3f3;
                font-family: "Poppins", sans-serif;
                overflow-x: hidden;
            }

            .reviews-title {
                font-family: "Poppins", serif;
                font-size: 1.6rem;
                color: #0b0b0d;
            }
            .reviews-sub {
                color: #666;
                font-weight: 600;
            }
            .reviews-desc {
                color: #444;
                margin-bottom: 1.4rem;
                max-width: 760px;
            }

            .reviews-wrapper {
                position: relative;
                overflow: hidden;
            }

            .review-card {
                background: #fff;
                border-radius: 10px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                padding: 1.2rem;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
                box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
            }

            .review-text {
                font-size: 0.98rem;
                color: #333;
                line-height: 1.6;
                min-height: 80px;
                margin-bottom: 1rem;
            }

            .review-meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .review-name {
                font-family: "Poppins", serif;
                font-weight: 700;
                color: #0b0b0d;
            }
            .review-role {
                color: #666;
                font-size: 0.85rem;
            }
            .review-rating {
                color: #f4bd01;
            }

            /* Nav buttons (inside container to prevent horizontal scroll) */
            .swiper-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 42px;
                height: 42px;
                border-radius: 8px;
                background: #fff;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                display: grid;
                place-items: center;
                z-index: 10;
            }
            .reviews-prev {
                left: 10px;
            }
            .reviews-next {
                right: 10px;
            }

            /* Pagination BELOW the swiper */
            .swiper-pagination {
                position: relative !important;
                margin-top: 20px;
            }
            .swiper-pagination-bullet {
                background: rgba(0, 0, 0, 0.3);
                opacity: 1;
            }
            .swiper-pagination-bullet-active {
                background: #0b0b0d;
            }

            /* Responsive */
            @media (max-width: 767px) {
                .reviews-prev,
                .reviews-next {
                    display: none;
                }
                .review-text {
                    min-height: 70px;
                }
            }
        


        
            .faq-section {
                background: #ffffff;
                font-family: "Poppins", sans-serif;
            }
            .faq-title {
                font-family: "Poppins", serif;
                font-size: 2.25rem;
                color: #0b0b0d;
                margin-bottom: 0.5rem;
                font-weight: 700;
            }
            .faq-sub {
                color: #666;
                margin-bottom: 1.25rem;
                font-weight: 600;
            }

            .accordion .accordion-item {
                border: 0;
                margin-bottom: 0.6rem;
                background: transparent;
            }

            .accordion-button {
                background: #0f0f10;
                color: #fff;
                padding: 1rem 1rem;
                border-radius: 10px;
                font-weight: 700;
                font-family: "Poppins", serif;
                box-shadow: 0 10px 30px rgba(11, 11, 13, 0.08);
            }

            .accordion-button:not(.collapsed) {
                background: #0b0b0d;
                color: #fff;
            }

            .accordion-button::after {
                filter: invert(1);
            } /* keep caret visible on dark button */

            .accordion-body {
                background: #fff;
                color: #222;
                border-radius: 8px;
                margin-top: 0.6rem;
                padding: 1rem;
                box-shadow: 0 6px 18px rgba(11, 11, 13, 0.04);
                font-size: 0.98rem;
                line-height: 1.6;
            }

            /* Icon color inside button */
            .accordion-button .bi {
                color: #f4bd01;
                font-size: 1.15rem;
            }

            @media (max-width: 767.98px) {
                .faq-title {
                    font-size: 1.6rem;
                }
                .accordion-button {
                    padding: 0.85rem;
                    font-size: 0.95rem;
                }
            }
        


        
            .query-section {
                background: #ffffff;
                font-family: "Poppins", sans-serif;
            }

            .query-title {
                font-family: "Poppins", serif;
                font-size: 2rem;
                color: #0b0b0d;
                font-weight: 700;
            }

            .query-sub {
                color: #666;
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .query-form-box {
                background: #fff;
                border-radius: 10px;
                border: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
            }

            .form-label {
                font-weight: 600;
                color: #0b0b0d;
            }

            .input-group-text {
                background: #f3f3f3;
                border-radius: 0;
                border-color: #ddd;
            }

            .form-control,
            .form-select {
                border-radius: 0;
                border-color: #ddd;
                padding: 0.55rem 0.75rem;
            }

            .query-btn {
                background: #f4bd01;
                border: none;
                border-radius: 0;
                font-weight: 700;
                font-size: 1rem;
                padding: 0.65rem;
                color: #0b0b0d;
                transition: 0.2s ease;
            }

            .query-btn:hover {
                background: #e2ac00;
                color: #0b0b0d;
            }

            @media (max-width: 575.98px) {
                .query-title {
                    font-size: 1.6rem;
                }
            }
        


        
            .ltd-footer {
                background: linear-gradient(180deg, #050506 0%, #0b0b0d 100%);
                color: rgba(255, 255, 255, 0.93);
                padding: 3.25rem 1rem;
                padding-bottom:10px!important;
                font-family: "Poppins", sans-serif;
            }

            .footer-brand {
                display: flex;
                gap: 1rem;
                align-items: center;
            }
            .footer-logo {
                height: 48px;
                width: auto;
                display: block;
            }
            .brand-title {
                margin: 0;
                font-family: "Poppins", serif;
                font-size: 1.25rem;
                color: #fff;
            }
            .brand-tag {
                margin: 0;
                color: rgba(255, 255, 255, 0.7);
                font-size: 0.95rem;
            }

            .footer-contact .contact-line {
                display: block;
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                margin-top: 0.35rem;
                font-weight: 600;
            }
            .footer-contact .contact-line .bi {
                margin-right: 0.5rem;
                color: #f4bd01;
            }
            .contact-address {
                color: rgba(255, 255, 255, 0.65);
                margin-top: 0.6rem;
                font-size: 0.92rem;
            }

            .footer-cta .btn {
                margin-right: 0.5rem;
                margin-top: 0.6rem;
            }
            .btn-footer-call {
                background: #fff;
                color: #0b0b0d;
                border-radius: 8px;
                font-weight: 700;
                padding: 0.5rem 0.8rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            }
            .btn-footer-wts {
                background: #25d366;
                color: #0b0b0d;
                border-radius: 8px;
                font-weight: 700;
                padding: 0.5rem 0.8rem;
                box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12);
            }

            .footer-heading {
                color: rgba(255, 255, 255, 0.95);
                font-weight: 700;
                margin-bottom: 0.75rem;
                font-family: "Poppins", serif;
            }
            .footer-links li {
                margin-bottom: 0.45rem;
            }
            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                font-weight: 600;
            }
            .footer-links a:hover {
                color: var(--bs-yellow, #f4bd01);
                text-decoration: underline;
            }

            /* Branches list */
            .branches-list {
                max-height: 220px;
                overflow-y: auto;
                padding-right: 0.5rem;
                background: #1f1f1f;
                padding: 10px;
                border-radius: 10px;
            }
            .branches-list ul li {
                color: rgba(255, 255, 255, 0.88);
                margin-bottom: 0.65rem;
                font-size: 0.92rem;
                display: flex;
                gap: 0.5rem;
                align-items: flex-start;
            }
            .branches-list .bi {
                color: #f4bd01;
                margin-top: 0.2rem;
                flex-shrink: 0;
            }

            /* Hide toggle on large screens */
            .btn-toggle-branches {
                background: transparent;
                color: rgba(255, 255, 255, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.04);
            }

            .footer-sep {
                border-color: rgba(255, 255, 255, 0.04);
                margin: 2rem 0;
            }

            .socials .social {
                color: rgba(255, 255, 255, 0.95);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.03);
                margin-right: 0.5rem;
                text-decoration: none;
            }
            .socials .social .bi {
                font-size: 1.05rem;
                color: inherit;
            }
            .btn-subscribe {
                background: #f4bd01;
                color: #0b0b0d;
                border: none;
                border-radius: 6px;
                padding: 0.35rem 0.6rem;
                font-weight: 700;
            }

            .muted {
                color: rgba(255, 255, 255, 0.7);
            }
            .link-muted {
                color: #fff;
                text-decoration: underline;
            }

            /* Scrollbar styling (modern subtle) */
            .branches-list::-webkit-scrollbar {
                width: 8px;
            }
            .branches-list::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.06);
                border-radius: 8px;
            }
            .branches-list::-webkit-scrollbar-track {
                background: transparent;
            }

            @media (max-width: 991.98px) {
                .branches-list {
                    max-height: none;
                }
            }
        

  :root {
    --ltd-float-size: 54px;
    --ltd-float-gap: 12px;
    --ltd-primary: #F4BD01;
    --ltd-dark: #0b0b0d;
  }

  .ltd-floating-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: var(--ltd-float-gap);
    z-index: 1400;
    align-items: center;
    pointer-events: none; /* container lets buttons handle pointer */
  }

  .ltd-floating-actions .fa-btn {
    pointer-events: auto;
    width: var(--ltd-float-size);
    height: var(--ltd-float-size);
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: #ffffff;
    color: var(--ltd-dark);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(11,11,13,0.12);
    transition: transform .12s ease, box-shadow .12s ease;
    border: 0;
    outline: none;
    font-size: 1.15rem;
    position: relative;
  }

  /* Slightly larger WhatsApp button (green) */
  .ltd-floating-actions .fa-wats {
    background: #25D366;
    color: var(--ltd-dark);
    border-radius: 12px;
  }

  .ltd-floating-actions .fa-call {
    background: #ffffff;
    color: var(--ltd-dark);
  }

  /* Back to top uses primary yellow */
  .ltd-floating-actions .fa-top {
    background: var(--ltd-primary);
    color: var(--ltd-dark);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 10px 30px rgba(244,189,1,0.14);
  }

  /* Hover / focus states */
  .ltd-floating-actions .fa-btn:hover,
  .ltd-floating-actions .fa-btn:focus {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11,11,13,0.14);
  }

  .ltd-floating-actions .fa-btn:active {
    transform: translateY(-1px);
  }

  /* Small label that appears on hover (desktop) */
  .ltd-floating-actions .fa-label {
    position: absolute;
    right: calc(100% + 10px);
    background: rgba(11,11,13,0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity .12s ease, transform .12s ease;
    pointer-events: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
  }
  .ltd-floating-actions .fa-wats .fa-label { background: rgba(0,0,0,0.9); } /* slightly darker for contrast */

  .ltd-floating-actions .fa-btn:hover .fa-label,
  .ltd-floating-actions .fa-btn:focus .fa-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* Hide labels on small screens to save space */
  @media (max-width: 480px) {
    .ltd-floating-actions .fa-label { display: none; }
    .ltd-floating-actions { right: 12px; bottom: 14px; gap: 10px; }
    .ltd-floating-actions .fa-btn { width:48px; height:48px; border-radius:10px; font-size:1.05rem; }
    .ltd-floating-actions .fa-top { width:44px; height:44px; border-radius:50%; }
  }

  /* When hidden (JS toggles .hidden), fade out */
  .ltd-floating-actions.hidden { opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
a.view-course  {
    font-size:13px;
}


    .ltd-breadcrumb-section {
        position: relative;
        background: url('/assets/img/hero-bg.jpg') center/cover no-repeat;
        padding: 90px 0;
        margin-top: 0;
    }

    /* Black overlay */
    .ltd-breadcrumb-section .breadcrumb-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
    }

    .ltd-breadcrumb-section .container {
        position: relative;
        z-index: 3;
        padding-top:5%;
    }

    .breadcrumb-title {
        font-family: "Poppins", serif;
        color: #fff;
        font-size: 2.4rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .breadcrumb {
        background: transparent;
    }

    .breadcrumb-item a {
        color: #F4BD01 !important;
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb-item.active {
        color: #ffffff !important;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: #ffffff;
        content: "/";
        font-weight: 500;
        padding-right: 8px;
    }

    @media (max-width: 767.98px) {
        .breadcrumb-title {
            font-size: 1.9rem;
        }
        .ltd-breadcrumb-section {
            padding: 70px 0;
        }
    }


    .about-subheading {
        font-family: "Poppins", serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: #0b0b0d;
        margin-bottom: 0.8rem;
    }

    p {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        line-height: 1.65;
        color: #333;
    }

    .ltd-list {
        list-style: none;
        padding-left: 0;
    }

    .ltd-list li {
        padding-left: 28px;
        position: relative;
        margin-bottom: 0.6rem;
        font-family: "Poppins", sans-serif;
    }

    .ltd-list li::before {
        content: "✔";
        color: #F4BD01;
        position: absolute;
        left: 0;
        top: 2px;
        font-weight: 700;
    }

    .two-col {
        columns: 2;
        column-gap: 40px;
    }

    @media (max-width: 767.98px) {
        .two-col {
            columns: 1;
        }
    }
    
    
    .socials .social.facebookbtn{
        background: #1877F2;
    }
    
    .socials .social.instgrambtn{
        background: #833AB4;
    }
    
    .socials .social.youtubebtn{
        background: #FF0000;
    }
    
    .socials .social.linkedinbtn{
        background: #0A66C2;
    }
    
    
    
    
    
    
    