/* Gallery Section Enhanced with Better Proportions */
.course-gallery {
    padding: 60px 0;
    background: #ffffff;
}

.gt-container {
    width: 85%;
    margin: auto;
    max-width: 1200px;
}

.gt-title {
    font-size: 32px;
    font-weight: 600;
    color: #d9534f;
}


/* Accordion Item */
.gt-acc-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

/* Button */
.gt-acc-header {
    width: 100%;
    background: #fff;
    border: none;
    padding: 15px 18px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gt-icon {
    font-size: 20px;
    color: #d9534f;
    transition: 0.3s;
    font-weight: bold;
}

/* Hidden content */
.gt-acc-content {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 18px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active dropdown */
.gt-acc-item.active .gt-acc-content {
    padding: 15px 18px;
    max-height: 500px;
}

.gt-acc-item.active .gt-icon {
    transform: rotate(45deg);
}

.gt-curriculum-title {
    font-size: 20px;
    font-weight: 600;
    color: #d9534f;
    margin-bottom: 20px;
}

.display-flex {
    display: flex;
    gap: 20px;
}

@media(max-width: 768px) {
    .gt-curriculum-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.gallery-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 700;
}

/* Gallery Container with Better Spacing */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Main Gallery Layout */
.main-gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Large Main Images */
.gallery-main-large {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 350px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.gallery-main-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main-large:hover img {
    transform: scale(1.05);
}

/* Side Images Grid */
.side-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-item-small {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 167px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.gallery-item-small:hover img {
    transform: scale(1.08);
}

/* Thumbnails Strip */
.gallery-thumbs-wrapper {
    margin: 15px 0 30px;
    padding: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

.thumb-item {
    flex: 0 0 100px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-item:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.thumb-item.active {
    border-color: #e74c3c;
    transform: scale(1.05);
}

/* Course Info Cards */
.course-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}



.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.35);
    background: #f36c5d;
}

.info-card .info-icon {
    font-size: 20px;

}

/* Section as Card/Page look */
.content-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10), 0 1.5px 4px rgba(44, 62, 80, 0.04);
    margin: 40px 0;
    padding: 40px 32px;
    border: none;
    position: relative;
    transition: box-shadow 0.3s;
}

.content-section:hover {
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.14), 0 2px 8px rgba(44, 62, 80, 0.06);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00 60%, #1abc9c 100%);
    border-radius: 2px;
    margin-bottom: 28px;
}

/* Overview Section Styles */
#overview.content-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10), 0 1.5px 4px rgba(44, 62, 80, 0.04);
    margin: 40px 0;
    padding: 40px 32px;
    border: none;
    position: relative;
    transition: box-shadow 0.3s;
}

#overview .section-title {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/*#overview .divider {*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    border-radius: 2px;*/
/*    margin-bottom: 28px;*/
/*}*/



#overview .overview-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 13px;
}

.overview-main-video {
    margin: 28px 0 12px 0;
}

.overview-video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    /* padding: 12px; */
    margin-bottom: 12px;
}

.overview-video-card iframe {
    border-radius: 8px;
    width: 100%;
    display: block;
}

.overview-video-caption {
    text-align: center;
    font-size: 0.98rem;
    color: #c0392b;
    margin-top: 6px;
}

.overview-student-title {
    font-size: 15px;
    font-weight: 600;
    margin: 18px 0 10px 0;
}

.overview-student-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Short Videos Section Styles */
.included-short-videos-row {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.short-video-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
    padding: 0;
    width: 23%;
    min-width: 160px;
    aspect-ratio: 9/16;
    overflow: hidden;
    border: 2px solid #eee;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    align-items: stretch;
}

.short-video-card:hover {
    box-shadow: 0 4px 18px rgba(192, 57, 43, 0.18);
    border-color: #c0392b;
}

.short-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    aspect-ratio: 9/16;
    background: #000;
}

