:root {
    --primary-color: #19b59b;
    --primary-light: #e8f7f5;
    --heading-color: #2c3e50;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --background-color: #ffffff;
    --border-color: #dee2e6;
    --primary-orange: #f39c12;
    --white-color: #ffffff;
    --orange: #f39c12;
    --magenta: #e74c3c;
    --green: #2ecc71;
    --blue: #3498db;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-color);
    background:
        radial-gradient(circle at 15% 25%, rgba(25, 181, 155, 0.07), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(25, 181, 155, 0.07), transparent 40%),
        var(--background-color);
    background-attachment: fixed;
}


/* --- General & Reusable Components --- */
p {
    line-height: 1.7;
}

.section-subtitle {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.section-title .highlight {
    color: #19b59b;
}

.btn-view-all {
    background-color: var(--text-dark);
    color: white;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background-color: #495057;
    color: white;
}

.btn-view-all .arrow-icon {
    background-color: white;
    color: var(--text-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 0.8rem;
}

.hero-image-section {
    height: 200px;
}

/* --- Navbar --- */
.navbar {
    padding-top: 1rem;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #19b59b;
}

.btn-outline-custom {
    border-color: #19b59b;
    color: #19b59b;
    font-weight: 500;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #19b59b;
    color: #fff;
}

.btn-nav {
    background-color: #19b59b;
    color: white;
}

/* --- Off-canvas Menu (Mobile) --- */
.mobile-offcanvas {
    --bs-offcanvas-width: 60%;
    background: white;
    color: #fff;
}



.mobile-offcanvas .offcanvas-title {
    font-weight: 600;
    color: #fff;

}

.mobile-offcanvas .btn-close {
    background-color: transparent;
}

.mobile-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;

}

.mobile-offcanvas .navbar-nav {
    flex-grow: 1;
}

.mobile-offcanvas .nav-link {
    color: #030303;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-offcanvas .nav-item:last-child .nav-link {
    border-bottom: none;
}

.mobile-offcanvas .nav-link:hover {
    color: #19b59b;
}

.mobile-offcanvas .btn-nav-mobile {
    background-color: #19b59b;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
    padding: 2rem 1rem;

}

.hero-content {
    max-width: 550px;
}

.hero-heading {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.hero-heading .underline {
    position: relative;
    display: inline-block;
}

.hero-heading .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="10" viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M0 5 Q 25 10, 50 5 T 100 5" stroke="%2319b59b" stroke-width="3" fill="none" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero-subheading {
    font-size: 1rem;
    color: var(--text-muted);
}

.explore_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #039d55;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
    text-decoration: none;
}

.explore_more:hover {
    background-color: #028347;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.explore_more .arrow-icon {
    transition: transform 0.3s ease;
}

