
/* nunito sans for h1 and section heading  */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');




/* --- Base Header Styles --- */
   :root {
    --primaryy-color: #089CFF;
    --primary-light: #EEF4FF;
    --text-dark: #101828;
    --text-muted: #667085;
    --bg-light-gray: #F9FAFB;
    --border-color: #EAECF0;
    --navbar-height: 70px;
    --primary-font: "Nunito Sans", system-ui !important;
}
a {
    text-decoration: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
  }

  img, video {
    max-width: 100%;
    height: auto;
    display: block;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
    padding: 110px 0;
}
@media (max-width: 786px) {
    section {
        padding: 50px 0;
    }
    .sm-d-none {
        display: none;
    }
    .sm-content-start {
        justify-content: start;
    }
    .cpf-banner-content {
        padding: 20px  !important;
        text-align: start !important;
    }
}
.page-wrapper {
    overflow-x: hidden;
    width: 100%;
}

.fs-48 {
    font-size: 48px;
}
body {
    padding-top: var(--navbar-height);
    overflow-x: hidden !important;
    font-family: var(--primary-font) !important;
    color: #000;
    background-color: #fff;
}

.navbar {
    height: var(--navbar-height);
    background-color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primaryy-color) !important;
}

/* --- Desktop Navigation Styles --- */
.desktop-nav-links .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    margin: 0 0.5rem;
}
.desktop-nav-links .nav-link:hover, 
.desktop-nav-links .nav-link.active {
    color: var(--primaryy-color) !important;
}

/* --- Hamburger Toggler Styles --- */
.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}
.hamburger-icon {
    position: relative; width: 24px; height: 18px;
}
.hamburger-icon span {
    display: block; position: absolute; height: 3px; width: 100%;
    background: #333; border-radius: 3px; left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 7px; }
.hamburger-icon span:nth-child(3) { top: 14px; }

/* --- Left Off-Canvas Menu Styles --- */
.offcanvas-start {
    width: 280px;
}
.offcanvas {
    background-color: #212529;
    color: #f8f9fa;
}
.offcanvas-header {
    border-bottom: 1px solid #495057;
}
.offcanvas-title {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--primaryy-color) !important;
}
.btn-close-white {
    opacity: 1;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-links .nav-item {
    padding: 0.5rem 0;
}
.mobile-nav-links .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #adb5bd;
    transition: color 0.2s;
}
.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    color: #ffffff;
}

/* CTA Button at the bottom of the offcanvas */
.offcanvas-footer {
    margin-top: auto;
    padding-top: 1rem;
}
.btn-get-started {
    background: #ff8c00;
    border-color: #ff8c00;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    padding: 0.75rem;
}
.btn-get-started:hover {
    background: #e07b00;
    border-color: #e07b00;
    color: #ffffff;
}

.btn-outline-primary {
    border: 1px solid var(--primaryy-color);
    background-color: transparent;
    color: var(--primaryy-color);
}

.btn-outline-primary:hover {
    border: none;
    background-color: var(--primaryy-color);
    color: #fff;
}
.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}
.badge-custom{
    background: #EBFFE8 !important;
    padding: 8px 16px;
    border-radius: 5px;
    color: #138901 !important;
}
.py-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}










.hero-section {
    background-color: #F1F9FF; /* Light background like in the image */
    box-shadow: 0px 4px 4px 0px #00000040;
    }
    
    .text-primary {
    color: #089CFF !important; /* Your primary color */
    }
    
    .btn-primary {
    background-color: #089CFF;
    border-color: #089CFF;
    }
    
    .btn-primary:hover {
    background-color: #007acc;
    border-color: #007acc;
    }
    

    .hero-section .position-absolute {
    z-index: 10; 
    }
    
    .hero-section img {
    object-fit: cover; 
    width: 100%; 
    height: auto; 
    }











    /* ======== CATEGORIES SECTION STYLES ======== */

.categories-section {
    background-color: #fff; /* Light gray background for the section */
}