@media (max-width: 900px) {
    .included-short-videos-row {
        gap: 10px;
    }

    .short-video-card {
        width: 48%;
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .included-short-videos-row {
        flex-direction: column;
        gap: 10px;
    }

    .short-video-card {
        width: 100%;
        min-width: 100px;
        aspect-ratio: 9/16;
    }
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-container {
        padding: 0 20px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .main-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-main-large {
        height: 250px;
    }

    .side-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item-small {
        height: 120px;
    }

    .thumb-item {
        flex: 0 0 80px;
        height: 60px;
    }

    .course-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.3rem;
    }

    .gallery-main-large {
        height: 200px;
    }

    .gallery-item-small {
        height: 100px;
    }

    .gallery-thumbs {
        gap: 5px;
    }
}

/* Course Details Section Styles */
.course-details-section {
    padding: 60px 0;
    background: #f9f9f9;
    position: relative;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* Sidebar Wrapper for proper positioning */
.sidebar-wrapper {
    position: relative;
    height: 100%;
}

/* Sidebar Styles - Fixed Position within section */
.details-sidebar {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 0;
    position: sticky;
    top: 80px !important;
    height: fit-content;
    max-height: calc(80vh - 40px);
    overflow-y: auto;
}


.course-nav-item i {
    font-size: 1.1em;
    min-width: 22px;
    text-align: center;
}

.course-nav-item:hover,
.course-nav-item.active {
    background: #fff5f0;
    color: #c0392b;
    border-left: 3px solid #c0392b;
}

.sidebar-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    text-align: center;
    padding: 18px 10px 10px 10px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
}

.sidebar-apply-btn {
    width: calc(100% - 40px);
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin: 24px 20px 0 20px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.sidebar-apply-btn:hover {
    background: #229954;
}

@media (max-width: 992px) {
    .details-sidebar {
        display: none !important;
    }
}

/* Content Area Styles */
.details-content {
    background: white;
    /* border: 1px solid #e0e0e0; */
    padding: 0;
}

.content-hero-image {
    margin: 0;
}

.content-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

/*.divider {*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: #ff8c00;*/
/*    margin-bottom: 20px;*/
/*}*/

.overview-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    /*color: #555;*/
    font-size: 15px;

}

.lead-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Course Info Table */
.course-info-table {
    margin-top: 30px;
}

.table-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.table-title span {
    color: #ff8c00;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table .label {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.info-table .value {
    color: #666;
}

/* Schedule Table Styles */
.schedule-container {
    margin-top: 20px;
}

.schedule-note {
    background: #fff5f0;
    padding: 12px;
    border-radius: 3px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.schedule-note sup {
    color: #ff8c00;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    display: block;
}

.schedule-table table {
    width: 100%;
    min-width: 600px;
}

.schedule-table th,
.schedule-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.schedule-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.price-highlight {
    background: #ff8c00;
    color: white;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
    position: relative;
}

.price-highlight del {
    color: #ffcccc;
    font-size: 0.85rem;
}

.book-now-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.book-now-btn:hover {
    background: #229954;
}

/* Room Images */
.room-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.room-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h4 {
    font-size: 1rem;
    color: #333;
    margin: 15px;
    font-weight: 600;
}

.room-card ul {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
}

.room-card li {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.room-card li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.deposit-note {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 3px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.fee-inclusion {
    margin: 25px 0;
}

.fee-inclusion h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.fee-inclusion p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.mobile-nav-toggle i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.active i {
    transform: translateY(-50%) rotate(180deg);
}

/* What is included section styles */
#included.content-section {
    margin-top: 40px;
}

.included-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c0392b;
}

.included-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #c0392b;
    font-weight: 500;
    gap: 10px;
    padding: 6px 0;
}

.included-feature i {
    font-size: 1.15em;
    min-width: 22px;
}

.included-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}

.included-video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.included-video-card iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 140px;
    background: #000;
}