.explore_more:hover .arrow-icon {
    transform: translateX(5px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: 300px;
    border-radius: 20px;
    position: relative;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-card .icon {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .text-content {
    font-size: 0.85rem;
    line-height: 1.3;
}

.card-students {
    top: 15%;
    left: -100px;
    animation-delay: 0s;
}

.card-students .icon {
    background-color: #e7f5ff;
    color: #1c7ed6;
}

.card-chart {
    top: 10%;
    right: 0;
    padding: 0.75rem;
    animation-delay: 1s;
}

.card-chart .icon {
    font-size: 1.8rem;
    background: none;
    color: #fa5252;
}

.card-congrats {
    bottom: 0%;
    right: -5%;
    animation-delay: 2s;
}

.card-congrats .icon {
    background-color: #fff9db;
    color: #fcc419;
}

.card-ux {
    bottom: 10%;
    left: 5%;
    animation-delay: 1.5s;
}

.card-ux .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
}

.card-ux .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Stat Cards Section --- */
.stat-card-section {
    padding: 1rem 1rem 0 1rem;
}

.stat-card-wrapper {
    position: relative;
    padding: 5px;
}

.stat-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid;
    border-color: transparent;
    z-index: 1;
}

.stat-card {
    padding: 0.5rem 0.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0;
    text-align: center;
}

/* Orange */
.stat-card-wrapper.orange {
    background-color: rgba(243, 156, 18, 0.1);
    /* Light orange background */
    border-radius: 12px;

}

.stat-card-wrapper.orange::before {
    border-color: #f39c12;
}

.stat-card-wrapper.orange .stat-icon {
    color: #f39c12;
}

/* Cyan */
.stat-card-wrapper.cyan {
    background-color: rgba(26, 188, 156, 0.1);
    /* Light cyan background */
}

.stat-card-wrapper.cyan::before {
    border-color: #1abc9c;
}

.stat-card-wrapper.cyan .stat-icon {
    color: #1abc9c;
}

/* Pink */
.stat-card-wrapper.pink {
    background-color: rgba(233, 30, 99, 0.1);
    /* Light pink background */
}

.stat-card-wrapper.pink::before {
    border-color: #e91e63;
}

.stat-card-wrapper.pink .stat-icon {
    color: #e91e63;
}

/* Purple */
.stat-card-wrapper.purple {
    background-color: rgba(155, 89, 182, 0.1);
    /* Light purple background */
}

.stat-card-wrapper.purple::before {
    border-color: #9b59b6;
}

.stat-card-wrapper.purple .stat-icon {
    color: #9b59b6;
}

/* --- About Section --- */
.about-section {
    padding: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(253, 98, 94, 0.1) 1px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 0;
}

.about-section .decorative-shape-right {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 150px;
    opacity: 0.9;
    z-index: 0;
}

.feature-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card .icon-circle {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-courses {
    background-color: #eafaf1;
    color: #20c997;
}

.icon-instructors {
    background-color: #fff0f0;
    color: #fd625e;
}

.icon-certs {
    background-color: #eef2ff;
    color: #4b73ff;
}

.feature-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 0.8rem;
}

.about-content .about-us-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.about-content h2 .text-highlight {
    color: var(--secondary-color);
}

.wavy-underline {
    display: block;
    width: 80px;
    height: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="80" height="6" viewBox="0 0 80 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 3 Q 20 6, 40 3 T 80 3" stroke="%2320c997" stroke-width="3" fill="none" stroke-linecap="round"/></svg>');
    margin-bottom: 1.5rem;
}

.about-content .description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.checklist li {
    margin-bottom: 0.75rem;
    color: var(--heading-color);
    font-weight: 500;
}

.checklist li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.btn-learn-more {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #1aa883;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(32, 201, 151, 0.2);
}

/* --- Category Section --- */
.category-section {
    padding: 4rem 0;
}

.category-card {
    display: flex;
    align-items: center;
    background-color: var(--surface-color);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 230, 230, 0.795);
    gap: 1rem;
}

.category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 28px;
    height: 28px;
}

.icon-bg-teal {
    background-color: rgba(26, 188, 156, 0.1);
}

.icon-bg-pink {
    background-color: rgba(231, 76, 60, 0.1);
}

.icon-bg-green {
    background-color: rgba(46, 204, 113, 0.1);
}

.icon-bg-yellow {
    background-color: rgba(241, 196, 15, 0.1);
}

.icon-bg-purple {
    background-color: rgba(155, 89, 182, 0.1);
}

.icon-bg-red {
    background-color: rgba(255, 101, 132, 0.1);
}

.icon-bg-blue-light {
    background-color: rgba(143, 170, 220, 0.15);
}

.icon-bg-orange {
    background-color: rgba(230, 126, 34, 0.1);
}

.icon-bg-blue {
    background-color: rgba(52, 152, 219, 0.1);
}

.category-info h6 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.1rem;
    color: var(--text-dark);
}

.category-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Registration Section --- */
.registration-section {
    padding: 1rem 0;
}

.registration-section .section-subtitle {
    color: var(--text-light);
}

.steps-container {
    list-style: none;
    padding-left: 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.step-content-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;

}

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.2rem;
}

.icon-blue {
    background-color: #3498db;
}

.icon-orange {
    background-color: #e67e22;
}

.icon-green {
    background-color: #2ecc71;
}

.icon-pink {
    background-color: #e91e63;
}

