/* ======= Testimonials Section ======= */
/* No additional CSS needed - using inline styles */

/* ======= Video Banner Section ======= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: 'Inter', sans-serif!important;
}
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Inter', sans-serif!important;
}
.video-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3) !important;
}

.video-play-btn:hover .play-icon {
    transform: scale(1.1);
}

.play-icon {
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .video-banner-section {
        height: auto !important;
        padding: 60px 0;
    }

    .video-logo {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .play-button-wrapper {
        text-align: center !important;
    }
}

/* ======= Category/Sub-Sectors Section ======= */
.sub-sectors-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

.sector-item {
    display: block;
    text-decoration: none;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.sector-item:hover {
    padding-left: 10px;
}

.sector-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #b0b0b0;
    margin-right: 60px;
    min-width: 80px;
}

.sector-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2d2d2d;
    margin: 0;
    min-width: 350px;
}

.sector-description {
    flex-grow: 1;
    padding: 0 60px;
    max-width: 600px;
}

.sector-description p {
    color: #858585;
    font-size: 1rem;
    line-height: 1.6;
}

.sector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    transition: transform 0.3s ease;
}

.sector-arrow i {
    font-size: 2rem;
    color: #2d2d2d;
    transition: transform 0.3s ease;
}

.sector-item:hover .sector-arrow i {
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .sector-item {
        padding: 30px 0;
    }

    .sector-item > div {
        flex-wrap: wrap;
    }

    .sector-number {
        margin-right: 30px;
        min-width: 50px;
        font-size: 2rem;
    }

    .sector-title {
        font-size: 1.4rem;
        min-width: auto;
        flex: 1;
    }

    .sector-description {
        padding: 20px 0 0 0;
        width: 100%;
        order: 3;
        max-width: 100%;
    }

    .sector-arrow {
        order: 2;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .sector-item {
        padding: 20px 0;
    }

    .sector-number {
        font-size: 1.5rem;
        min-width: 40px;
        margin-right: 20px;
    }

    .sector-title {
        font-size: 1.2rem;
    }

    .sector-description p {
        font-size: 0.9rem;
    }
}

/* ======= Gallery/Reports Section ======= */
.reports-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.report-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-card-wide {
    height: 450px;
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.3s ease;
}

.report-card:hover .report-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.report-content {
    width: 100%;
}

.report-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.report-card-wide .report-title {
    font-size: 2rem;
}

.report-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.report-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.report-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.report-link:hover::after {
    width: 100%;
}

.report-link i {
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.report-link:hover i {
    transform: rotate(0deg);
}

@media (max-width: 991px) {
    .report-card {
        height: 350px;
    }

    .report-card-wide {
        height: 400px;
    }

    .report-title {
        font-size: 1.5rem;
    }

    .report-card-wide .report-title {
        font-size: 1.75rem;
    }

    .report-overlay {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .report-card {
        height: 300px;
    }

    .report-card-wide {
        height: 350px;
    }

    .report-title {
        font-size: 1.25rem;
    }

    .report-card-wide .report-title {
        font-size: 1.4rem;
    }

    .report-overlay {
        padding: 20px;
    }
}

/* ======= Counter/Statistics Section ======= */
.counter-section {
    padding: 80px 0;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-filled {
    color: #2d2d2d;
}

.counter-outlined {
    color: transparent;
    -webkit-text-stroke: 2px #2d2d2d;
    text-stroke: 2px #2d2d2d;
}

.counter-label {
    font-size: 1rem;
    color: #7a8a99;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .counter-number {
        font-size: 3.5rem;
    }

    .counter-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .counter-number {
        font-size: 2.5rem;
    }

    .counter-outlined {
        -webkit-text-stroke: 1.5px #2d2d2d;
        text-stroke: 1.5px #2d2d2d;
    }

    .counter-label {
        font-size: 0.8rem;
    }
}

/* ======= Category Page Styles ======= */
.category-page-header {
    margin-top: 40px;
    margin-bottom: 30px;
}

.category-page-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.category-page-subtitle {
    color: #38b6ff;
    font-size: 1.75rem;
    font-weight: 600;
}

/* ======= Filter Section ======= */
.filter-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-wrapper {
    height: 40px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 30px;
    border-right: 1px solid #e0e0e0;
    white-space: nowrap;
    height: 100%;
}

.filter-label i {
    font-size: 1.1rem;
    color: #666;
}

.filter-label span {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.filter-item {
    min-width: 180px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.filter-item.has-border {
    border-right: 1px solid #e0e0e0;
}

.filter-item .form-select {
    font-size: 0.95rem;
    color: #555;
    background-position: right center;
    padding: 0;
    padding-right: 25px;
    height: auto;
    line-height: normal;
}

.filter-reset {
    padding-left: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.filter-reset-btn {
    background: #3b97f5;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.filter-reset-btn:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.filter-reset-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ======= Load More Button ======= */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: #38b6ff;
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

.load-more-btn:hover:not(:disabled) {
    background: #2a9de8;
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.4);
    transform: translateY(-2px);
}

.load-more-btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.load-more-btn-content i {
    font-size: 1.2rem;
}

/* ======= Resource List ======= */
.resource-list-container {
    margin-bottom: 40px;
}

.resource-item-details table td {
    line-height: 20px;
}

/* ======= Download Modal ======= */
#myModal .modal-header1 .btn-close {
    float: right;
    right: 10px;
    top: 10px;
}

@media (max-width: 991px) {
    .filter-container {
        padding: 15px 20px !important;
    }

    .filter-label {
        margin-bottom: 15px;
    }

    .category-page-title {
        font-size: 2rem;
    }

    .category-page-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-container .col-lg-2 {
        width: 100%;
    }

    .category-page-title {
        font-size: 1.75rem;
    }

    .category-page-subtitle {
        font-size: 1.25rem;
    }

    .load-more-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
    }
}