.category-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem; /* 16px */
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card .icon-wrapper i {
    font-size: 1.75rem; /* 28px */
}

.category-card .card-title {
    font-size: 20px; /* 20px */
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.category-card .card-text {
    color: #6c757d;
    font-size: 14px; /* 14.4px */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes the "Learn More" link to the bottom */
}

.category-card .learn-more-link {
    color: #6C6C6C;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card .learn-more-link:hover {
    color: #089CFF; /* Your primary color */
}

/* --- Icon Color Variations --- */
.category-card.color-blue .icon-wrapper { background-color: rgba(8, 156, 255, 0.1); }
.category-card.color-blue .icon-wrapper i { color: #089CFF; }

.category-card.color-green .icon-wrapper { background-color: rgba(25, 135, 84, 0.1); }
.category-card.color-green .icon-wrapper i { color: #198754; }

.category-card.color-purple .icon-wrapper { background-color: rgba(111, 66, 193, 0.1); }
.category-card.color-purple .icon-wrapper i { color: #6f42c1; }

.category-card.color-orange .icon-wrapper { background-color: rgba(253, 126, 20, 0.1); }
.category-card.color-orange .icon-wrapper i { color: #fd7e14; }

.category-card.color-red .icon-wrapper { background-color: rgba(220, 53, 69, 0.1); }
.category-card.color-red .icon-wrapper i { color: #dc3545; }

.category-card.color-cyan .icon-wrapper { background-color: rgba(13, 202, 240, 0.1); }
.category-card.color-cyan .icon-wrapper i { color: #0dcaf0; }

.category-card.color-indigo .icon-wrapper { background-color: rgba(102, 16, 242, 0.1); }
.category-card.color-indigo .icon-wrapper i { color: #6610f2; }


/* --- Special Highlight Card --- */
.category-card.is-highlight {
    background-color: #e7f5ff; /* Light blue background */
    border-color: #e7f5ff;
    justify-content: center; /* Vertically center content */
}

.category-card.is-highlight .card-title,
.category-card.is-highlight .learn-more-link {
    color: #089CFF; /* Primary color for text */
    flex-grow: 0;
}
.category-card.is-highlight .card-title {
    margin-bottom: 1rem;
}











/* ======== SERVICES SECTION STYLES ======== */
.services-section {
    background-color: #fff;
}

.service-card {
    border: none;
    border-radius: 1rem; /* 16px */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    overflow: hidden; /* This is key to making the image corners rounded */
    height: 100%; /* Ensures cards in the same row are the same height */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-img-top {
    width: 100%;
    height: 200px; /* Fixed height for all card images */
    object-fit: cover; /* Ensures images cover the area without distortion */
}

.service-card  {
    padding: 1.5rem;
    border: 1px solid #EDF1F3;
    box-shadow: 0px 4px 10px 0px #0000001A;

}
.border-radius-10px{
    border-radius: 10px !important;
}

.service-card .card-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.service-card .duration {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.25rem;
    color: #212529;
}

.service-card .btn-primary {
    background-color: #089CFF;
    border-color: #089CFF;
    font-weight: 500;
}

.service-card .btn-primary:hover {
    background-color: #007acc;
    border-color: #007acc;
}








/* ======== TRUST SECTION STYLES ======== */
.trust-section {
    background-color: #ffffff;
}

.trust-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem; /* 16px */
    border: 1px solid #e9ecef; /* Light grey border */
    height: 100%; /* Ensures all boxes in a row have the same height */
    transition: all 0.3s ease-in-out;
}

.trust-box:hover {
    border-color: #089CFF; /* Your primary color */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.trust-box .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(8, 156, 255, 0.1); /* Light primary color background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents the icon from shrinking */
}

.trust-box .feature-icon i {
    color: #089CFF; /* Primary color icon */
    font-size: 1.5rem; /* 24px */
}

.trust-box .feature-text h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.trust-box .feature-text span {
    font-size: 0.85rem;
}

.trust-box p {
    color: #666666;

}


/* ======== PRICING SECTION STYLES ======== */
.pricing-section {
    background-color: #fff;
}

.pricing-card {
    background-color: #ffffff;
    /* border: 2px solid #e9ecef;  */
    border-radius: 1rem; /* 16px */
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.pricing-card .card-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 54px; /* Give subtitle area a consistent height */
}

.pricing-card .price-container {
    margin: 10px 0;
}

.pricing-card .price-from {
    font-size: 1rem;
    color: #6c757d;
    display: block;
}

.pricing-card .price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #089CFF; /* Primary Color */
}

.pricing-card .feature-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    font-size: 0.95rem;
}

.pricing-card .feature-list li {
    position: relative;
    padding-left: 20px; /* Space for the custom bullet */
    margin-bottom: 0.75rem; /* 12px */
}

.pricing-card .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px; /* Adjust vertical alignment */
    width: 8px;
    height: 8px;
    background-color: #089CFF; /* Primary Color */
    border-radius: 50%;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #089CFF;
    border-color: #089CFF;
}

/* -- Styles for the Popular Card -- */
.pricing-card.is-popular {
    border-color: #089CFF; /* Highlighted border */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #089CFF;
    color: #ffffff;
    padding: 0.25rem 0.8rem;
    border-radius: 999px; /* Pill shape */
    font-size: 0.75rem; /* 12px */
    font-weight: 700;
}


/* ======== 4-STEP PROCESS SECTION STYLES (WITH CORRECTED ARROWS) ======== */
.process-section {
    background-color: #ffffff;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(8, 156, 255, 0.1); /* Light blue outer circle */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; /* Ensures the circle is on top of the box's border */
}

.step-number-wrapper span {
    width: 45px;
    height: 45px;
    background-color: #089CFF; /* Primary color inner circle */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 3rem 1.5rem 1.5rem 1.5rem; /* Extra top padding for the circle */
    margin-top: -30px; /* Negative margin to create the overlap */
    height: calc(100% - 30px); /* Adjust height to account for overlap */
    transition: all 0.3s ease;
}

.process-step:hover .step-content-box {
    border-color: #089CFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -- CORRECTED Dotted Arrow Connector -- */
/* This is the updated part. The new SVG and positioning create a more accurate arrow. */


/* Hide the arrow on the last step */


/* Responsive: Hide arrows on tablets and mobile where the layout stacks */
@media (max-width: 991.98px) {
  
    .process-step {
        margin-bottom: 1rem;
    }
}



/* ======== COMPREHENSIVE COURSES SECTION STYLES ======== */
.courses-section {
    background-color: #ffffff;
}

.course-card {
    border: 1px solid #e9ecef;
    border-radius: 1.25rem; /* 20px, for a softer look */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden; /* Crucial for rounding the image corners */
    height: 100%; /* Ensures cards in the same row have equal height */
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.course-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Prevents image stretching */
}

.course-card .card-body {
    padding: 1.5rem;
}

.course-card .card-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.course-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Pushes the footer down */
}

.course-card .course-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #089CFF; /* Your primary color */
}

.course-card .view-link {
    font-weight: 600;
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-card .view-link:hover {
    color: #089CFF;
}







/* ======== NEWSLETTER CTA SECTION STYLES ======== */
.newsletter-section {
    background-color: #ffffff; /* Or whatever your page background is */
}

.newsletter-box {
    background-color: #e7f5ff; /* Light blue background from your primary color */
    padding: 4rem 2rem;
    border-radius: 1.5rem; /* 24px */
    text-align: center;
}

.newsletter-box .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #089CFF; /* Your primary color */
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-box .icon-wrapper i {
    color: #ffffff;
    font-size: 1.5rem; /* 24px */
}

.newsletter-box .newsletter-title {
    color: #089CFF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-box .newsletter-text {
    color: #495057; /* A soft, dark gray */
    max-width: 650px; /* Prevents lines from being too long on wide screens */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.subscription-form-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form-wrapper .form-control {
    padding: 0.75rem 1rem;
}

.subscription-form-wrapper .btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: #089CFF;
    border-color: #089CFF;
    font-weight: 500;
}





/* ======== CONTACT SECTION STYLES ======== */
.contact-section {
    background-color: #fff; /* Light gray background for the whole section */
}

.info-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1rem; /* 16px */
}

.info-title {
    color: #089CFF; /* Your primary color */
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Custom styles for form elements to match the image */
.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control {
    background-color: #f8f9fa; /* Light gray background for inputs */
    border: 1px solid #dee2e6;
    padding: 8px 16px;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #86b7fe; /* Bootstrap's default focus color */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: #089CFF;
    border-color: #089CFF;
    font-weight: 600;
    font-size: 1rem;
}



.sub-btn {
    display: flex;
    gap: 18px;
}




/* ======== FOOTER SECTION STYLES ======== */
.site-footer {
    background-color: #e7f5ff; /* Light blue background */
    color: #495057; /* Soft dark gray for text */
    font-size: 0.95rem;
}

.footer-logo {
    color: #089CFF; /* Your primary color */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-about-text {
    line-height: 1.7;
}

.footer-title {
    color: #089CFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.legal-links a {
    text-decoration: none;
    color: #495057;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.legal-links a:hover {
    color: #089CFF;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #089CFF;
    margin-right: 0.75rem;
    margin-top: 4px; /* Align icon nicely with text */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #bde0fe; /* Lighter shade of primary color */
    color: #089CFF;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #089CFF;
    color: #ffffff;
    border-color: #089CFF;
}

.footer-bottom {
    border-top: 1px solid #cce9ff; /* Separator line */
    font-size: 0.9rem;
}

.legal-links .mx-2 {
    color: #a7c0d3;
}

@media (max-width: 767.98px) {
    .copyright-text {
        margin-bottom: 0.5rem;
    }
}



/* ======== TEACHING SLIDER SECTION STYLES ======== */
.teaching-section {
    background-color: #ffffff;
}

.teaching-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.teaching-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px; /* Adjust width as needed */
    height: 250px; /* Adjust height as needed */
    border-radius: 1.5rem; /* 24px */
    overflow: hidden;
    
    /* Styles for non-active slides */
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.8);
    opacity: 0.7;
    position: relative;
}

.teaching-slider .swiper-slide-active {
    /* Styles for the active (center) slide */
    transform: scale(1);
    opacity: 1;
}

.teaching-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button style */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.play-btn:hover {
    background-color: rgba(8, 156, 255, 0.8); /* Your primary color */
    color: #ffffff;
    border-color: transparent;
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #089CFF; /* Your primary color */
}

/* Video Modal styling */
#videoModal .modal-content {
    background: transparent;
    border: none;
}
#videoModal .modal-body {
    padding: 0;
    position: relative;
}
#videoModal .btn-close {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 10;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
}