.included-video-caption {
    text-align: center;
    font-size: 0.93rem;
    color: #c0392b;
    margin-top: 4px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .included-videos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .included-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .included-videos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .details-sidebar {
        display: none !important;
    }

    .details-content {
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07) !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    .content-section {
        padding: 18px 8px !important;
        border-radius: 8px !important;
        margin-bottom: 16px !important;
    }

    .section-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .divider {
        width: 30px !important;
        height: 2px !important;
        margin-bottom: 10px !important;
    }

    .overview-content p,
    .fee-inclusion p,
    .deposit-note,
    .info-table td,
    .schedule-note {
        font-size: 0.95rem !important;
    }

    .info-table td {
        padding: 7px 5px !important;
    }

    .room-images {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .room-card img {
        height: 110px !important;
    }

    .room-card h4 {
        margin: 7px !important;
        font-size: 0.95rem !important;
    }

    .room-card ul {
        padding: 0 7px 7px !important;
    }

    .book-now-btn {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 5px 2px !important;
        font-size: 0.8rem !important;
    }

    .reviews-section>div,
    #reviews .content-section>div,
    .content-section>div[style*="grid-template-columns:1fr 1fr 1fr"] {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .course-details-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .room-images {
        grid-template-columns: 1fr;
    }

    .info-table .label,
    .info-table .value {
        display: block;
        width: 100%;
        padding: 8px 15px;
    }

    .info-table .label {
        border-bottom: none;
        padding-bottom: 5px;
        font-weight: 700;
    }

    .info-table .value {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .table-title {
        font-size: 1.1rem;
    }

    .schedule-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-table::-webkit-scrollbar {
        height: 5px;
    }

    .schedule-table::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .schedule-table::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    .price-highlight {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .details-container {
        padding: 0 15px;
    }

    .content-section {
        padding: 15px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .overview-content p {
        font-size: 0.9rem;
    }

    .room-card img {
        height: 150px;
    }

    .room-card h4 {
        margin: 10px;
    }

    .deposit-note {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* Add this CSS at the end of your <style> tag or in your CSS file */

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .details-sidebar {
        display: none !important;
    }

    .details-content {
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07) !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    .content-section {
        padding: 18px 8px !important;
        border-radius: 8px !important;
        margin-bottom: 16px !important;
    }

    .section-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .divider {
        width: 30px !important;
        height: 2px !important;
        margin-bottom: 10px !important;
    }

    .overview-content p,
    .fee-inclusion p,
    .deposit-note,
    .info-table td,
    .schedule-note {
        font-size: 0.95rem !important;
    }

    .info-table td {
        padding: 7px 5px !important;
    }

    .room-images {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .room-card img {
        height: 110px !important;
    }

    .room-card h4 {
        margin: 7px !important;
        font-size: 0.95rem !important;
    }

    .room-card ul {
        padding: 0 7px 7px !important;
    }

    .book-now-btn {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 5px 2px !important;
        font-size: 0.8rem !important;
    }

    .reviews-section>div,
    #reviews .content-section>div,
    .content-section>div[style*="grid-template-columns:1fr 1fr 1fr"] {
        display: block !important;
    }
}

.curriculum-desc {
    font-size: 13px;
    color: #444;
    margin-bottom: 18px;
    font-weight: 500;
}

.curriculum-group-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 22px 0 10px 0;
    font-family: 'Quicksand', sans-serif;
}

.curriculum-accordion {
    margin-bottom: 10px;
}

.curriculum-item {
    background: #fafbfc;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.04);
    overflow: hidden;
    border: 1px solid #eee;
}

.curriculum-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-weight: 600;
    color: #333;
    text-align: left;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.curriculum-toggle .arrow {
    font-size: 1.1em;
    color: #c0392b;
    transition: transform 0.2s;
}

.curriculum-toggle.active,
.curriculum-toggle:hover {
    background: #fff5f0;
}

.curriculum-content {
    display: none;
    padding: 0 18px 14px 38px;
    background: #fff;
    font-size: 12px;
    color: #444;
    border-top: 1px solid #eee;
    animation: fadeIn 0.3s;
}

.curriculum-content ul {
    margin: 0;
    padding-left: 18px;
}

.curriculum-content li {
    margin-bottom: 7px;
    /*list-style: disc;*/
}

.curriculum-toggle.active .arrow {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.schedule-attractive {
    background: #fafbfc;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
    padding: 28px 18px 18px 18px;
    margin-bottom: 0;
}

.schedule-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
    border-left: 3px solid #c0392b;
    position: relative;
}

.schedule-timeline li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 18px;
}

.schedule-timeline li:last-child {
    margin-bottom: 0;
}

.schedule-timeline li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 7px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #c0392b;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.10);
}

.schedule-time {
    display: inline-block;
    min-width: 90px;
    font-weight: 700;
    color: #c0392b;
    font-size: 1.01rem;
    font-family: 'Quicksand', sans-serif;
}

.schedule-activity {
    margin-left: 18px;
    font-size: 1.01rem;
    color: #333;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
}

.schedule-activity.highlight {
    color: #e9675f;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .schedule-attractive {
        padding: 14px 5px 10px 8px;
    }

    .schedule-timeline {
        padding-left: 10px;
    }

    .schedule-time {
        min-width: 70px;
        font-size: 0.95rem;
    }

    .schedule-activity {
        font-size: 0.95rem;
    }
}

/* Ratings/Testimonials (Slider) */
.why-rishikesh-reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.why-rishikesh-review-card {
    background: #fff5f0;
    padding: 22px 24px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
    min-width: 320px;
    max-width: 420px;
    width: 100%;
    transition: box-shadow 0.2s;
    border: 1.5px solid #ffe0d3;
}

.why-rishikesh-rating-img {
    height: 28px;
    vertical-align: middle;
    margin-bottom: 8px;
    border-radius: 4px;
}

.why-rishikesh-rating {
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 10px;
    margin-left: 6px;
    font-size: 1.08em;
}

.why-rishikesh-review-text {
    margin-top: 10px;
    font-size: 1.01rem;
    color: #444;
    line-height: 1.7;
}

.why-rishikesh-reviewer {
    color: #888;
    font-size: 0.97em;
    font-style: italic;
}

.review-slider-btn {
    background: #fff5f0;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0392b;
    font-size: 1.3em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.08);
    transition: background 0.2s, color 0.2s;
}

.review-slider-btn:hover {
    background: #c0392b;
    color: #fff;
}

@media (max-width: 600px) {
    .why-rishikesh-review-card {
        min-width: 0;
        max-width: 100%;
        padding: 14px 8px;
    }

    .why-rishikesh-reviews-slider {
        gap: 8px;
    }
}

/* Gallery Section Enhanced with Better Proportions */
.course-gallery {
    padding: 60px 0 0 0;
    background: #FFFAEA;
}

.gallery-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 20px;
}

.gallery-title {

    font-size: 25px;
    color: #B6483D;
    margin-bottom: 30px;
    margin-top: 30px;
    line-height: 1.3;
    font-weight: 700;
}

/* Gallery Container with Better Spacing */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Main Gallery Layout */
.main-gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Large Main Images */
.gallery-main-large {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 350px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.gallery-main-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main-large:hover img {
    transform: scale(1.05);
}

/* Side Images Grid */
.side-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-item-small {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 167px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.gallery-item-small:hover img {
    transform: scale(1.08);
}

/* Thumbnails Strip */
.gallery-thumbs-wrapper {
    margin: 15px 0 30px;
    padding: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 10px;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

.thumb-item {
    flex: 0 0 100px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-item:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.thumb-item.active {
    border-color: #e74c3c;
    transform: scale(1.05);
}

/* Course Info Cards */
.course-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.info-card {
    background: #98312b;
    color: white;
    padding: 11px 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(192, 57, 43, 0.25);
    font-family: 'Quicksand', sans-serif;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.35);
    background: #e74c3c;
}


/* Short Videos Section Styles */
.included-short-videos-row {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.short-video-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
    padding: 0;
    width: 23%;
    min-width: 160px;
    aspect-ratio: 9/16;
    overflow: hidden;
    border: 2px solid #eee;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    align-items: stretch;
}

.short-video-card:hover {
    box-shadow: 0 4px 18px rgba(192, 57, 43, 0.18);
    border-color: #c0392b;
}

.short-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    aspect-ratio: 9/16;
    background: #000;
}

@media (max-width: 900px) {
    .included-short-videos-row {
        gap: 10px;
    }

    .short-video-card {
        width: 48%;
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .included-short-videos-row {
        flex-direction: column;
        gap: 10px;
    }

    .short-video-card {
        width: 100%;
        min-width: 100px;
        aspect-ratio: 9/16;
    }
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-container {
        padding: 0 20px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .main-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-main-large {
        height: 250px;
    }

    .side-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item-small {
        height: 120px;
    }

    .thumb-item {
        flex: 0 0 80px;
        height: 60px;
    }

    .course-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.3rem;
    }

    .gallery-main-large {
        height: 200px;
    }

    .gallery-item-small {
        height: 100px;
    }

    .gallery-thumbs {
        gap: 5px;
    }
}

/* Course Details Section Styles */
.course-details-section {
    padding: 60px 0;
    background: #FFFAEA;
    position: relative;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* Sidebar Wrapper for proper positioning */
.sidebar-wrapper {
    position: relative;
    height: 100%;
}

/* Sidebar Styles - Fixed Position within section */


.course-navigation {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.course-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 13px;
    color: black;
    text-decoration: none;
    font-size: 16px;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    font-weight: 500;
    background: #fff;
}

.course-nav-item i {
    font-size: 1.1em;
    min-width: 22px;
    text-align: center;
}

.course-nav-item:hover,
.course-nav-item.active {
    background: #fff5f0;
    color: #c0392b;
    border-left: 3px solid #c0392b;
}

.sidebar-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    text-align: center;
    padding: 18px 10px 10px 10px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
}

.sidebar-apply-btn {
    width: calc(100% - 40px);
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin: 24px 20px 0 20px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.sidebar-apply-btn:hover {
    background: #229954;
}

@media (max-width: 992px) {
    .details-sidebar {
        display: none !important;
    }
}

/* Content Area Styles */
.details-content {
    background: white;
    /* border: 1px solid #e0e0e0; */
    padding: 0;
}

.content-hero-image {
    margin: 0;
}

.content-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 20px;
    color: #B6483D;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

/*.divider {*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: #e9675f;*/
/*    margin-bottom: 20px;*/
/*}*/


.divider {
    width: 108px;
    height: 20px; /* image ke liye height badhai */
    background-image: url("../svg/latest.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -10px;
}

.overview-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    /*color: #555;*/
    font-size: 0.95rem;
}

.lead-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Course Info Table */
.course-info-table {
    margin-top: 30px;
}

.table-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.table-title span {
    color: #ff8c00;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table .label {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.info-table .value {
    color: #666;
}

/* Schedule Table Styles */
.schedule-container {
    margin-top: 20px;
}

.schedule-note {
    background: #fff5f0;
    padding: 12px;
    border-radius: 3px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.schedule-note sup {
    color: #ff8c00;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    display: block;
}

.schedule-table table {
    width: 100%;
    min-width: 600px;
}

.schedule-table th,
.schedule-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.schedule-table th {
    background: #f8f8f8;
    font-weight: 600;
}

.price-highlight {
    background: #ff8c00;
    color: white;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
    position: relative;
}

.price-highlight del {
    color: #ffcccc;
    font-size: 0.85rem;
}

.book-now-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.book-now-btn:hover {
    background: #229954;
}

/* Room Images */
.room-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.room-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h4 {
    font-size: 1rem;
    color: #333;
    margin: 15px;
    font-weight: 600;
}

.room-card ul {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
}

.room-card li {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.room-card li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.deposit-note {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 3px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.fee-inclusion {
    margin: 25px 0;
}

.fee-inclusion h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.fee-inclusion p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.mobile-nav-toggle i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.active i {
    transform: translateY(-50%) rotate(180deg);
}

/* What is included section styles */
#included.content-section {
    margin-top: 40px;
}

.included-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c0392b;
}

.included-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #c0392b;
    font-weight: 500;
    gap: 10px;
    padding: 6px 0;
}

.included-feature i {
    font-size: 1.15em;
    min-width: 22px;
}

.included-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}

.included-video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.included-video-card iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 140px;
    background: #000;
}

.included-video-caption {
    text-align: center;
    font-size: 0.93rem;
    color: #c0392b;
    margin-top: 4px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .included-videos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .included-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .included-videos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .details-sidebar {
        display: none !important;
    }

    .details-content {
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07) !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    .content-section {
        padding: 0px 17px !important;
        border-radius: 8px !important;
        margin-bottom: 16px !important;
    }

    .section-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }

    .divider {
        width: 30px !important;
        height: 2px !important;
        margin-bottom: 10px !important;
    }

    .overview-content p,
    .fee-inclusion p,
    .deposit-note,
    .info-table td,
    .schedule-note {
        font-size: 0.95rem !important;
    }

    .info-table td {
        padding: 7px 5px !important;
    }

    .room-images {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .room-card img {
        height: 110px !important;
    }

    .room-card h4 {
        margin: 7px !important;
        font-size: 0.95rem !important;
    }

    .room-card ul {
        padding: 0 7px 7px !important;
    }

    .book-now-btn {
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 5px 2px !important;
        font-size: 0.8rem !important;
    }

    .reviews-section>div,
    #reviews .content-section>div,
    .content-section>div[style*="grid-template-columns:1fr 1fr 1fr"] {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .course-details-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .room-images {
        grid-template-columns: 1fr;
    }

    .info-table .label,
    .info-table .value {
        display: block;
        width: 100%;
        padding: 8px 15px;
    }

    .info-table .label {
        border-bottom: none;
        padding-bottom: 5px;
        font-weight: 700;
    }

    .info-table .value {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .table-title {
        font-size: 1.1rem;
    }

    .schedule-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-table::-webkit-scrollbar {
        height: 5px;
    }

    .schedule-table::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .schedule-table::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    .price-highlight {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .details-container {
        padding: 0 15px;
    }

    .content-section {
        padding: 15px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .overview-content p {
        font-size: 0.9rem;
    }

    .room-card img {
        height: 150px;
    }

    .room-card h4 {
        margin: 10px;
    }

    .deposit-note {
        padding: 12px;
        font-size: 0.85rem;
    }
}


.why-rishikesh-feature-list {
    color: #444;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 0;
    list-style: none;
}

.why-rishikesh-feature-list li {
    margin-bottom: 10px;
    /*display: flex;*/
    align-items: flex-start;
    gap: 10px;
    background: #fff5f0;
    border-radius: 6px;
    padding: 10px 14px;
    box-shadow: 0 1px 6px rgba(192, 57, 43, 0.05);
}

.why-icon {
    color: #c0392b;
    font-size: 1.15em;
    margin-top: 3px;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-rishikesh-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-rishikesh-review-card {
    background: #f8f8f8;
    padding: 16px 18px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07);
}

.why-rishikesh-rating {
    font-weight: 600;
    color: #c0392b;
    margin-bottom: 10px;
    margin-left: 6px;
}

.why-rishikesh-review-text {
    margin-top: 10px;
    font-size: 0.97rem;
    color: #444;
}

.why-rishikesh-reviewer {
    color: #888;
    font-size: 0.95em;
}


.whp {
    width:269px;
    height: 200px;
    max-width:100%;
    border-radius:8px;
    box-shadow:0 2px 12px rgba(44,62,80,0.10);
    border: 1px solid #a32b2b;
}
@media (max-width: 900px) {
    .why-rishikesh-reviews {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .whp {
        width: 100% !important;
        height: 250px !important;
    }
}


/* Travel Guide Accordion Styles */

.travel-guide-accordion {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
    padding: 24px 18px;
    margin-bottom: 32px;
}

.tg-item {
    border-bottom: 1px solid #f0f0f0;
}

.tg-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #222;
    font-weight: 600;
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    font-size: 15px;
}

.tg-toggle.active,
.tg-toggle:hover {
    color: #c0392b;
}

.tg-content {
    display: none;
    padding: 0 0 16px 0;
    color: #444;
    animation: fadeIn 0.3s;
}

.tg-toggle .arrow {
    font-size: 1.1em;
    transition: transform 0.2s;
}

.tg-toggle.active .arrow {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Syllabus Buttons */
.syllabus-buttons {

    text-align: center;
}

.syllabus-btn {
    background-color: #B6483D;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.syllabus-btn:hover {
    background-color: #a72e2e;
}

/* Active syllabus button */
.syllabus-btn.active {
    background-color: #ff7a59;
    /* accent different from default */
    box-shadow: 0 8px 20px rgba(255, 122, 89, 0.18);
    transform: translateY(-2px);
}


/* Unique Course Timeline Section */
.unique-course-timeline-section {

    padding: 40px 20px;
    text-align: center;
}

.unique-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.unique-divider {
    width: 50px;
    height: 3px;
    background-color: #c0392b;
    margin: 0 auto 30px;
}

.unique-timeline-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.unique-timeline-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
    padding: 20px;
    width: 155px;
    text-align: center;
}

.unique-timeline-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.unique-timeline-title {
    font-size: 12px;
    font-weight: bold;
    color: #c0392b;
    margin-bottom: 10px;
}

.unique-timeline-content p {
    font-size: 12px !important;
    color: #444;
    margin: 5px 0;
}




/* Mobile: 2 videos per row */
@media (max-width: 768px) {
    .included-short-videos-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-video-card iframe {
        height: 250px !important;
    }

}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #98312b;
    text-align: center;
    padding: 13px 10px 10px 8px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
    box-shadow: 0px 2px 16px;
}