.icon-purple {
    background-color: #9b59b6;
}

.step-text h6 {
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.step-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.image-collage-wrapper {
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.collage-img-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.collage-img-2 {
    position: absolute;
    right: -20px;
    bottom: 250px;
    width: 75%;
    max-width: 350px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.students-card {
    position: absolute;
    bottom: -60px;
    left: -36px;

    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.avatar-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.students-text {
    font-weight: 600;
    font-size: 0.8rem;
    margin-left: 0.75rem;
}

/* --- Creators Section --- */
.creators-section {
    padding: 2rem 0;
}

.creators-section .section-subtitle {
    font-weight: 500;
    color: var(--text-muted);
}

.avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    padding: 6px;
}

.avatar-wrapper.border-orange {
    background: conic-gradient(from 90deg, var(--orange) 270deg, transparent 270deg);
}

.avatar-wrapper.border-magenta {
    background: conic-gradient(from 180deg, var(--magenta) 270deg, transparent 270deg);
}

.avatar-wrapper.border-green {
    background: conic-gradient(from 270deg, var(--green) 270deg, transparent 270deg);
}

.avatar-wrapper.border-blue {
    background: conic-gradient(from 0deg, var(--blue) 270deg, transparent 270deg);
}

.creator-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--background-color);
}

.creator-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.creator-expertise {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: c;
}

.text-orange {
    color: var(--orange);
}

.text-magenta {
    color: var(--magenta);
}

.text-green {
    color: var(--green);
}

.text-blue {
    color: var(--blue);
}

/* --- Review Section --- */
.review-section {
    padding: 3rem 0;
}

.review-section .section-title {
    margin-bottom: 1rem;
}

.review-section .section-subtitle {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}



.review-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    padding: 1rem;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.review-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #f0f0f0;
}

.reviewer-info .name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.reviewer-info .date {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.star-rating {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--secondary-color);
    flex-grow: 1;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#dcedf3 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.faq-section::after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 30px;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#dcedf3 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

.faq-content .subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-content .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #212529;
    margin-bottom: 30px;
}

.faq-content .title .highlight {
    color: #ff6b81;
    position: relative;
    display: inline-block;
}

.faq-content .title .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%2320c997' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 20px;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-header {
    margin: 0;
}

.custom-accordion .accordion-button {
    border-radius: 10px;
    font-weight: 600;
    color: #343a40;
    background-color: #fff;
    box-shadow: none;
    padding: 1rem 1.25rem;
}

.custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: #20c997;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #20c997;
    color: white;
    border-radius: 10px 10px 0 0;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background-color: #fff;
    color: #6c757d;
    border-radius: 0 0 10px 10px;
    padding: 1.25rem;
}

.custom-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    transform: rotate(-180deg);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

/* --- Featured Programs Section --- */
.featured-programs-section {
    padding: 15px 0;
}



.featured-programs-section .section-subtitle {
    margin-bottom: 20px;
}

.btn-view-all .fa-arrow-right {
    margin-left: 8px;
}

.course-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    object-fit: cover;
    height: 180px;
}

.course-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.card-meta span i {
    margin-right: 6px;
}

.course-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    color: #212529;
    margin-bottom: 10px;
}

.course-card .card-text {
    color: #6c757d;
    font-size: 0.8rem;
    flex-grow: 1;
}

.btn-enroll {
    background-color: #19b59b;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Course Details Page --- */
.course-section {
    padding: 60px 0;
}

.course-details-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 20px;
}

.course-details-card img {
    height: 250px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.course-details-card h4 {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.course-details-card .btn-buy {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
}

.course-meta-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.course-meta-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
}

.course-meta-list li:last-child {
    border-bottom: none;
}

.course-meta-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

.course-meta-list li .meta-label {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.course-meta-list li .meta-value {
    font-weight: 500;
    color: var(--text-dark);
}

.share-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-content h2 {
    margin-bottom: 15px;
}

.course-content h3 {
    margin-top: 40px;
    margin-bottom: 25px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.course-acquire-list {
    list-style: none;
    padding-left: 0;
}

.course-acquire-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #495057;
}

.course-acquire-list .icon-check {
    background-color: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}



.comment-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content .user-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.comment-actions a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.comment-form .form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.comment-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 181, 155, 0.25);
    border-color: var(--primary-color);
}