/* ======== CORRECTED TESTIMONIALS SECTION STYLES (V2) ======== */
.testimonials-section-v2 {
    background-color: #fff;
}

.testimonials-slider-v2 {
    position: relative; /* Parent for the navigation arrows */
    overflow: visible !important;

}
.testimonials-section-v2 .container {
    overflow: visible; /* also let the .container allow overflow */
  }
@media (max-width:786px) {
    .testimonials-slider-v2 {
        position: relative; /* Parent for the navigation arrows */
        overflow: hidden !important;
    
    }
    .testimonials-section-v2 .container {
        overflow: hidden; /* also let the .container allow overflow */
      }
    
}

  .testimonials-slider-v2 .swiper-slide {
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.3s ease;
  }
  
  .testimonials-slider-v2 .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }

.testimonial-card-v2 {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1.25rem; /* 20px */
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-img-v2 {
    /* Make the image circular */
    overflow: hidden;
    height: 250px;
    width: 100%;
}

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

.testimonial-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-text i.bi-quote {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.author-name {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #6c757d;
}

.big-quote-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 8rem;
    color: #089CFF;
    opacity: 0.07;
    line-height: 1;
}

/* -- Custom Swiper Navigation Arrows (V2) -- */
.swiper-button-prev-v2,
.swiper-button-next-v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    color: #089CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-prev-v2:hover,
.swiper-button-next-v2:hover {
    background-color: #089CFF;
    color: #fff;
    border-color: #089CFF;
}

.swiper-button-prev-v2 {
    left: -20px;
}

.swiper-button-next-v2 {
    right: -20px;
}

.swiper-button-prev-v2::after,
.swiper-button-next-v2::after {
    font-family: 'bootstrap-icons';
    font-size: 1rem;
    font-weight: 900;
}

.swiper-button-prev-v2::after {
    content: '\F12F'; /* Bootstrap Icons chevron-left */
}

.swiper-button-next-v2::after {
    content: '\F138'; /* Bootstrap Icons chevron-right */
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
    .swiper-button-prev-v2,
    .swiper-button-next-v2 {
        display: none; /* Hide arrows on smaller screens for a cleaner look */
    }
}
@media (max-width: 767.98px) {
    .testimonial-card-v2 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}











/* ---------Main Home-------------- */
/* ========================================================================= */
/* VARIABLES & BASIC SETUP */
/* ========================================================================= */
:root {
    --primary-purple: #4F00F8;
    --light-purple: #F5F1FE;
    --highlight-yellow: #FFD400;
    --dark-text: #2D3748;
    --dark-bg: #1A202C;
}



/* ========================================================================= */
/* HERO SECTION STYLES */
/* ========================================================================= */
.hero-section {
    background-color: #F1F9FF;

    overflow: hidden; /* Prevents horizontal scroll from large elements */
}

.hero-main-content {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.feature-card {
    background-color: var(--primaryy-color);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-card .card-header {
    padding: 1rem;
}

.feature-card .card-header h6 {
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-card .card-body {
    background-color: #ffffff;
    padding: 1rem;
    color: var(--dark-text);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card .price-info {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card .price-highlight {
    background-color: var(--highlight-yellow);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--dark-bg);
}

.feature-card .price-info small {
    font-weight: 400;
    color: #6c757d;
}

.feature-card .btn-dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
}

.hero-image-wrapper {
    position: relative;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--dark-text);
}

/* Stats Banner Styling */
.stats-banner {
    background-color: var(--primaryy-color);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    
    box-shadow: 2px 3px 2px #000000
}

.stats-banner h5 {
    font-weight: 700;
}

.stats-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Floating Help Icon */
.floating-help-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--dark-bg);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-help-icon:hover {
    transform: scale(1.1);
    color: var(--primary-purple);
}


/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }
    .hero-main-content {
        text-align: center;
    }
    .stats-banner .col-md-4 {
        margin-bottom: 1.5rem;
    }
    .stats-banner .col-md-4:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 767.98px) {
    .feature-card {
        margin-bottom: 1rem;
    }
}


