.properties {
    background-color: rgba(59, 91, 231, 0.6); /* #3b5be796 */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
    max-width: 400px; /* Reduced card width */
    margin: 0 auto;
}

.properties__card {
    padding: 15px;
}

.properties__caption h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px; /* Reduced font size */
    color: #fdb44b; /* Golden accent */
    margin-bottom: 5px;
}

.properties__caption h1 {
    font-size: 42px; /* Slightly smaller */
    font-weight: bold;
    color: #fff;
    margin: 5px 0;
}

.properties__caption p {
    font-size: 14px; /* Smaller text */
    font-weight: 500;
    margin: 8px 0; /* Reduced space */
}

.border-btn {
    display: block;
    width: 100%; /* Full width */
    background-color: #4c83ee;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    /* transition: all 0.3s ease-in-out; */
    border-color: #4c83ee !important;
}

.border-btn:hover {
    background-color: #e36c08;
    color: #ffffff;
    border: 2px solid #dfdfdf !important;
}

.btn-earn {
    display: inline-block;
    background-color: #4c83ee; /* Primary blue */
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    text-align: center;
}

.btn-earn:hover {
    background-color: #e36c08;
    color: #ffffff;
    border: 2px solid #dfdfdf;
    /* transform: scale(0.05); Slightly enlarge */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}


.header-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

/* When scrolled, background turns white */
.header-sticky.scrolled {
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Change menu text color when scrolled */
.header-sticky.scrolled #navigation li a {
    color: #000c3f !important;
}

/* Container adjustments for alignment */
.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Adjust spacing between "Log In" and "Start Free" */
}

/* Log In link styling */
.menu-wrapper a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* "Start Free" button styles */
.btn-start-free {
    display: inline-block;
    /* padding: 8px 15px; */
    background-color: #4c83ee;
    color: #fff;
    /* font-weight: 600; */
    /* border-radius: 5px; */
    /* text-decoration: none; */
    /* transition: all 0.3s ease-in-out; */
    /* border: none; */
    /* font-size: 16px; */
}

/* Fix height and alignment
.button-header {
    display: flex;
    align-items: center;
} */

/* On scroll, change button color */
.header-sticky.scrolled .btn-start-free {
    /* background-color: #000c3f !important; */
    color: #000c3f !important;
    border-color: #000c3f !important;
}

/* Hover effect */
.btn-start-free:hover {
    background-color: #e36c08 !important;
    color: #ffffff !important;
    border: 2px solid #000c3f;
}

/* Dropdown Styles */
.mega-menu-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    /*width: 750px;*/
    background: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 25px;
    display: none; /* Hide by default */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 1000;
}

/* Show mega menu on hover */
.dropdown:hover .mega-menu-drop {
    display: grid;
}

/* Section Styling */
.mega-menu-drop-column h3 {
    font-size: 18px;
    color: #333; /* Darker Gray */
    font-weight: bold;
    /*margin-bottom: 15px;*/
    text-transform: uppercase;
}

/* List Styling */
.menu-list {
    list-style: none;
    /*padding: 0;*/
    /*margin: 0;*/
}

.menu-list li {
    /*margin-bottom: 12px;*/
}

.menu-list a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000c3f; /* Dark Blue */
    display: block;
    /*padding: 8px 12px;*/
    transition: all 0.3s ease;
    border-radius: 5px;
}

.menu-list a:hover {
    background: #f5f5f5;
    color: #001a66;
}

/* Dropdown Button */
.mega-menu-btn {
    margin-top: 20px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    background: #000c3f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: background 0.3s ease;
}

.mega-menu-btn:hover {
    background: #001a66;
}

.btn-read-more {
    background-color: #000c3f; /* Default background color */
    color: #fff;
    border: 1px solid #000c3f;
}

.btn-read-more:hover {
    background-color: #e36c08 !important; /* Hover background color */
    color: #fff;
    border-color: #000c3f;
}

.custom-btn {
    background-color: #007bff; /* Blue color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.custom-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05);
}

.custom-btn:active {
    transform: scale(0.98);
}

.course-heading:hover{
    color: #e36c08 !important;
}
.faq-section {
    margin-top: 40px;
}
.faq-category {
    margin-bottom: 30px;
}
.faq-category-title {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.faq-question {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    background: none;
    border: none;
    /*cursor: pointer;*/
    text-align: left;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
.faq-answer {
    display: block; /* Ensure the element is block-level */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}
.faq-answer.show {
    display: block;
}
.faq-extra {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
.faq-share {
    color: #007bff;
    text-decoration: none;
}
.faq-share:hover {
    text-decoration: underline;
}

.faq-icon {
    font-size: 20px;
    color: #000000;
    transition: transform 0.3s ease;
}
.faq-icon:hover {
    cursor: pointer;
    color: #DD4F05;
}
.faq-question:hover .faq-icon {
    transform: scale(1.2);
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    height: 47px;
}

.filter-bar select, .filter-bar input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 200px;
}
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.front-text {
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.front-text.active {
    transform: translateX(0);
}

.front-text.hidden {
    transform: translateX(100%);
}

.front-text-1 {
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.front-text-1.active {
    transform: translateX(0);
}

.front-text-1.hidden {
    transform: translateX(100%);
}
.program-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white !important;
    background-color: transparent;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.program-button:hover {
    /*background-color: white;*/
    color: white;
}
.category-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: black; /* Default text color */
    transition: color 0.3s ease-in-out;
}

.category-link:hover {
    color: #007bff; /* Change color on hover */
}

.category-link i {
    transition: transform 0.3s ease-in-out, margin-left 0.3s ease-in-out;
    display: inline-block;
}

.category-link:hover i {
    transform: translateX(5px);
    color: #000c3f;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Slider Wrapper */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

/* Individual Slides */
.slider .col-lg-3 {
    flex: 0 0 25%; /* Show 4 slides at a time (adjust as needed) */
    box-sizing: border-box;
    padding: 10px;
}

/* Slide Content */
.single-topic {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.topic-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.topic-content h3 {
    margin: 15px 0 0;
    font-size: 18px;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}