/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Banner Section Styles */
.explore-ahs-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    background-image: url("baner-bg.png");
    /* background-image: url("/assets/img/ahs-boosters/baner-bg.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore-ahs-banner-content {
    flex: 1;
    max-width: 50%;
    padding-right: 5%;
}

.explore-ahs-banner-title {
    font-family: "Fredoka", sans-serif !important;
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.explore-ahs-title-line1,
.explore-ahs-title-line2 {
    display: block;
}

.explore-ahs-title-black {
    color: #000000;
}

.explore-ahs-title-orange {
    color: #fd9b32;
}

.explore-ahs-banner-description {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 20px;
    color: #757575;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

.explore-ahs-banner-button {
    background-color: #fd9b32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.explore-ahs-banner-button:hover {
    background-color: #e88a25;
    transform: translateY(-2px);
}

.explore-ahs-button-arrow {
    font-size: 20px;
    font-weight: bold;
}

.explore-ahs-banner-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-ahs-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .explore-ahs-banner-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .explore-ahs-banner-title {
        font-size: 40px;
    }

    .explore-ahs-banner-description {
        max-width: 100%;
        font-size: 16px;
    }

    .explore-ahs-banner-image {
        max-width: 100%;
    }

    .explore-ahs-banner-button {
        margin: 0 auto;
    }
}

/* Interactive Videos Section Styles */
.explore-ahs-videos-section {
    position: relative;
    background-color: #ffffff;
    padding: 70px 5%;
    overflow: hidden;
}

.explore-ahs-videos-circle {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #e4fbff 0%, rgba(228, 251, 255, 0) 70%);
    z-index: 1;
}

.explore-ahs-videos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.explore-ahs-videos-left {
    flex: 1;
    max-width: 55%;
}

.explore-ahs-videos-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 22px;
    color: #178698;
    margin-bottom: 15px;
    font-weight: normal;
}

.explore-ahs-videos-heading {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 25px;
}

.explore-ahs-videos-heading1 {
    color: #303030;
    display: block;
}

.explore-ahs-videos-heading2 {
    color: #fb8503;
    display: block;
}

.explore-ahs-videos-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 30px;
}

.explore-ahs-videos-features-title {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 22px;
    color: #3b3b3b;
    font-weight: bold;
    margin-bottom: 20px;
}

.explore-ahs-videos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.explore-ahs-videos-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.explore-ahs-videos-icon {
    width: 34.71px;
    height: 30.21px;
    flex-shrink: 0;
    margin-top: 2px;
}

.explore-ahs-videos-detail {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.5;
}