/* ========================================================================= */
/* FEATURE SECTION STYLES */
/* ========================================================================= */
.feature-section {
    background-color: #ffffff;
}

.feature-section .section-title {
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.4;
    color: var(--dark-text);
}

.feature-section .feature-subtitle {
    font-weight: 700;
    font-size: 1.5rem;
}



.feature-list span {
    color: #4A5568;
    font-size: 1.1rem;
}

.feature-section .btn-dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
}

.feature-section .learn-more-links {
    font-size: 0.85rem;
    color: #6c757d;
}

.feature-section .learn-more-links a {
    color: #6c757d;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
}

.feature-section .learn-more-links a:hover {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* FLOATING HELP ICON (if not already present) */
.floating-help-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--dark-bg);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-help-icon:hover {
    transform: scale(1.1);
    color: var(--primary-purple);
}



.cpf-banner-section {
    background: #08a8ff0a;
   
}

.cpf-banner {
    /* display: flex; */
    border-radius: 1.5rem; /* 24px */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.cpf-banner-image {
    background-image: url('https://cdn.prod.website-files.com/64070deb26ccfe4bb343dad3/68121ce0b0e385b0ce878e78_stage-point-home-2-p-500.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    position: relative;
}
.cpf-img-1 {

}
.cpf-img-2 {
    
}
.cpf-badge {
    position: absolute;
    top: 50%;
    left: 70%; /* Position relative to the hand in the image */
    transform: translate(-50%, -50%) rotate(-5deg);
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #495057;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 180px;
}

.cpf-badge .cpf-logo {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    border: 2px solid #000;
    padding: 5px;
    margin-top: 8px;
    border-radius: 8px;
}

.cpf-banner-content {
    background-color: var(--primary-blue);
    padding: 4rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cpf-banner-content .banner-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.3;
}

.cpf-banner-content .banner-text {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.cpf-banner-content .btn-light {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 0.8rem 1.75rem;
    align-self: flex-start; /* Makes button only as wide as its content */
}

/* ========================================================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ========================================================================= */
@media (max-width: 991.98px) {
    .cpf-banner-image {
        min-height: 350px; /* Adjust height for stacked view */
    }
    .cpf-badge {
        left: 50%; /* Re-center badge for stacked view */
    }

    .cpf-banner-content .banner-text {
        margin-left: auto;
        margin-right: auto;
    }
     .cpf-banner-content .btn-light {
        align-self: center; /* Center button in stacked view */
    }
}



/* ========================================================================= */
/* FINANCE CTA BANNER SECTION STYLES */
/* ========================================================================= */
.finance-banner {
    background-color: var(--primary-blue);
    border-radius: 1.5rem; /* 24px */
    overflow: hidden; /* Important for containing the background image */
    display: flex;
}

.finance-banner .banner-image-side {
    /* Image from Pexels that matches the theme */
    background-image: url('https://images.pexels.com/photos/4488638/pexels-photo-4488638.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.finance-banner .banner-text-side {
    padding: 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.finance-banner .banner-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.finance-banner .banner-text {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.finance-banner .btn-light {
    font-weight: 600;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
}


/* ========================================================================= */
/* RECOVER POINTS FEATURE SECTION STYLES */
/* ========================================================================= */
.recover-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 1.5rem; /* 24px */
    padding: 3rem;
}

.badge-new {
    background-color: var(--highlight-yellow);
    color: var(--dark-bg);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
}

.recover-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark-text);
}

.recover-box .btn-dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

/* FLOATING HELP ICON (if not already present) */
.floating-help-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--dark-bg);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-help-icon:hover {
    transform: scale(1.1);
}


/* ========================================================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ========================================================================= */
@media (max-width: 991.98px) {
    .finance-banner .banner-image-side {
        /* On smaller screens, hide the side image and let the text take full width */
        display: none;
    }
    .finance-banner .banner-text-side {
        text-align: center;
    }
    .recover-box {
        text-align: center;
    }
}




/* ========================================================================= */
/* GET YOUR CODE SECTION STYLES */
/* ========================================================================= */
.get-code-section {
    background-color: #ffffff;
}

.get-code-section .section-title {
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.4;
    color: var(--dark-text);
}

.get-code-section .feature-subtitle {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Reusing the feature-list style from the previous section */
.feature-list {
    list-style: none;
    padding-left: 0;
}
.feature-list .feature-icon {
    color: var(--primaryy-color);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-list span {
    color: #4A5568;
    font-size: 1.1rem;
}

/* Phone Mockup Styling */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Reusing the button and link styles from the previous section */
.get-code-section .btn-dark {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
}

.get-code-section .learn-more-links {
    font-size: 0.85rem;
    color: #6c757d;
}

.get-code-section .learn-more-links a {
    color: #6c757d;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
}

.get-code-section .learn-more-links a:hover {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* FLOATING HELP ICON (if not already present) */
.floating-help-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--dark-bg);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-help-icon:hover {
    transform: scale(1.1);
}




/* ========================================================================= */
/* INSURANCE SECTION STYLES */
/* ========================================================================= */
.insurance-section {
    background-color: #ffffff;
}

.insurance-section .section-title {
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.4;
    color: var(--dark-text);
}

/* Reusing feature-list, btn-dark, and learn-more-links from previous sections */
.feature-list, .learn-more-links, .insurance-section .btn-dark {
    /* Styles are already defined in previous sections */
}

/* --- UI Graphic Styling --- */
.insurance-graphic-wrapper {
    background-color: var(--light-gray-bg);
    border-radius: 1.5rem; /* 24px */
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insurance-card-ui {
    background-color: #ffffff;
    border-radius: 1rem; /* 16px */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    position: relative;
}

.card-car-icon {
    font-size: 2rem;
    color: var(--primary-purple);
}

.progress-bar-wrapper {
    background-color: #e9ecef;
    height: 12px;
    border-radius: 99px;
    position: relative;
}

.progress-bar-inner {
    background-color: #adb5bd;
    height: 100%;
    width: 65%;
    border-radius: 99px;
}

.currency-symbol {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: #6c757d;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
}

.info-row i {
    font-size: 1.25rem;
    color: #6c757d;
}

.info-row .info-bar {
    height: 10px;
    width: 60%;
    background-color: #e9ecef;
    border-radius: 99px;
}

.plus-button {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(79, 0, 248, 0.4);
    transition: all 0.3s ease;
}

.plus-button:hover {
    transform: translateX(-50%) scale(1.1);
    color: #ffffff;
}


/* FLOATING HELP ICON (if not already present) */
.floating-help-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--dark-bg);
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-help-icon:hover {
    transform: scale(1.1);
}

/* Fix for testimonials slider causing horizontal scroll on mobile/tablet */
.testimonials-slider-v2 {
    overflow: hidden !important;
}






/* ========================================================================= */
/* MODERNIZED COMMUNITY REVIEWS SECTION STYLES */
/* ========================================================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reviews-widget-modern {
    background-color: #ffffff;
    border-radius: 1.5rem; /* 24px */
    padding: 3rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease-out;
}

.widget-header-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.widget-header-modern .google-logo {
    height: 32px;
    filter: grayscale(1);
    opacity: 0.6;
}

.widget-header-modern .rating-score {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--theme-blue); /* <-- THEME COLOR APPLIED */
}

.star-rating i {
    color: var(--star-color);
}

.based-on-text {
    text-align: center;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.reviews-grid-modern {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid #e9ecef;
}

.review-snippet-modern {
    position: relative;
    padding: 0 1.5rem;
}

/* Vertical separator for desktop */
.review-snippet-modern:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-image: linear-gradient(to bottom, transparent, #dee2e6, transparent);
}

.review-snippet-modern .review-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.review-snippet-modern .review-author {
    font-size: 0.9rem;
    color: var(--light-text);
}

.btn-reviews-modern {
    background-color: var(--theme-blue); /* <-- THEME COLOR APPLIED */
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}
.btn-reviews-modern:hover {
    background-color: #0782d4; /* A slightly darker shade for hover */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(8, 156, 255, 0.3);
}

/* ========================================================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ========================================================================= */
@media (max-width: 767.98px) {
    .reviews-grid-modern {
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .review-snippet-modern {
        text-align: center;
        padding: 2rem 0;
    }

    /* Hide vertical separator on mobile */
    .review-snippet-modern:not(:first-child)::before {
        display: none;
    }

    /* Add horizontal separator on mobile */
    .review-snippet-modern:not(:first-child) {
        border-top: 1px solid #e9ecef;
    }
}







/*--------------------------------------------------------------
# Section Styling
--------------------------------------------------------------*/

  
  .car_class-section-content h1, .car_class-section-content h2, .car_class-section-content h3 {
    font-weight: 700;
  }
  
  /*--------------------------------------------------------------
  # Custom Badge & Tag Styling
  --------------------------------------------------------------*/
  .car_class-badge-popular {
      background-color: #e6f5ff !important;
      color: var(--primaryy-color) !important;
      font-size: 0.8rem;
      padding: 0.5em 0.9em;
      vertical-align: middle;
      position: relative;
      top: -14px;
      left: -7px;
  }
  
  .car_class-badge-custom {
      display: inline-block;
      padding: 0.5em 1em;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1;
      color: #28a745; /* Green color for text */
      text-align: center;
      white-space: nowrap;
      vertical-align: baseline;
      border-radius: 0.375rem;
      background-color: #eaf6ec; /* Light green background */
      border: 1px solid #c3e6cb; /* Green border */
  }
  
  /*--------------------------------------------------------------
  # Feature List Styling
  --------------------------------------------------------------*/
  .car_class-feature-list {
    padding-left: 0;
    margin-top: 1rem;
  }
  
  .car_class-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--secondary-text);
    font-weight: 500;
  }
  
  .car_class-feature-list i {
    color: #28a745; /* Green checkmark */
    font-size: 1.2rem;
    margin-right: 0.75rem;
  }
  
  /*--------------------------------------------------------------
  # Button Styling
  --------------------------------------------------------------*/
  /* .btn {
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
  }
  
  .btn-primary {
      background-color: var(--primaryy-color);
      border-color: var(--primaryy-color);
  }
  
  .btn-primary:hover {
      background-color: #078ae4;
      border-color: #078ae4;
      transform: translateY(-2px);
  }
  
  .btn-outline-secondary {
      color: #343a40;
      border-color: var(--border-color);
  }
  
  .btn-outline-secondary:hover {
      background-color: #f8f9fa;
      color: #212529;
      border-color: #adb5bd;
      transform: translateY(-2px);
  } */
  
  /*--------------------------------------------------------------
  # Image Styling
  --------------------------------------------------------------*/
  .img-fluid {
      box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
  }
  
  /*--------------------------------------------------------------
  # Responsive Design Adjustments
  --------------------------------------------------------------*/
  @media (max-width: 991.98px) {
   
    .car_class-section-content h1 {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 767.98px) {
      .car_class-section-content {
          text-align: center;
      }
      .d-flex.flex-wrap {
          justify-content: start;
      }
      .car_class-feature-list {
          text-align: left;
          display: inline-block; /* Center the lists themselves */
      }
  }
  














/*--------------------------------------------------------------
# Action Boxes / Buttons
--------------------------------------------------------------*/
.action-box {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
  }
  .action-box-light {
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
  }
  .action-box-light:hover {
    background-color: #f8f9fa;
    color: var(--text-dark);
  }
  .action-box-dark {
    background-color: var(--primaryy-color);
    border: 1px solid var(--primaryy-color);
    color: #fff;
  }
  /* .action-box-dark:hover {
    background-color: #3538b4;
    border-color: #3538b4;
    color: #fff;
  } */
  
  /*--------------------------------------------------------------
  # Topic Grid Section
  --------------------------------------------------------------*/
  .topic-grid-section {
    background-color: var(--bg-light-gray);
  }
  
  .topic-card {
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(16, 24, 40, 0.08);
  }
  
  .topic-card .card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primaryy-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  
  /*--------------------------------------------------------------
  # FAQ Accordion Section
  --------------------------------------------------------------*/
  .faq-section h2 {
      font-size: 1.8rem;
  }
  
  .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem 0;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--primaryy-color);
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }
  
  .accordion-button::after {
    content: '\F4FE'; /* Bootstrap Icon for plus-circle */
    font-family: 'bootstrap-icons';
    font-weight: bold;
    background-image: none;
    color: var(--primaryy-color);
  }
  .accordion-button:not(.collapsed)::after {
    content: '\F468'; /* Bootstrap Icon for dash-circle */
    background-image: none;
    transform: none;
  }
  
  .accordion-body {
    color: var(--text-muted);
    padding: 0 0 1.5rem 0;
    line-height: 1.6;
  }

.pt-20px {
    padding-top: 50px !important;
}
@media (max-width: 786px) {
    .sm-pt-10px {
        padding-top: 20px !important;
    }
}