@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Slab:wght@100..900&display=swap');

body {
    font-family: "Carlito", sans-serif;
}

/* <========================Slider======================> */
.slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.main-slider {
    position: relative;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    z-index: 1;
}

.main-slider img,
.main-slider video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    height: 60vh;
}

.card-strip {
    position: absolute;
    bottom: 2%;
    right: 2%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 10;
}

.card-strip .card {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.card-strip .card.active {
    border: 2px solid #fff;
}

.card-strip .card img,
.card-strip .card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 20;
}

.nav-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

/* Tablet View */
@media(max-width: 991px) {

    .main-slider {
        max-height: 60vh;
    }

    .card-strip {
        bottom: 1.5%;
        right: 1.5%;
    }

    .card-strip .card {
        width: 70px;
        height: 105px;
    }
}

@media(max-width: 901px) {
    .slider-wrapper {
        margin-top: 50px;
    }
}

/* Mobile View */
@media(max-width: 576px) {
    .main-slider {
        max-height: 50vh;
    }

    .card-strip {
        position: static;
        margin-top: 10px;
        justify-content: center;
        padding: 0 10px;
    }

    .card-strip .card {
        width: 60px;
        height: 50px;
    }

    .nav-buttons {
        padding: 0 10px;
    }

    .nav-buttons button {
        font-size: 18px;
        padding: 8px 12px;
    }

    .card-strip {
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .card-strip::-webkit-scrollbar {
        display: none;
    }

    .card-strip .card {
        flex: 0 0 auto;
    }
}

/* <=========================================> */

/* <==========DigitalMarketingCourseExplore============> */
.graduation-course {
    background: #f0f4f8;
    box-shadow: inset 0 0 10px #ccc;
    padding: 40px 20px;
}

.graduactionCourse-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.graduactionCourse-heading h1 {
    color: #333;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.graduation-course .CourseExplorecourse-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.graduation-course .course-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.graduation-course .course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.graduation-course .badge {
    display: inline-block;
    background-color: #ffebee;
    color: #d32f2f;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    align-self: flex-start;
}

.graduation-course .course-title {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
}

.graduation-course .course-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #555;
    font-size: 15px;
}

.graduation-course .course-details div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.graduation-course .course-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
@media (max-width: 600px) {
   .graduation-course .course-actions {
 
    flex-wrap: nowrap;
}
}
.graduation-course .course-actions a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.graduation-course .view-btn {
    background: transparent;
    color: #2b4c5f;
    border-color: #2b4c5f;
}

.graduation-course .view-btn:hover {
    background: #2b4c5f;
    color: white;
}

.graduation-course .brochure-btn {
    background: #2b4c5f;
    color: white;
}

.graduation-course .brochure-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .graduation-course .graduactionCourse-heading h1 {
        font-size: 22px;
        padding: 10px 20px;
    }

    .graduation-course .course-actions {
        flex-direction: column;
        gap: 10px;
    }

    .graduation-course .course-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .graduactionCourse-heading h1 {
        font-size: 18px;
        padding: 8px 16px;
    }

    .graduation-course .course-title {
        font-size: 16px;
    }

    .graduation-course .course-details {
        font-size: 14px;
    }

    .graduation-course .course-details div {
        font-size: 14px;
    }
}


/* <=================================================> */
/* <===============Course Tab=================> */
.course-tab .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.course-tab h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.course-tab p {
    color: #666;
    margin-bottom: 30px;
}

.course-tab .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 25px;
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.course-tab .tab {
    padding-bottom: 8px;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    padding: 10px;
}

.course-tab .tab.active {
    color: #fff;
    background: #89d9bc;
    padding: 10px;
}

.course-tab .course-slider-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.course-tab .course-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
}

.course-tab .course-slider::-webkit-scrollbar {
    display: none;
}

.course-tab .course-wrapper {
    position: relative;
    display: inline-block;
}

.course-tab .course-card {
    width: 300px;
    border-radius: 8px;
    /* padding: 10px; */
    background: white;
    box-shadow: 2px 2px 2px 2px #ccc;
}

.course-tab .course-card img {
    width: 100%;
    height: 220px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.course-tab .course-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px;
}

.course-tab .course-card p {
    font-size: 16px;
    color: #555;
    margin: 0 10px 10px;
}

.course-tab .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    opacity: 0.7;
}

.course-tab .slider-btn.left {
    left: 10px;
}

.course-tab .slider-btn.right {
    right: 10px;
}

.course-tab .slider-btn:hover {
    opacity: 1;
}

.course-tab .card-buttons {
    padding: 10px;
    display: flex;
    gap: 10px;
}

.course-tab .course-card .btn-course-card {
    padding: 5px;
    border: none;
    border-radius: 4px;
}

.course-tab .premium {
    background: #2b4c5f;
    color: white;
    font-weight: bold;
}

