main {
    font-family: 'Satoshi', sans-serif;
}

/* Hero section  */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    /* ✅ only top 30% */

    background: linear-gradient(180deg, rgba(255, 255, 255, 0.481) 49.63%,
            rgba(140, 211, 232, 0.332) 83.11%,
            rgba(181, 246, 251, 0.034) 100%);

    z-index: 1;
}

/* Responsive image */
.hero-section-img {
    width: 100%;
    height: auto;
    /* 🔥 keeps natural image height */
    display: block;
}

/* Overlay content */
.hero-section-content {
    position: absolute;
    top: 30px;
    /* ✅ always 30px from top */
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    padding: 0 5%;
    color: #ffffff;
    z-index: 2;
}

.hero-section-title {
    width: 80%;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 38px);
    line-height: 141%;
    color: #013A70;
    margin-bottom: 15px;
}

.hero-section-subtitle {
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 160%;
    color: #313334ec;
    max-width: 626px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-section-title {
        font-size: clamp(24px, 3vw, 36px);
        width: 100%;
    }

    .hero-section-subtitle {
        font-size: clamp(14px, 3vw, 16px);
        width: 70%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section-title {
        width: 100%;
        font-size: clamp(18px, 3vw, 24px);
    }

    .hero-section-subtitle {
        font-size: clamp(12px, 3vw, 14px);
        width: 100%;
    }
}

/* course card section  */
.course-card-section {
    max-width: 1200px;
    padding: 60px 5%;
    margin: auto;
}

/* ================= HEADER ================= */
.course-card-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.course-card-section-heading h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #013A70;
    margin-bottom: 12px;
}