.comment-form .btn-submit {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.comment-form .btn-submit:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.heading {
    color: #19b59b;
}

/* --- Success Stories Section --- */
.success-stories-section {
    padding: 0px 0;
}

.success-stories-section .section-header {
    text-align: center;
    margin-top: 20px;
}

.success-stories-section .section-header .section-title {
    position: relative;
    padding-bottom: 15px;
}

.testimonial-grid {
    column-count: 3;
    column-gap: 24px;
}

.testimonial-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
}

.video-card {
    position: relative;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--white-color);
}

.text-card-body {
    padding: 24px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.author-info .author-name {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0;
}

.author-info .author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.video-modal .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

.video-modal .modal-content {
    background-color: #000;
    border: none;
    border-radius: 10px;
}

.video-modal .modal-header {
    border-bottom: none;
    padding: 10px 15px;
}

.video-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.video-modal .modal-body {
    padding: 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal .modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Contact Page --- */
.contact-form h2,
.contact-info h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #495057;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #19b59b;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

.contact-form .btn-send {
    background-color: #19b59b !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    width: 100%;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-form .btn-send:hover {
    background-color: #0b5ed7;
}

.contact-form .btn-send i {
    margin-right: 8px;
}

.info-card {
    background-color: #f0f4f8;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.info-card .icon-wrapper {
    background-color: #e2eafc;
    color: #19b59b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.info-card h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.info-card a {
    color: #19b59b;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background-color: #e9ecef;
    border-radius: 12px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

/* --- Gallery Section --- */
/* --- NEW GRID STYLES --- */

.gallery-grid {
    display: grid;
    /* Creates responsive columns. 
      - 'auto-fill': Fit as many columns as possible.
      - 'minmax(250px, 1fr)': Each column will be at least 250px wide and can grow to fill available space.
    */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    /* Spacing between grid items */
}

/* Style for the direct children (img and video) of the grid.
  This ensures each item has a fixed height and fills its grid cell.
*/
.gallery-grid>img,
.gallery-grid>video {
    width: 100%;
    /* Make item fill the column width */
    height: 300px;
    object-fit: cover;
    /* Prevents stretching by cropping the image/video to fit */
    border-radius: 10px;
    background-color: #eee;
    /* A light background for empty src attributes */
}


/* --- UTILITY CLASS (No changes needed here) --- */

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Footer --- */
.footer-section {
    background-color: #fff9f9;
    color: #000000;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-section h5 {
    color: #19b59b;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 50px;
    background-color: #19b59b
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: #19b59b;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #19b59b;
    color: #ffffff;
    margin-right: 10px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #19b59b;
    color: #ffffff;
}

.newsletter-form .form-control {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
}

.newsletter-form .form-control:focus {
    color: #000000;
    border-color: #ffffff;
    box-shadow: none;
}

.newsletter-form .btn {
    background-color: #19b59b;
    border-color: #19b59b;
}

.footer-bottom {
    background-color: #ffffff;
    padding: 20px 0;
    margin-top: 10px;
    font-size: 0.9rem;
}



/* about Section  */





/* --- About Us Page --- */

.text-highlight {
    color: var(--primary-color);
}

.lead {
    font-size: 1rem;
    color: var(--text-muted);
}


/* --- Story Section --- */
.our-story-section {

    padding: 2.5rem 1.25rem;
    background-color: #f8f9fa;
    /* Consider adding this color as a variable, e.g., --light-gray-bg */
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--heading-color);
}

.story-text {
    font-size: 1rem;
    color: var(--text-dark);
}

.stats_div {
    border: 1px solid var(--border-color);
    height: auto;
    padding: 0.75rem;
    margin: 0.75rem;
    border-radius: 8px;
}

.stat-item {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.store-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* --- Core Values Section --- */
.core-values-section {
    background-color: #f5f7fa;
    text-align: center;
}

.core-values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

.core-values-section p.subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    /* margin-bottom: 2.5rem; */
    text-align: center;
}


.value-card {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: #19b59b;
}

.value-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.value-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Delays */
.value-card:nth-child(1) {
    animation-delay: 0.2s;
}

.value-card:nth-child(2) {
    animation-delay: 0.4s;
}

.value-card:nth-child(3) {
    animation-delay: 0.6s;
}

.value-card:nth-child(4) {
    animation-delay: 0.8s;
}

/* --- Journey / Timeline Section --- */


.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 1.25rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1.25rem 2.5rem;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-color);
    border: 4px solid var(--white-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 1rem 1.25rem;
    background: var(--white-color);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}


.terms-container {
    max-width: 1400px;
    margin: 0 auto;
    /* Center the container */
    padding: 2.5rem;
}

.main-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #212529;
}