.course-tab .bestseller {
    background: rgba(6, 138, 105, 0.445);
    color: rgb(3, 71, 48);
    font-weight: bold;
}

.course-tab .stars {
    padding-left: 15px;
}

.course-tab .stars i {
    color: rgb(255, 187, 0);
}

.course-tab .course-detail {
    position: absolute;
    top: 0;
    left: 260px;
    width: 320px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 20px;
}

.course-tab .course-wrapper:hover .course-detail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.course-tab .cart-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-tab .add-to-cart {
    background: #2b4c5f;
    color: white;
    padding: 12px;
    border: none;
    margin-top: 15px;
    width: 100%;
    border-radius: 5px;
}

.course-tab .graduation-course {
    padding: 10px;
}

.graduactionCourse-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.digital-container {
    max-width: 1500px;
    margin: auto;
    margin-top: 5%;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.digital-container .heading {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.digital-container .heading h2 {
    font-size: 32px;
    color: #1e2c91;
}

.digital-container .heading span {
    color: #f97316;
}

.digital-container .heading p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
}

.course-tab .card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-tab .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.course-tab .card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;

}

@media (min-width: 768px) {
    .course-tab .card {
        flex-direction: row;
    }
}

.course-tab .card-left {
    padding: 40px;
    flex: 1;
    animation: fadeInLeft 1s ease;
}