.course-card-section-heading p {
    font-size: 18px;
    color: #65737E;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ================= LAYOUT ================= */
.course-card-section-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* ================= TOP BAR ================= */
.course-card-section-top-bar-wrapper {
    margin-bottom: 30px;
}

.course-card-section-top-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-card-section-search-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.course-card-section-search-icon {
    position: absolute;
    left: 18px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.course-card-section-search-container input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 50px;
    border: 1px solid #C2C9CF;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.course-card-section-search-container input:focus {
    border-color: #013A70;
}

/* Mobile Filter Icon */
.course-card-section-mobile-filter-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: #013A70;
    color: #fff;
    border: none;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

/* Dropdown Select Styling Customization */
.course-card-section-dropdown-sort {
    padding: 10px 35px 10px 20px;
    border: 2px solid #013A70;
    border-radius: 50px;
    color: #013A70;
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.546%204.36373L8.00053%2010.9092L1.45508%204.36373%22%20stroke%3D%22%23013A70%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    outline: none;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.course-card-section-dropdown-sort:focus,
.course-card-section-dropdown-sort:hover {
    background-color: #013A70;
    color: #ffffff;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14.546%204.36373L8.00053%2010.9092L1.45508%204.36373%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}

/* Active Category Chip Container */
.course-card-section-active-filter-row {
    display: flex;
    margin-top: 15px;
    display: none;
    gap: 10px;
    flex-wrap: wrap;
}

.course-card-section-active-category-chip {
    background: #013A70;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.course-card-section-active-category-chip .course-card-section-close-icon {
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* ================= SIDEBAR ================= */
.course-card-section-sidebar {
    background: #fff;
    border: 1px solid #F0F4F5;
    border-bottom: 4px solid #013A70;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
    height: fit-content;
    position: relative;
}

.course-card-section-close-sidebar-mobile {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    background: none;
    border: none;
    color: #013A70;
    cursor: pointer;
}

.course-card-section-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-card-section-filter-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.course-card-section-filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.course-card-section-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card-section-radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #15989C;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.course-card-section-filter-item.course-card-section-active .course-card-section-radio-custom::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #15989C;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.course-card-section-count-badge {
    background: #E0F8FF;
    color: #013A70;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.course-card-section-reset-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #D5E1E2;
    color: #65737E;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* ================= CARDS GRID ================= */
.course-card-section-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.course-card-section-card {
    border: 1px solid #EAECEF;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
    position: relative;
}

.course-card-section-card-img-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
}

.course-card-section-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Dynamic Tags */
.course-card-section-dynamic-tag {
    position: absolute;
    top: 10px;
    left: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card-section-tag-featured {
    background: #013A70;
}

.course-card-section-tag-trending {
    background: #E11D48;
}

.course-card-section-tag-new {
    background: #059669;
}

.course-card-section-tag-premium {
    background: #8B5CF6;
}

.course-card-section-card-body {
    padding: 20px;
}

/* Chips Scrolling Updates */
.course-card-section-chips-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.course-card-section-chips-container:active {
    cursor: grabbing;
}

.course-card-section-chips-container::-webkit-scrollbar {
    display: none;
}

.course-card-section-chip {
    background: #E0F8FF;
    color: #013A70;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.course-card-section-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 13px;
    color: #010E17;
    margin-bottom: 12px;
    font-weight: 600;
}

.course-card-section-stars {
    color: #15989C;
}

.course-card-section-reviews {
    color: #65737E;
    font-weight: 400;
}

.course-card-section-update-time {
    color: #010E17;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-card-section-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #013A70;
    margin-bottom: 10px;
}

/* 2-Line Text Clamp */
.course-card-section-card-text {
    font-size: 13px;
    color: #65737E;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card-section-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F0F0F0;
    padding-top: 15px;
}

.course-card-section-price {
    font-size: 24px;
    font-weight: 800;
    color: #010E17;
}

.course-card-section-buy-btn {
    background: #15989C;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* ================= PAGINATION ================= */
.course-card-section-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.course-card-section-page-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #C2C9CF;
    border-radius: 8px;
    /* Rectangle style */
    color: #013A70;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.course-card-section-page-btn:hover:not(:disabled) {
    border-color: #013A70;
    background: #F0F4F5;
}

.course-card-section-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #EAECEF;
}

.course-card-section-page-info {
    font-size: 16px;
    font-weight: 700;
    color: #013A70;
    min-width: 80px;
    text-align: center;
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .course-card-section-layout {
        grid-template-columns: 1fr;
    }

    .course-card-section-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        border-radius: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .course-card-section-sidebar.course-card-section-active-modal {
        left: 0;
        box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    }

    .course-card-section-close-sidebar-mobile {
        display: block;
    }

    .course-card-section-top-bar {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .course-card-section-mobile-filter-btn {
        display: flex;
    }

    .course-card-section-search-container input {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }

    .course-card-section-dropdown-sort {
        padding: 10px 25px 10px 15px;
        font-size: 13px;
        background-position: right 8px top 50%;
    }

    .course-card-section-price {
        font-size: 20px;
    }

    .course-card-section-buy-btn {
        padding: 10px 20px;
    }

    .course-card-section-heading h1 {
        font-size: clamp(28px, 2.5vw, 40px);
    }

    .course-card-section-heading p {
        font-size: clamp(14px, 2.5vw, 20px);
    }
}

@media (max-width: 480px) {
    .course-card-section {
        padding: 20px 5%;
    }

    .course-card-section-active-category-chip {
        font-size: 10px;
    }

    .course-card-section-active-category-chip .course-card-section-close-icon {
        font-size: 12px;
    }

    .course-card-section-cards-grid {
        grid-template-columns: 1fr;
    }

    .course-card-section-heading h1 {
        font-size: 24px;
        letter-spacing: 0px;
    }

    .course-card-section-heading p {
        font-size: 12px;
    }

    .course-card-section-top-bar {
        gap: 6px;
    }

    .course-card-section-dropdown-sort {
        padding: 10px 7px 10px 14px;
        font-size: 10px;
        background-size: 10px 10px;
    }

    .course-card-section-mobile-filter-btn {
        width: 30px;
        height: 30px;
    }

    .course-card-section-mobile-filter-btn svg {
        width: 14px;
        height: 14px;
    }

    .course-card-section-card-img-wrapper img {
        object-fit: fill;
    }
}

/* Get in Touch section  */
.get-in-touch-section {
    position: relative;
    width: 100%;
    min-height: 745px;
    padding: 10px 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* BACKGROUND SVG */
.get-in-touch-section-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.get-in-touch-section-bg-wave svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT CONTAINER */
.get-in-touch-section-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: 745px;
    /* Match section height for absolute positioning bounds */
}

/* =========================================
           INDIVIDUAL POSITIONING (Desktop)
           ========================================= */

/* 1. Tagline positioned high up on the left */
.get-in-touch-section-tagline {
    position: absolute;
    top: 22%;
    left: 20px;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(93deg, #014980, #078285, #013A70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Title & Description positioned lower on the left */
.get-in-touch-section-text-block {
    position: absolute;
    top: 58%;
    left: 20px;
    max-width: 480px;
}

.get-in-touch-section-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #010E17;
    margin-bottom: 16px;
}

.get-in-touch-section-desc {
    font-size: 18px;
    color: #65737E;
    line-height: 1.6;
}

/* 3. Form Card positioned on the right */
.get-in-touch-section-form-card {
    position: absolute;
    top: 15%;
    right: 20px;
    width: 100%;
    max-width: 433px;
    padding: 40px 30px;
    border-radius: 12px;
    background: rgba(182, 214, 221, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* =========================================
           FORM ELEMENTS
           ========================================= */
.get-in-touch-section-form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #010E17;
    text-align: center;
}

.get-in-touch-section-form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.get-in-touch-section-input,
.get-in-touch-section-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    color: #333;
    outline: none;
    transition: border 0.3s ease;
}

.get-in-touch-section-input::placeholder,
.get-in-touch-section-textarea::placeholder {
    color: #999;
}

.get-in-touch-section-input:focus,
.get-in-touch-section-textarea:focus {
    border: 1px solid #078285;
}

.get-in-touch-section-textarea {
    height: 120px;
    resize: none;
}

.get-in-touch-section-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.get-in-touch-section-btn {
    width: 160px;
    height: 44px;
    border-radius: 50px;
    border: none;
    background: #013A70;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.get-in-touch-section-btn:hover {
    background: #012850;
}

/* =========================================
           RESPONSIVE DESIGN (MEDIA QUERIES)
           ========================================= */

/* Tablets (768px - 1024px): 
           Keep desktop layout but scale widths/fonts so they don't overlap */

@media (max-width: 1024px) {
    .get-in-touch-section-tagline {
        top: 18%;
    }

    .get-in-touch-section-tagline {
        font-size: 18px;
    }

    .get-in-touch-section-text-block {
        max-width: 45%;
        /* Scale width down to fit left half */
    }

    .get-in-touch-section-title {
        font-size: 34px;
    }

    .get-in-touch-section-desc {
        font-size: 16px;
    }

    .get-in-touch-section-form-card {
        max-width: 45%;
        /* Scale width down to fit right half */
        padding: 30px 20px;
    }
}

/* Mobile & Small Tablets (Below 768px): Switch to column */
@media (max-width: 767px) {
    .get-in-touch-section {
        align-items: center;
        padding: 30px 5%;
    }

    .get-in-touch-section-bg-wave {
        height: 100%;
        top: 10%;
    }

    .get-in-touch-section-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 0 20px;
        gap: 40px;
    }

    /* Override Absolute Positioning for Mobile */
    .get-in-touch-section-tagline,
    .get-in-touch-section-text-block,
    .get-in-touch-section-form-card {
        position: static;
        text-align: center;
        margin: 0;
        max-width: 100%;
    }

    .get-in-touch-section-title {
        font-size: 36px;
    }

    .get-in-touch-section-form-card {
        max-width: 500px;
        /* Keep form looking like a card on wide phones */
    }

    .get-in-touch-section-title br,
    .get-in-touch-section-desc br {
        display: none;
        /* Let text flow naturally on smaller screens */
    }
}

/* Smaller Mobile Phones */
@media (max-width: 480px) {
    .get-in-touch-section-title {
        font-size: 28px;
    }

    .get-in-touch-section-tagline {
        font-size: 16px;
    }

    .get-in-touch-section-desc {
        font-size: 15px;
    }

    .get-in-touch-section-form-title {
        font-size: 26px;
    }

    .get-in-touch-section-btn {
        width: 100%;
    }
}

/* faq section  */
/* FAQ Section Wrapper */
.faq-section {
    padding: 120px 5% 40px 5%;
    background-color: #ffff;
    /* font-family: 'Satoshi', sans-serif; */
}

/* FAQ Container */
.faq-section-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Title */
.faq-section-title {
    text-align: center;
    font-size: 42px;
    color: #013A70;
    margin-bottom: 15px;
}

.faq-section-description {
    justify-self: center;
    max-width: 60%;
    text-align: center;
    font-size: 16px;
    color: #013A70;
    margin-bottom: 30px;
}

/* Individual FAQ Item */
.faq-section-item {
    background-color: #ffffff;
    /* border: 1px solid #e5e5e5; */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px 5px rgba(154, 185, 216, 0.032);
}

/* FAQ Question (Clickable Area) */
.faq-section-question {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #013A70;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-section-question:hover {
    background-color: #fdfdfd;
}

/* FAQ Icons Container & SVG setup */
.faq-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section-icon svg {
    transition: opacity 0.2s ease;
}

/* Hide minus icon by default */
.faq-section-icon-minus {
    display: none;
}

/* When active, hide plus and show minus */
.faq-section-active .faq-section-icon-plus {
    display: none;
}

.faq-section-active .faq-section-icon-minus {
    display: block;
}

/* FAQ Answer Wrapper */
.faq-section-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

/* FAQ Answer Inner Text */
.faq-section-answer-text {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}