@import url('config.css');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Sans-serif;
}
.header_top_gap{
    padding-top: 100px;
}
/* Header styles */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    
}

.header_main_top-bar {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.header_main_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-text-color);
    padding: 10px 5%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_main_logo img {
    height: 50px;
}

.header_main_nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header_main_nav-links li {
    position: relative;
}

.header_main_nav-links a {
    text-decoration: none;
    color: var(--text-color);
    padding: 15px;
    display: block;
    font-weight: bold;
    transition: color 0.3s;
}

.header_main_nav-links a:hover {
    color: var(--primary-logo-color);
}

/* Dropdown menu */
.header_main_dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-text-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 150px;
}

.header_main_dropdown:hover .header_main_dropdown-menu {
    display: block;
}

.header_main_dropdown-menu li a {
    padding: 10px 15px;
    white-space: nowrap;
}

.header_main_social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_main_social-icons a {
    color: var(--text-color);
    transition: color 0.3s;
}

.header_main_social-icons a:hover {
    color: var(--primary-logo-color);


}
.header_main_social-icons a {
      width: 40px;
      height: 40px;
      background: var(--light-text-color);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 18px;
      color: #555;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .header_main_social-icons a:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
      color: var(--light-text-color);
    }

    /* Individual hover colors */
    .header_main_social-icons a.instagram:hover { background: #E1306C; }
    .header_main_social-icons a.linkedin:hover { background: #0077b5; }
    .header_main_social-icons a.facebook:hover { background: #1877f2; }
    .header_main_social-icons a.google:hover { background: #db4a39; }






.header_main_enquiry-btn {
    background-color: var(--primary-logo-color);
    color: var(--light-text-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.header_main_enquiry-btn:hover {
    background-color: #cc0000;
}

/* Mobile styles */
.header_main_hamburger-menu {
    display: none;
    cursor: pointer;
}

.header_main_hamburger-menu .header_main_bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.4s;
}

.header_main_mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--light-text-color);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
}

.header_main_mobile-drawer.open {
    right: 0;
}

.header_main_drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.header_main_drawer-logo img {
    height: 40px;
}

.header_main_close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-color);
}

.header_main_drawer-nav-links {
    list-style: none;
}

.header_main_drawer-nav-links li {
    margin-bottom: 15px;
}

.header_main_drawer-nav-links a {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.header_main_drawer-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    /* Using max-height and overflow to animate the dropdown */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

/* This is the new CSS rule for the mobile menu dropdown */
.header_main_drawer-dropdown.active .header_main_drawer-dropdown-menu {
    max-height: 200px; /* Adjust this value as needed to fit content */
}

.header_main_drawer-dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_main_drawer-dropdown-menu li a {
    padding: 8px 0;
    font-weight: normal;
}

.header_main_drawer-enquiry-btn {
    background-color: var(--primary-logo-color);
    color: var(--light-text-color);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.header_main_drawer-enquiry-btn:hover {
    background-color: #cc0000;
}

@media (max-width: 992px) {
    .header_main_nav-links, .header_main_social-icons, .header_main_enquiry-btn {
        display: none;
    }

    .header_main_hamburger-menu {
        display: block;
    }
    
}

/* Enquiry Popup Styles */
.header_main_enquiry-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Above the header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.header_main_enquiry-popup.open {
    display: flex;
}

.header_main_popup-content {
    background-color: var(--light-text-color);
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header_main_close-popup-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
}

.header_main_popup-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.header_main_submit-btn {
    display: block;
    width: 100%;
    background-color: var(--primary-logo-color);
    color: var(--light-text-color);
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.header_main_submit-btn:hover {
    background-color: #cc0000;
}

/* Index About Us Section */
.index_about_us_main_conteinar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}

.index_about_us_container {
    display: flex;
    flex-direction: column;
    background-color: var(--light-text-color);
    max-width: 90%;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.index_about_us_container.active {
    opacity: 1;
    transform: translateY(0);
}

.index_about_us_image-section {
    flex: 1;
}

.index_about_us_image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.index_about_us_text-section {
    flex: 1;
    padding: 20px 0px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index_about_us_welcome-text {
    color: var(--primary-logo-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.index_about_us_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.index_about_us_description {
    font-size: 16px;
    line-height: 30px;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.index_about_us_read-more-btn {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.index_about_us_read-more-btn:hover {
    background-color: var(--primary-logo-color);
}

@media (min-width: 768px) {
    .index_about_us_container {
        flex-direction: row;
    }
    
}

/* Where We Go Section */

/* Base styles for the body and overall container */
.where_we_want_to_go_conteinar {
    background-color: #1a0033;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Container for the entire search bar UI */
.where_we_want_go_container_area {
    display: flex;
    flex-direction:initial ;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    width: 100%;
    max-width: 72rem;
    border-radius: 1rem;
    background-color: var(--primary-color);
    margin: 10px 0px;
}

.where_we_want_go_title {
    font-size: 30px; 
    color: var(--light-text-color);
    font-weight: 700;
    flex-shrink: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.where_we_want_go_input_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
}

.where_we_want_go_input {
    width: 100%;
    padding: 0.75rem; 
    border-radius: 0.5rem;
    border: 1px solid #6b5894;
    background-color: #3b2866;
    color: var(--light-text-color);
    outline: none;
}

.where_we_want_go_input::placeholder {
    color: #a394c2;
}

.where_we_want_go_input:focus {
    border-color: #f1c40f;
    box-shadow: 0 0 0 2px #f1c40f;
}

.where_we_want_go_button {
    width: 100%;
    padding: 0.75rem 2rem; /* px-8 py-3 */
    background-color: #f1c40f;
    color: var(--light-text-color);
    font-weight: 600; /* font-semibold */
    border-radius: 0.5rem; /* rounded-lg */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.where_we_want_go_button:hover {
    background-color: #cc0000;
}

.where_we_want_go_button:focus {
    outline: 2px solid #cc0000;
    outline-offset: 2px;
}

/* --- Media Queries for Responsiveness --- */
@media (min-width: 640px) {
    .where_we_want_go_input_group {
        flex-direction: row;
        gap: 0.75rem; 
    }
    .where_we_want_go_input {
        width: calc(100% / 3);
    }
    .where_we_want_go_button {
        width: auto;
    }

}

/* For screens wider than 768px (md breakpoint equivalent) */
@media (min-width: 768px) {
    .where_we_want_go_container {
        
        flex-direction: row;
        padding: 2rem; 
        gap: 1rem;
    }
    .where_we_want_go_title {
        font-size: 1.875rem;
        text-align: left;
        margin-bottom: 0;
    }
    .where_we_want_go_container_area {
        display: flex;
        flex-direction: column  ;
    }
    
}
/* Your default desktop styles go here */
.index_about_us_text-section {
    padding: 50px 100px; /* Example desktop padding */
}

.index_about_us_description {
    line-height: 25px; /* Example desktop line height */
}

/* ... other desktop styles ... */

h1 {
    font-size: 40px; /* Example desktop font size */
}


/* Media query for mobile devices (e.g., screen width 767px and below) */
@media (max-width: 767px) {
    .index_about_us_text-section {
        padding: 10px !important;
    }
    .index_about_us_description {
        line-height: 20px;
    }
    .why_chooses_header {
        padding: 0px;
    }
    .why_chooses_header p {
        text-align: justify;
    }
    .choose_bhutan_section {
        width: 100%;
    }
    h1 {
        font-size: 25px !important;
    }
    .why_chooses_header{
        padding: 0px !important;
    }
}

/* popular_destination_main_conteiner */

.popular_destination_main_conteiner {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    width: 100%;
    padding: 20px 0px 0px 0px;
}

.pre_popular_destination_main_container_area {
    width: 90%;
    text-align: center;
}
.pre_header {
    margin-bottom: 40px;
}

.pre_header h1 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-top: 20px;
}

.pre_header p {
    font-size: 1rem;
    color: var(--text-header-color);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.pre_grid_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.pre_card {
    background-color: var(--light-text-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Initial state for the animation */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.pre_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pre_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pre_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.pre_card_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pre_card_overlay .pre_name {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pre_card_overlay .pre_name span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .pre_grid_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pre_grid_container {
        grid-template-columns: 1fr;
    }

    .pre_header h1 {
        font-size: 2rem;
    }

    .pre_header p {
        font-size: 0.9rem;
    }
}

/*  */

.popular_places_main_conteinar {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    width: 100%;
    padding-bottom: 20px;
}

.best_popular_package_main_container_area {
    width: 90%;
    text-align: center;
    margin: auto;
}

.best_popular_package_header {
    margin-bottom: 40px;
    padding-top: 20px;
}

.best_popular_package_header h1 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-top: 20px;
}

.best_popular_package_header p {
    font-size: 1rem;
    color: var(--text-header-color);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.best_popular_package_grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.best_popular_package_card {
    background-color: var(--light-text-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding-bottom: 20px;

    /* Initial state for the animation */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Class to trigger animation when visible */
.best_popular_package_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.best_popular_package_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.best_popular_package_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.best_popular_package_content {
    padding: 20px;
}

.best_popular_package_content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #1e1e1e;
}

.best_popular_package_content h4 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-header-color);
    margin: 0 0 10px 0;
}

.best_popular_package_rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.best_popular_package_rating .fa-star {
    color: #ff9900;
    font-size: 1rem;
}

.best_popular_package_rating span {
    font-size: 0.9rem;
    color: #888;
}

.best_popular_package_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.best_popular_package_info_item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.best_popular_package_button_container {
    margin-top: 20px;
}

.best_popular_package_button {
    background-color: var(--primary-logo-color);

    color: var(--light-text-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.best_popular_package_button:hover {
    background-color: #cc0000;
}

@media (max-width: 768px) {
    .best_popular_package_grid_container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
/* Why You Should Choose Heavenly Bhutan? */

.why_chooses_us_conteinar{
    width: 100%;
    height: auto;
}
.choose_bhutan_section {
      text-align: center;
      background: var(--light-text-color);
      width: 90%;
      margin: auto;
    }

.why_chooses_header {
    padding: 20px;
}

.why_chooses_header h1 {
    font-size: 30px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
    padding-top: 20px;
}

.why_chooses_header p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.choose_bhutan_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
}

.choose_bhutan_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: pointer;
    
}

.choose_bhutan_item i {
    font-size: 20px;
    background: var(--light-text-color);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.6s ease;
    color: var(--primary-logo-color);
    flex-shrink: 0;
}

.choose_bhutan_item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    line-height: 1.4;
}

/* Hover Animation */
.choose_bhutan_item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.choose_bhutan_item:hover i {
    background: var(--primary-color);
    color: var(--light-text-color);
    /* transform: rotate(10deg); */
}
.choose_bhutan_item:hover span {
    color: #cc0000;
}

/* Scroll Animation Active */
.choose_bhutan_item.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .choose_bhutan_section h2 {
    font-size: 22px;
    }
    .choose_bhutan_item span {
    font-size: 14px;
    }
}


/* Index video Section */
.index_video_conteinar{
    width: 100%;
    height: auto;
    position: relative;
}
.index_video_conteinar_area {
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    padding-bottom: 20px;
}

/* CSS for the video container and play button overlay */
.video-container {
    position: relative;
    width: 100%; 
    height: 70vh;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.play-button-overlay:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.play-button {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.play-button:hover {
    transform: scale(1.1);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


.play-button {
    animation: pulse-glow 2s infinite;
}

/* Alternative "inner" glow animation using pseudo-elements */
/* You can uncomment this and comment out the `box-shadow` animation above if you prefer */
/*
@keyframes inner-glow {
    0% {
        box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.7);
    }
}

.play-button {
    animation: inner-glow 2s infinite;
}
*/


/* CSS for the video popup */
.video-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-frame-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: black; /* Ensures black background before video loads */
    border-radius: 4px; /* Optional: rounded corners for video player */
    overflow: hidden;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-button {
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .play-button {
        width: 60px; /* Slightly adjusted for mobile */
        height: 60px;
        font-size: 24px;
    }

    .video-popup-content {
        width: 95%;
        padding: 10px;
    }

    .close-button {
        font-size: 24px;
    }
    .video-container {
    position: relative;
    width: 100%; 
    height: 40vh;
    }
}









