/* =====================================================
   COURSES PAGE BANNER SECTION
===================================================== */
.courses-page-banner {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #00c89a 100%);
    padding: 45px 0px;
    overflow: hidden;
}

.courses-banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.courses-banner-shapes .courses-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.courses-banner-shapes .courses-shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    left: 10%;
    animation: courses-float 8s ease-in-out infinite;
}

.courses-banner-shapes .courses-shape-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: 15%;
    animation: courses-float 6s ease-in-out infinite reverse;
}

.courses-banner-shapes .courses-shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: courses-pulse 4s ease-in-out infinite;
}

@keyframes courses-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes courses-pulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50%) scale(1.15);
        opacity: 1;
    }
}

.courses-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.courses-breadcrumb-nav {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.courses-breadcrumb {
    margin: 0;
    justify-content: center;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    border-radius: 33px;
    padding: 5px 10px;
    list-style: none;
    display: flex;
    align-items: center;
}

.courses-breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.courses-breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.courses-breadcrumb-item a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.courses-breadcrumb-item a:hover {
    color: var(--white);
}

.courses-breadcrumb-item a:hover::after {
    width: 100%;
}

.courses-breadcrumb-item.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.courses-breadcrumb-item+.courses-breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    padding: 0 8px;
}

.courses-banner-title {
    font-family: var(--title-font);
    font-size: 45px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: courses-fadeInUp 0.8s ease;
    letter-spacing: -1px;
}

.courses-banner-subtitle {
    font-family: var(--body-font);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: courses-fadeInUp 0.8s ease 0.2s both;
}

@keyframes courses-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   COURSES SECTION
===================================================== */
.courses-section {
    background: #f9fafb;
    padding: 60px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* =====================================================
   COURSE CARD STYLES
===================================================== */
.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: courses-fadeInUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: rgba(0, 200, 154, 0.2);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-meta-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-light);
}

.course-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-author i {
    color: var(--primary-color);
    font-size: 12px;
}

.course-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-date i {
    color: var(--primary-color);
    font-size: 12px;
}

.course-title {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.course-price-text {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

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

.btn-primary-crs {
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-primary-crs:hover {
    background: #00b389;
    border-color: #00b389;
    box-shadow: 0 6px 20px rgba(0, 200, 154, 0.4);
    color: var(--white);
}

.btn-outline {
    flex: 1;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 200, 154, 0.4);
}

/* =====================================================
   COURSE DETAILS PAGE STYLES - DESIGN 5: MODERN GRADIENT
===================================================== */
.course-details-section {
    background: #f9fafb;
    padding: 60px 0;
}

.course-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 30px;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 200, 154, 0.1));
    pointer-events: none;
}

.course-hero .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.course-hero .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-hero .course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 154, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(0, 200, 154, 0.3);
}

.course-hero .course-title {
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-hero .course-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-hero .course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.course-hero .course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.course-hero .course-meta i {
    color: var(--primary-color);
    font-size: 16px;
}

.course-hero .hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.course-hero .hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgb(0 200 154 / 42%));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.course-hero .hero-image-container:hover::before {
    opacity: 1;
}

.course-hero .course-hero-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-hero .hero-image-container:hover .course-hero-image {
    transform: scale(1.07);
}

.course-hero .play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.course-hero .play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 200, 154, 0.5);
    margin: 0 auto 15px;
}

.course-hero .hero-image-container:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 200, 154, 0.7);
}

.course-hero .play-button i {
    margin-left: 5px;
}

.course-hero .watch-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.course-hero .hero-image-container:hover .watch-text {
    opacity: 1;
    transform: translateY(0);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.video-modal iframe {
    width: 100%;
    height: 70vh;
    max-height: 675px;
    border: none;
}

/* Main Content Grid */
.course-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

/* Tabs Section */
.course-tabs {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
}

.tab-button {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-button.active {
    color: var(--primary-color);
    background: var(--white);
}

.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Overview Tab */
.overview-content h3 {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.overview-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Curriculum Tab */
.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.curriculum-item:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 200, 154, 0.1);
}

.curriculum-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.lesson-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
}

.lesson-title {
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.lesson-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.lesson-duration i {
    color: var(--primary-color);
}

.lesson-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 44px;
}

/* Sidebar - Dark Mode Premium Design */
.course-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 200, 154, 0.2) 0%, transparent 70%);
}

.sidebar-card .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 154, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 200, 154, 0.3);
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0px auto 10px;
}

.sidebar-card .price-section {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.sidebar-card .price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0px;
}