.tc-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    /* Underline for section titles */
    color: #343a40;
}

p {
    line-height: 1.7;
    /* Increased line spacing for better readability */
    text-align: justify;
    margin-bottom: 1rem;
}

/* Responsive Css */

@media (max-width: 1199.98px) {
    .floating-card {
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
    }

    .card-students {
        left: -20px;
    }

    .floating-card .icon {
        width: 32px;
        height: 32px;
        /* Updated from 1rem to 1.1rem for slightly better visibility */
        font-size: 1.1rem;
    }

    .card-ux .icon {
        width: 32px;
        height: 32px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    /* --- LinkedIn-Inspired Unified Mobile & Tablet Typography --- */
    /* Base & Paragraphs */
    p,
    .hero-subheading,
    .lead {
        font-size: 1rem;
        /* 16px */
        line-height: 1.6;
    }

    /* Headings */
    .hero-heading {
        font-size: 2rem;
        /* 36px */
    }

    .section-title,
    .about-content h2,
    .faq-content .title,
    .story-title,
    .main-title {
        font-size: 1.75rem;
        /* 28px */
    }

    .tc-section-title,
    .core-values-section h2 {
        font-size: 1.5rem;
        /* 24px */
    }

    .course-details-card h4 {
        font-size: 1.25rem;
        /* 20px */
    }

    h5,
    .feature-card h5,
    .value-title,
    .timeline-content h5 {
        font-size: 1.125rem;
        /* 18px */
    }

    h6,
    .category-info h6,
    .step-text h6,
    .course-card .card-title,
    .creator-name {
        font-size: 1rem;
        /* 16px */
    }

    /* Smaller & Utility Text */
    .section-subtitle,
    .stat-text,
    .feature-card p,
    .about-content .about-us-tag,
    .category-info p,
    .step-text p,
    .creator-expertise,
    .faq-content .subtitle,
    .card-meta,
    .course-card .card-text,
    .author-info .author-title,
    .stat-label,
    .value-text,
    .timeline-content p,
    .floating-card .text-content,
    .reviewer-info .date,
    .comment-actions a,
    .students-text {
        font-size: 0.875rem;
        /* 14px */
    }

    .review-text,
    .testimonial-text {
        font-size: 0.95rem;
        /* ~15px */
    }

    /* Large Numbers / Special Text */
    .stat-number {
        font-size: 2rem;
        /* 32px */
    }

    .mobile-offcanvas .nav-link {
        font-size: 1.1rem;
    }

    /* --- End of Typography Overrides --- */

    .hero-section {
        text-align: center;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .about-section {
        padding: 1rem 0 0 0;
        position: relative;
        overflow: hidden;
    }

    .checklist {
        display: inline-block;
        text-align: left;
    }

    .wavy-underline {
        margin: 0 auto 1.5rem auto;
    }

    .testimonial-grid {
        column-count: 1;
    }

    .floating-card {
        display: none;
    }

    /* Hide floating cards on mobile */
    .hero-image-wrapper {
        min-height: auto;
    }

    .stat-card-section .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .steps-container {
        padding-left: 20px;
    }

    .step-item,
    .step-item:nth-child(even) {
        flex-direction: row;
    }

    .step-number {
        /* Increased from 2.5rem to 2.8rem to make it a key visual element */
        font-size: 2.8rem;
    }

    .step-content-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .image-collage-wrapper {
        display: none;
    }

    /* Hide complex collage */
    .testimonial-grid {
        column-count: 1;
    }

    .timeline::after {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 15px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 1px;
    }

    .footer-section .col-lg-4:first-child h5 {
        margin-top: 0;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .newsletter-form {
        justify-content: center;
        margin-top: 0;
    }

    .footer-section h5::after {
        display: none;
    }

}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        background: var(--background-color);
    }

    .container {
        max-width: 570px;
    }

    .hero-section {
        text-align: start;
        padding: 1rem 0.5rem;
    }

    .hero-heading {
        text-align: start;
    }

    .hero-subheading {
        text-align: start;
        line-height: 1.5;
    }

    .hero-image {
        height: 290px;
        border-radius: 20px;
        position: relative;
        z-index: 5;
    }

    .about-section {
        padding: 10px 0;
    }

    .about-content {
        text-align: start;
        padding: 10px 10px;
    }

    .checklist {
        margin-bottom: 10px;
    }

    .wavy-underline {
        display: none;
    }

    .hero-image-wrapper {
        padding: 0;
        margin: 0;
    }

    .step-content-card {
        background-color: var(--white-color);
        border-radius: 12px;
        padding: 0.6rem 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        text-align: start;
    }

    .category-section,
    .registration-section,
    .creators-section,
    .review-section,
    .faq-section {
        padding: 0.5rem 0;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-card-section {
        padding: 0;
    }

    .stat-card-wrapper {
        position: relative;
    }

    .stat-card-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        border: 1px solid;
        border-color: transparent;
        z-index: 1;
    }

    .stat-card {
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        position: relative;
        z-index: 2;
    }

    .stat-icon {
        /* Increased from 1.75rem to 2rem to match the larger stat number */
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .stat-number {
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .stat-text {
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #6c757d;
        margin-bottom: 0;
        text-align: center;
    }
}


/* modal css */




.modal-dialog {
    max-width: 440px;
}

.custom-modal-content {
    background-color: #eaf5ff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem 0.5rem;
}

.modal-header .modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.modal-header .btn-close {
    background-color: #d1e0ee;
    border-radius: 50%;
    padding: 0.5rem;
    opacity: 1;
}

.modal-body {
    padding: 0.5rem 2rem 2rem;
}

/* Agent and User Avatars */
.agent-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-icon-wrapper {
    background-color: #67f56e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fcfcfc;
}

.user-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #cde6ff;
    /* Light blue for user icon background */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    font-size: 2.8rem;
    color: #fff;
}

.avatar-name {
    font-size: 0.9rem;
    color: #333;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}

/* Message Text */
.busy-message {
    color: #039d55;
    /* Red color for the message */
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.callback-message {
    color: #5f6368;
    font-size: 0.9rem;
}

/* Form Styling */
.form-label-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.input-group .form-control,
.input-group .input-group-text {
    border: 1px solid #ced4da;
    background-color: #fff;
    box-shadow: none;
    padding: 0.6rem 0.75rem;
}

.input-group .input-group-text {
    border-right: 0;
}

.input-group .form-control {
    border-left: 0;
}

.input-group .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
}

.form-control::placeholder {
    color: #adb5bd;
}

.btn-submit {
    background-color: #34a853;
    /* Green submit button */
    color: white;
    font-weight: bold;
    padding: 0.6rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #2c8f45;
    color: white;
}

/* enroll model  */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Show modal */
.modal-overlay.active {
    display: flex;
}

/* Modal Container */
.modal-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    position: relative;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo */
.enroll-logo {
    width: 115px;
    height: auto;
 }


/* Input Group */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.phone-input-wrapper:focus-within {
    border-color: #2962FF;
    box-shadow: 0 0 0 2px rgba(41, 98, 255, 0.2);
}


/* Primary Button */
.btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #2962FF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0039cb;
}


/* Optional: Close Button (if added later) */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    font-weight: bold;
}

.modal-close:hover {
    color: #2962FF;
}