/* Video Container Styles */
.explore-ahs-videos-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.explore-ahs-videos-frame {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-videos-section {
        padding: 50px 5%;
    }

    .explore-ahs-videos-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .explore-ahs-videos-left {
        max-width: 100%;
        text-align: center;
    }

    .explore-ahs-videos-right {
        max-width: 100%;
    }

    .explore-ahs-videos-frame {
        max-width: 100%;
        height: 200px;
    }

    .explore-ahs-videos-item {
        text-align: left;
    }

    .explore-ahs-videos-circle {
        top: -300px;
        left: -300px;
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .explore-ahs-videos-heading {
        font-size: 24px;
    }

    .explore-ahs-videos-subhead {
        font-size: 18px;
    }

    .explore-ahs-videos-features-title {
        font-size: 20px;
    }

    .explore-ahs-videos-frame {
        height: 180px;
    }
}

/* Questions Section Styles */
.explore-ahs-questions-section {
    position: relative;
    background-color: #f8f8f8;
    padding: 70px 5%;
    overflow: hidden;
}

.explore-ahs-questions-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.explore-ahs-questions-left {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.explore-ahs-questions-frame {
    width: 100%;
    max-width: 450px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explore-ahs-questions-right {
    flex: 1;
    max-width: 55%;
}

.explore-ahs-questions-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #178698;
    margin-bottom: 0px;
    font-weight: 500;
}

.explore-ahs-questions-heading {
    font-family: "Fredoka", sans-serif !important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.explore-ahs-questions-heading1 {
    color: #303030;
    display: block;
}

.explore-ahs-questions-heading2 {
    color: #fb8503;
    display: block;
}

.explore-ahs-questions-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 25px;
}

.explore-ahs-questions-button {
    background-color: #fd9b32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.explore-ahs-questions-button:hover {
    background-color: #e88a25;
    transform: translateY(-2px);
}

.explore-ahs-questions-arrow {
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-questions-section {
        padding: 50px 5%;
    }

    .explore-ahs-questions-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .explore-ahs-questions-left {
        max-width: 100%;
    }

    .explore-ahs-questions-right {
        max-width: 100%;
        text-align: center;
    }

    .explore-ahs-questions-frame {
        max-width: 100%;
        height: 200px;
    }

    .explore-ahs-questions-button {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .explore-ahs-questions-heading {
        font-size: 24px;
    }

    .explore-ahs-questions-subhead {
        font-size: 18px;
    }

    .explore-ahs-questions-frame {
        height: 180px;
    }

    .explore-ahs-questions-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Lesson Content Section Styles */
.explore-ahs-lesson-section {
    position: relative;
    background-color: #ffffff;
    padding: 70px 5%;
    overflow: hidden;
}

.explore-ahs-lesson-circle {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e4fbff 0%, rgba(228, 251, 255, 0) 70%);
    z-index: 1;
}

.explore-ahs-lesson-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.explore-ahs-lesson-left {
    flex: 1;
    max-width: 55%;
}

.explore-ahs-lesson-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #178698;
    margin-bottom: 0px;
    font-weight: 500;
}

.explore-ahs-lesson-heading {
    font-family: "Fredoka", sans-serif !important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.explore-ahs-lesson-heading1 {
    color: #303030;
    display: inline;
}

.explore-ahs-lesson-heading2 {
    color: #fd9b32;
    display: inline;
}

.explore-ahs-lesson-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 10px;
}

.explore-ahs-lesson-features-title {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #3b3b3b;
    font-weight: bold;
    margin-bottom: 10px;
}

.explore-ahs-lesson-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.explore-ahs-lesson-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.explore-ahs-lesson-icon {
    width: 28.71px;
    height: 24.21px;
    flex-shrink: 0;
    margin-top: 2px;
}

.explore-ahs-lesson-detail {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.5;
}

.explore-ahs-lesson-detail strong {
    color: #3b3b3b;
}

/* Video Container Styles */
.explore-ahs-lesson-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.explore-ahs-lesson-frame {
    width: 100%;
    max-width: 450px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-lesson-section {
        padding: 50px 5%;
    }

    .explore-ahs-lesson-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .explore-ahs-lesson-left {
        max-width: 100%;
        text-align: center;
    }

    .explore-ahs-lesson-right {
        max-width: 100%;
    }

    .explore-ahs-lesson-frame {
        max-width: 100%;
        height: 200px;
    }

    .explore-ahs-lesson-item {
        text-align: left;
    }

    .explore-ahs-lesson-circle {
        top: -200px;
        left: -200px;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .explore-ahs-lesson-heading {
        font-size: 24px;
    }

    .explore-ahs-lesson-subhead {
        font-size: 18px;
    }

    .explore-ahs-lesson-features-title {
        font-size: 20px;
    }

    .explore-ahs-lesson-frame {
        height: 180px;
    }
}

/* Worksheets Section Styles */
.explore-ahs-worksheets-section {
    position: relative;
    background-color: #f8f8f8;
    padding: 70px 5%;
    overflow: hidden;
}

.explore-ahs-worksheets-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.explore-ahs-worksheets-left {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.explore-ahs-worksheets-frame {
    width: 100%;
    max-width: 450px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explore-ahs-worksheets-right {
    flex: 1;
    max-width: 55%;
}

.explore-ahs-worksheets-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #178698;
    margin-bottom: 0px;
    font-weight: 500;
}

.explore-ahs-worksheets-heading {
    font-family: "Fredoka", sans-serif !important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.explore-ahs-worksheets-heading1 {
    color: #303030;
    display: inline;
}

.explore-ahs-worksheets-heading2 {
    color: #fd9b32;
    display: inline;
}

.explore-ahs-worksheets-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 25px;
}

.explore-ahs-worksheets-button {
    background-color: #fd9b32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.explore-ahs-worksheets-button:hover {
    background-color: #e88a25;
    transform: translateY(-2px);
}

.explore-ahs-worksheets-arrow {
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-worksheets-section {
        padding: 50px 5%;
    }

    .explore-ahs-worksheets-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .explore-ahs-worksheets-left {
        max-width: 100%;
    }

    .explore-ahs-worksheets-right {
        max-width: 100%;
        text-align: center;
    }

    .explore-ahs-worksheets-frame {
        max-width: 100%;
        height: 200px;
    }

    .explore-ahs-worksheets-button {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .explore-ahs-worksheets-heading {
        font-size: 24px;
    }

    .explore-ahs-worksheets-subhead {
        font-size: 18px;
    }

    .explore-ahs-worksheets-frame {
        height: 180px;
    }

    .explore-ahs-worksheets-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Analytics Section Styles */
.explore-ahs-analytics-section {
    position: relative;
    background-color: #ffffff;
    padding: 70px 5%;
    overflow: hidden;
}

.explore-ahs-analytics-circle {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #e4fbff 0%, rgba(228, 251, 255, 0) 70%);
    z-index: 1;
}

.explore-ahs-analytics-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.explore-ahs-analytics-left {
    flex: 1;
    max-width: 55%;
}

.explore-ahs-analytics-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #178698;
    margin-bottom: 0px;
    font-weight: 500;
}

.explore-ahs-analytics-heading {
    font-family: "Fredoka", sans-serif !important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}

.explore-ahs-analytics-heading1 {
    color: #303030;
    display: block;
}

.explore-ahs-analytics-heading2 {
    color: #fd9b32;
    display: block;
}

.explore-ahs-analytics-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 10px;
}

.explore-ahs-analytics-features-title {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #3b3b3b;
    font-weight: bold;
    margin-bottom: 10px;
}

.explore-ahs-analytics-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.explore-ahs-analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.explore-ahs-analytics-icon {
    width: 28.71px;
    height: 24.21px;
    flex-shrink: 0;
    margin-top: 2px;
}

.explore-ahs-analytics-detail {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.5;
}

.explore-ahs-analytics-detail strong {
    color: #3b3b3b;
}

/* Video Container Styles */
.explore-ahs-analytics-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.explore-ahs-analytics-frame {
    width: 100%;
    max-width: 450px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahs-analytics-section {
        padding: 50px 5%;
    }

    .explore-ahs-analytics-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .explore-ahs-analytics-left {
        max-width: 100%;
        text-align: center;
    }

    .explore-ahs-analytics-right {
        max-width: 100%;
    }

    .explore-ahs-analytics-frame {
        max-width: 100%;
        height: 200px;
    }

    .explore-ahs-analytics-item {
        text-align: left;
    }

    .explore-ahs-analytics-circle {
        top: -250px;
        left: -250px;
        width: 550px;
        height: 550px;
    }
}

@media (max-width: 480px) {
    .explore-ahs-analytics-heading {
        font-size: 24px;
    }

    .explore-ahs-analytics-subhead {
        font-size: 18px;
    }

    .explore-ahs-analytics-features-title {
        font-size: 20px;
    }

    .explore-ahs-analytics-frame {
        height: 180px;
    }
}

/* Dashboard Section Styles */
.explore-ahs-dashboard-section {
    position: relative;
    background-image: url("section-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 5%;
    text-align: center;
}

.explore-ahs-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-ahs-dashboard-subhead {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 18px;
    color: #178698;
    margin-bottom: 10px;
    font-weight: 500;
}

.explore-ahs-dashboard-heading {
    font-family: "Fredoka", sans-serif !important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #303030;
}

.explore-ahs-dashboard-highlight {
    color: #fd9b32;
}

.explore-ahs-dashboard-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 15px;
    color: #686767;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.explore-ahs-dashboard-decoration {
    margin-bottom: 50px;
}

.explore-ahs-decoration-img {
    width: 92.69px;
    height: 42px;
}

/* Cards Grid */
.explore-ahs-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.explore-ahs-dashboard-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 15px;
    text-align: left;
}

.explore-ahs-card-icon {
    margin-bottom: 15px;
}

.explore-ahs-icon-img {
    width: 60px;
    height: 60px;
}

.explore-ahs-card-title {
    font-family: "Fredoka", sans-serif !important;
    font-size: 18px;
    color: #303030;
    margin-bottom: 10px;
    font-weight: bold;
}

.explore-ahs-card-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 16px;
    color: #686767;
    line-height: 1.5;
    margin-bottom: 20px;
}

.explore-ahs-card-features-title {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 16px;
    color: #fd9b32;
    margin-bottom: 10px;
    font-weight: bold;
}

.explore-ahs-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.explore-ahs-feature-point {
    display: flex;
    align-items: center;
    gap: 8px;
}

.explore-ahs-feature-tick {
    background-color: #fd9b32;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.explore-ahs-feature-text {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 14px;
    color: #686767;
}

.explore-ahs-card-button {
    background-color: #fd9b32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.explore-ahs-card-button:hover {
    background-color: #e88a25;
    transform: translateY(-2px);
}

.explore-ahs-button-icon {
    font-size: 16px;
}

/* Popup Styles */
.explore-ahs-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.explore-ahs-popup-container {
    width: 60%;
    height: 552px;
    background: linear-gradient(135deg, #fd9b32 0%, #ffebd5 50%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.explore-ahs-popup-content {
    position: relative;
    height: 100%;
}

.explore-ahs-popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fd9b32;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.explore-ahs-popup-title {
    font-family: "Fredoka", sans-serif !important;
    font-size: 30px;
    color: #fd9b32;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.explore-ahs-popup-video {
    width: 100%;
    height: calc(100% - 60px);
    border-radius: 20px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .explore-ahs-dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-ahs-popup-container {
        width: 80%;
        height: 700px;
    }
}

@media (max-width: 768px) {
    .explore-ahs-dashboard-section {
        padding: 50px 5%;
    }

    .explore-ahs-dashboard-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .explore-ahs-dashboard-heading {
        font-size: 28px;
    }

    .explore-ahs-popup-container {
        width: 90%;
        height: 500px;
        padding: 20px;
    }

    .explore-ahs-popup-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .explore-ahs-dashboard-heading {
        font-size: 24px;
    }

    .explore-ahs-dashboard-subhead {
        font-size: 16px;
    }

    .explore-ahs-popup-container {
        width: 95%;
        height: 400px;
        padding: 15px;
    }

    .explore-ahs-popup-title {
        font-size: 20px;
    }
}