.sidebar-card .price-amount {
    font-family: var(--title-font);
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.sidebar-card .price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-card .price-details .divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-card .course-includes {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.sidebar-card .course-includes h4 {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.sidebar-card .includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card .includes-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card .includes-item:last-child {
    border-bottom: none;
}

.sidebar-card .includes-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.sidebar-card .cta-button {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sidebar-card .cta-button:hover {
    background: #00b389;
    border-color: #00b389;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 154, 0.5);
    color: var(--white);
}

.sidebar-card .cta-button-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar-card .cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.sidebar-card .security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.sidebar-card .security-note i {
    color: var(--primary-color);
}

/* =====================================================
   RESPONSIVE STYLES
===================================================== */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .course-content-grid {
        grid-template-columns: 1fr;
    }

    .course-sidebar {
        position: relative;
        top: 0;
    }

    .course-hero .hero-inner {
        grid-template-columns: 1fr;
    }

    .course-hero .course-hero-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {


    .courses-banner-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .courses-banner-subtitle {
        font-size: 16px;
    }

    .courses-breadcrumb {
        padding: 8px 16px;
        font-size: 13px;
    }

    .courses-banner-shapes .courses-shape-1 {
        width: 180px;
        height: 180px;
    }

    .courses-banner-shapes .courses-shape-2 {
        width: 120px;
        height: 120px;
    }

    .courses-banner-shapes .courses-shape-3 {
        width: 80px;
        height: 80px;
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    .course-content {
        padding: 18px;
    }

    .course-title {
        font-size: 17px;
        min-height: 48px;
    }

    .btn-primary-crs,
    .btn-outline {
        padding: 11px 18px;
        font-size: 13px;
    }

    .course-hero .hero-inner {
        gap: 30px;
        padding: 40px 30px;
    }

    .course-hero .course-title {
        font-size: 32px;
    }

    .course-hero .course-hero-image {
        min-height: 350px;
    }

    .course-hero .play-button {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-button {
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-button.active::after {
        display: none;
    }

    .tab-content {
        padding: 20px;
    }

    .sidebar-card {
        padding: 25px;
    }

    .sidebar-card .price-amount {
        font-size: 44px;
    }

    .lesson-description {
        padding-left: 0;
        margin-top: 10px;
    }

    .video-modal-close {
        top: -45px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .courses-banner-title {
        font-size: 28px;
        letter-spacing: -0.3px;
    }

    .courses-banner-subtitle {
        font-size: 14px;
    }

    .courses-breadcrumb {
        font-size: 12px;
        padding: 6px 14px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-image {
        height: 180px;
    }

    .course-content {
        padding: 16px;
    }

    .course-buttons {
        flex-direction: column;
    }

    .btn-primary-crs,
    .btn-outline {
        width: 100%;
        padding: 12px 20px;
    }

    .course-hero .hero-inner {
        padding: 30px 20px;
    }

    .course-hero .course-title {
        font-size: 28px;
    }

    .course-hero .course-meta {
        flex-direction: column;
        gap: 12px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .sidebar-card .price-amount {
        font-size: 40px;
    }
}

    /* Video Modal Styles */
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .video-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
    }

    .video-modal-content {
      position: relative;
      width: 991px;
      max-width: 991px;
      aspect-ratio: 16 / 9;
      background-color: #000;
      border-radius: 12px;
      overflow: hidden;
      transform: scale(0.9);
      transition: transform 0.3s ease;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .video-modal.active .video-modal-content {
      transform: scale(1);
    }

    .video-modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0, 0, 0, 0.7);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      font-size: 24px;
      cursor: pointer;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .video-modal-close:hover {
      background-color: rgba(0, 0, 0, 0.9);
      border-color: rgba(255, 255, 255, 0.6);
      transform: rotate(90deg);
    }

    .video-modal iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Hero Image Container Cursor */
    .hero-image-container {
      cursor: pointer;
      position: relative;
    }

    /* Play Button Styles */
    .play-button-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      pointer-events: none;
    }

    .play-button {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-image-container:hover .play-button {
      transform: scale(1.1);
      background: #fff;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .play-button i {
      font-size: 28px;
      color: #1a1a1a;
      margin-left: 5px;
    }

    .watch-text {
      font-size: 16px;
      font-weight: 600;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      letter-spacing: 0.5px;
    }

    /* Responsive Design */
    /* Medium devices (tablets) - 576px to 991px */
    @media (max-width: 991px) {
      .video-modal-content {
        width: 576px;
        max-width: 576px;
        border-radius: 10px;
      }
    }

    /* Small devices (phones) - below 576px = full width */
    @media (max-width: 576px) {
      .video-modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 100vh;
        aspect-ratio: auto;
      }

      .video-modal-close {
        top: 10px;
        right: 10px;
      }
    }