.course-tab .badge-background {
    background: linear-gradient(90deg, #ffe6c5, #ffedd5);
    width: 20%;
    display: flex;
    align-items: center;
}

.course-tab .badge {
    display: inline-block;
    color: #b45309;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.course-tab .card-left h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #111827;
}

.course-tab .details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.course-tab .detail-item {
    flex: 1 1 45%;
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #374151;
}

.course-tab .detail-item span {
    font-weight: 600;
    color: #111;
}

.course-tab .buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.course-tab .buttons a {
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.course-tab .view-btn {
    color: #2b4c5f;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
}

.course-tab .view-btn:hover {
    border: none;
    color: #fff;
    background-color: #2b4c5f;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
}

.course-tab .brochure-btn {
    border: none;
    color: #fff;
    background-color: #2b4c5f;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
}


.course-tab .card-right {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.course-tab .card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .course-tab .badge-background {
        background: linear-gradient(90deg, #ffe6c5, #ffedd5);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px
    }

    .course-tab .detail-item {
        flex: 1 1 100%;
    }

    .course-tab .buttons {
        flex-direction: row;
        gap: 10px;
    }

    .course-tab .card-left {
        padding: 25px;
    }
}

@media (max-width: 400px) {
    .course-tab .buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .course-tab .view-btn {
        width: 100%;
    }

    .course-tab .brochure-btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .course-tab .tab {
        font-size: 14px;
    }
}

/* <==================================> */
/* <==============brand===============> */
.trusted-section {
    background-color: #fff;
    padding: 30px 10px;
    text-align: center;
    overflow: hidden;
    /* Prevent screen shift */
}

.trusted-heading h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 700;
}

.brand-slider-wrapper {
    overflow: hidden;
    /* ✅ Prevent logos from overflowing screen */
    width: 100%;
    position: relative;
}

.brand-slider {
    display: flex;
    gap: 40px;
    animation: slideLogos 20s linear infinite;
    width: fit-content;
    min-width: 100%;
    /* ✅ Prevent cutoff */
}

.brand-slider img {
    height: 75px;
    max-width: 190px;
    object-fit: contain;
    transition: filter 0.3s;
    background: #fff;
    box-shadow: 2px 2px 2px 2px #ccc;
    border-radius: 5px;
    padding: 10px;
    flex-shrink: 0;
    /* ✅ Prevent shrinking on small screens */
}

.brand-slider img:hover {
    filter: grayscale(0%);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width: 768px) {
    .trusted-heading h2 {
        font-size: 18px;
        padding: 0 10px;
    }

    .brand-slider img {
        height: 60px;
        max-width: 130px;
    }
}

@media(max-width: 497px) {
    .brand-slider img {
        height: 45px;
        max-width: 90px;
    }
}

/* <==================================> */
/* <==============Trending==============> */
.top-courses {
    padding: 40px 20px;
    text-align: center;
}

.top-courses h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.top-courses p {
    color: #555;
    margin-bottom: 5px;
}

.top-courses .slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.top-courses .slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.top-courses .card {
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

.top-courses .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.top-courses .card-content {
    padding: 15px;
    text-align: left;
}

.top-courses .card-content .meta {
    font-size: 13px;
    color: #888;
}

.top-courses .card-content h3 {
    font-size: 16px;
    margin: 10px 0;
}

.top-courses .card-content .rating {
    font-size: 14px;
    color: #f39c12;
}

.top-courses .card-content p {
    font-size: 14px;
    color: #333;
}

.top-courses .course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.top-courses .price {
    color: #89d9bc;
    font-weight: bold;
}

.top-courses .enroll {
    text-decoration: none;
    font-weight: 500;
}

.top-courses .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.top-courses .nav.prev {
    left: 0;
}

.top-courses .nav.next {
    right: 0;
}

.add-to-cart {
    background: #2b4c5f;
    padding: 10px;
    border-radius: 25px;
    color: #fff;
    width: 90%;
    text-align: center;
}
.add-to-cart.add-to-cart-btn,.add-to-cart-btn,.brochure-btn{
    font-size: 12px;
    cursor: pointer;
    margin: 0;
}
.enroll {
    color: #2b4c5f;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}
.arrow,.slider-btn{
width: 53px;
}
.enroll:hover {
    background: #2b4c5f;
    color: #fff;
    padding: 10px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .top-courses .card {
        min-width: 80%;
    }
}

/* <==================================> */
/* <==============Why study with us==============> */
.why-study {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.why-study h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.why-study .subtitle {
    font-size: 1rem;
    margin-top: 10px;
    color: #666;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.feature-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: transparent;
    padding: 20px;
    text-align: center;
}

.feature-card .icon {
    background-color: #89d9bc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon img {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* <==================================> */
/* <=============Testimonials==============> */
.testimonials {
    padding: 10px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.testimonial-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 300px;
    min-width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.testimonial-card p {
    font-size: 18px;
    color: #333;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.avatar {
    background-color: #333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: bold;
}

.user-info {
    font-size: 16px;
}

.course-link {
    margin-top: 10px;
    color: #2b4c5f;
    font-weight: bold;
    text-decoration: none;
}

.course-link:hover {
    text-decoration: underline;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 55vw;
        min-width: 50vw;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 65vw;
        min-width: 60vw;
    }
}

/* <==================================> */
/* <==============Ads Banner============> */

.ad-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #89d9bc, #e6fff6);
    padding: 30px 40px;
    border-radius: 12px;
    color: #2b4c5f;
    max-width: 1200px;
    margin: 40px auto;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
}

.ad-content {
    flex: 1;
    min-width: 260px;
}

.ad-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ad-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ad-content .cta-btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #2b4c5f;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.ad-content .cta-btn:hover {
    background-color: #eee;
}

.ad-image {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.ad-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .ad-banner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
    }

    .ad-content h2 {
        font-size: 24px;
    }

    .ad-content p {
        font-size: 15px;
    }

    .ad-image img {
        max-width: 100%;
    }
}

/* <==================================> */
/* <==============Instructor=============> */
.instructor-section {
    background-color: #2b4c5f;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.instructor-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.text-content {
    flex: 1 1 500px;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.features-list li {
    font-size: 0.95rem;
    color: #fff;
}

.cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -10px;
    border: 2px solid #fff;
}

.more {
    background-color: #f28c7c;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 20px;
    margin-left: -10px;
}

.cta-button {
    background-color: #89d9bc;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #2b2b6f;
}

.image-content {
    position: relative;
    flex: 1 1 350px;
    text-align: center;
}

.instructor-img {
    width: 100%;
    max-width: 350px;
}

.money-icon {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 40px;
}

.growth-icon {
    position: absolute;
    bottom: 30px;
    right: 10%;
    width: 40px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .instructor-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-content {
        margin-top: 30px;
    }

    .text-content,
    .image-content {
        width: 100%;
    }

    .features-list {
        flex-direction: column;
    }

    .cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* <==================================> */
/* <==============University=============> */
/* Trusted By Section */
.trusted-by-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.trusted-by-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-heading {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 30px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-grid img {
    height: 40px;
    object-fit: contain;
    max-width: 120px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo-grid {
        gap: 25px;
    }

    .logo-grid img {
        height: 30px;
        max-width: 90px;
    }
}

@media screen and (max-width: 480px) {
    .trusted-heading {
        font-size: 1rem;
    }

    .logo-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* <==================================> */

 .slider-image {
    width: 100%;
    height: 450px;
  }
  .slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

@media (max-width: 987px) {

 .slider-image {
    width: 100%;
    height: 300px;
  }

}
@media (max-width: 487px) {
  .slider-image {
    width: 100%;
    height: 160px;
  }
  .slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



.owl-nav button {
  height: 40px !important;
  width: 40px !important;
  top: 40%;
  background: rgba(255, 255, 255, 0.255) !important;
  border-radius: 50% !important;
  font-size: 32px !important;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.owl-nav button:hover {
  background: white !important;
  color: #000;
}
.owl-theme .owl-dots .owl-dot span {
  background: orange;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: black;
}

.owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.owl-nav .owl-prev i {
  position: relative !important;
  top: -4px !important;
  left: -1px;
}
.owl-nav .owl-next {
  position: absolute;
  right: 0;
}

.owl-nav .owl-next i {
  position: relative !important;
  top: -4px !important;
  right: -2px;
}
.owl-dots {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
