/* Reset styles for consistency across browsers */
/* General Reset */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid #ccc;
   
}

.header h1 {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-top: 8px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.gov-logo, .museum-logo {
    height: 50px;
    margin-right: 10px;
}

.title {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 0%;
}

.nav1-buttons {
    display: flex;
    gap: 10px;
}

.nav1-buttons button {
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #f1f6f6;
}

.nav1-buttons button:hover {
    background-color: #f0f0f0;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-icon {
    height: 20px;
    cursor: pointer;
}

/* Navbar Styling */
nav {
    background: linear-gradient(to right, #244238, #637027, #473951);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: -1;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    gap: 25px;
}

.navbar li {
    position: relative;
    margin: 0 20px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.navbar li a:hover {
    color: #f1c40f;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f1c40f;
    color: #f4ebeb;
}

/* Footer Styling */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #02262e;
    color: #c1d9d7;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 2px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
    margin: 1px;
}

.footer a {
    color: #c6e85d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffd700;
}

.footer p {
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    padding-top: 1px;
    border-top: 2px solid #f1efef;
    margin-top: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .nav1-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%;
        padding: 0.5em 0;
    }
}

@media (max-width: 480px) {
    .navbar li {
        margin: 10px 0;
    }

    .navbar li a {
        font-size: 1rem;
    }

    .footer {
        font-size: 0.9rem;
    }
}



/* hamaye home page ki css - General Styles */
/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    z-index: -5;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Adjusted transition time */
}

.slider-image.active {
    opacity: 1; /* Corrected opacity value */
}
/* Hero Section */
.hero-section {
    color: #fefcfc;
    padding-top: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 93vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    background-color: #2a2a2a04;
}

.hero-section h1 {
    font-size: 50px;
    margin-top: 400px;
    color: #fff;
}

.hero-section h1 span {
    color: #ed5b06;
}

section {
    padding: 50px 20px;
    text-align: center;
}
.container{
    background: linear-gradient(to right, #d5edc3bd, #e6f0bad1, #dbbfefb9);
    border-radius: 3px;
    margin: 2px;
}
  .text-content {
    flex: 1;
    padding-right: 20px;
  }
  
  .text-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
    margin-left: 130px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
  }
  
  .text-content p {
    margin: 5px 0;
    font-size: 18px;
    margin-left: 130px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: #012041;
  }
  
  .text-content a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .text-content a:hover {
    text-decoration: underline;
  }
  
  .image-container {
    width: 500px; /* You can adjust the width */
    height: 280px; /* You can adjust the height */
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 25px;
    margin-right: 150px;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* Optional: to make image corners rounded */
    border-style: double;    
    border-color: #292825b5;

  }
  .collection-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 15px;
    background-color: #c2cddc;
    margin-bottom: 0px;
}

.collection-container h1 {
    font-size: 32px;
    color: #131212;
    text-align: center;
    margin-bottom: 2px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.items-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    gap: 20px;
}

.item {
    text-align: center;
    flex: 0 0 auto;
}

.item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px;
}

.item p {
    color: #131212;
    margin-top: 10px;
    font-size: 16px;
}

.video-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 5px auto; /* Center the container */
    background: linear-gradient(to right, #d5edc3bd, #e6f0bad1, #dbbfefb9);
}

.video-text-container video {
    width: 50%; /* Take 50% of the container width */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for the video */
    margin-left: 40px;
}

.text-content {
    width: 50%; /* Take the remaining 50% */
    padding: 10px;
    text-align: left;
    color: #333; /* Darker text for better contrast */
    margin-right: 100px;
}

.text-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .video-text-container {
        flex-direction: column;
        text-align: center;
    }

    .video-text-container video,
    .text-content {
        width: 100%;
    }
}
  
/* Aboout ki css - General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
/* About Section */
.about {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
}
.about p {
    font-size: 1.2rem;
    color: #555;
}
.features {
    text-align: center; /* Center-aligns the section title */
    padding: 40px 20px;
    background-color: #f8f8f8; /* Optional background color */
    font-family: Arial, sans-serif;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.feature-list {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for responsiveness */
    justify-content: center; /* Centers the feature items */
    gap: 20px; /* Adds space between items */
}

.feature-item {
    width: 40%; /* Set a fixed width for the feature items */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease; /* Adds a hover effect */
}

.feature-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.feature-image {
    width: 100%; /* Resizes the image */
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px; /* Optional: rounded corners for the image */
}

.feature-item h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #555;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-item {
        width: 45%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .feature-item {
        width: 100%; /* Stack items on very small screens */
    }
}

/* Footer Section */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
/* General styles for image section */
.image-section {
    position: relative; /* Allows layering of child elements */
    width: 100%;
    height: auto;
}

/* Style for the image */
.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay text styles */
.overlay-text {
    position: absolute;
    bottom:-12%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to perfectly center */
    color: rgb(238, 234, 234);
    text-align: center;
    padding: 20px;
    border-radius: 10px;  
}

/* Text adjustments */
.overlay-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}
.colorful-line {
    width: 55%; /* Full width of the page */
    height: 5px; /* Height of the line */
    background: linear-gradient(to right, blue, indigo, violet); /* Rainbow gradient */
    margin: 10px 0; /* Adds spacing above and below the line */
}

/* history ki css - General Styles */
.image2-section {
    position: relative;
    width: 100%; /* Adjust to your desired width */
    height: 230px; /* Adjust to your desired height */
    overflow: hidden;
}

.banner-image2 {
    width: 100%; /* Set to auto for natural aspect ratio */
    height: 100%; /* Adjust for specific dimensions */
    object-fit: cover; /* Ensures the image covers the container */
}

.overlay1-text {
    position: absolute;
    top: 80%;
    left:9%;
    transform: translate(-50%, -50%);
    color: #0b2b13;
    text-align: center;
    font-size: 2rem; /* Adjust as needed */
    padding: 10px 20px; /* Optional: padding for text */
    border-radius: 5px; /* Optional: rounded edges */
}
/* Text adjustments */
.overlay1-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .overlay1-text image2{
        font-size: 1.5rem;
        padding: 8px 16px;
    }
}
/* 2nd*/
.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: 12px;
}

.text-section {
    flex: 10;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.image-section {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:1%;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-color: #244238;
    border-width: 6px;
}
/*Rules ki css*/

.container6 {
    position: relative;
    height: 690px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #d5edc3bd, #e6f0bad1, #dbbfefb9);
    width: 1450px;
    margin: 40px;
}

.switch-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
}

.switch {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.switch:hover {
    background-color: #0056b3;
}

.switch.active {
    background-color: #28a745;
}

.rules {
    display: none;
}

.rules.active {
    display: block;
    margin-top: 60px;
    margin-left: 25px;
    margin-bottom: 45px;
}
.rules h1{
    margin-left: 331px;
    margin-bottom: 45px;
}
p {
    margin: 0.5rem 0;
    font-size: medium;
}
/*Ncc/nss ki css*/
  .container4 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    height: 800px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #d5edc3bd, #e6f0bad1, #dbbfefb9);
    width: 1450px;
    margin: 40px;
  }
  
  .card {
    width: 650px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 700px;
  }
  
  .imagee-container4 {
    width: 50%;
    height: 300px;
    display: flex;
    margin-left: 200px;
    align-items: center;
  }

  .imagee {
    margin-left: 2px;
    max-width: 100%;
    max-height: 100%;
    margin-top: -70px;
  }

  .content {
    padding: 15px;
    margin-top: -60px;
  }
  
  .content h2 {
    margin-left: 150px;
    font-size: 20px;
    color: #333;
    margin-top: 30px;
  }
  .content0 h2 {
    margin-left: 150px;
    font-size: 20px;
    color: #333;
    margin-top:-90px;
  }
  
 .content p {
    margin-left: 50px;
    margin-right: 40px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1919;
  }
  .content0 p {
    margin-left: 50px;
    margin-right: 40px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1919;
  }
/*vision & mission ki css*/
.image0-section {
    position: relative;
    width: 100%; /* Adjust to your desired width */
    height: 230px; /* Adjust to your desired height */
    overflow: hidden;
}

.banner-image0 {
    width: 100%; /* Set to auto for natural aspect ratio */
    height: 100%; /* Adjust for specific dimensions */
    object-fit: cover; /* Ensures the image covers the container */
}

.overlay0-text {
    position: absolute;
    top: 80%;
    left:18%;
    transform: translate(-50%, -50%);
    color: #0b2b13;
    text-align: center;
    font-size: 2rem; /* Adjust as needed */
    padding: 10px 20px; /* Optional: padding for text */
    border-radius: 5px; /* Optional: rounded edges */
}
/* Text adjustments */
.overlay0-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}
 /*Geological ki css*/

 .overlay9-text {
    position: absolute;
    top: 80%;
    left:10%;
    transform: translate(-50%, -50%);
    color: #0b2b13;
    text-align: center;
    font-size: 2rem; /* Adjust as needed */
    padding: 10px 20px; /* Optional: padding for text */
    border-radius: 5px; /* Optional: rounded edges */
}
 .overlay9-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}
.text0-section {
    flex: 10;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-top: 50px;
}
.image00-section img {
    width: 90%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    border-color: #244238;
    border-width: 6px;
    margin-top: 80px;
    margin-right: 70px;
}
/*Anthropology ki css*/
.overlay10-text {
    position: absolute;
    top: 80%;
    left:15%;
    transform: translate(-50%, -50%);
    color: #0b2b13;
    text-align: center;
    font-size: 2rem; /* Adjust as needed */
    padding: 10px 20px; /* Optional: padding for text */
    border-radius: 5px; /* Optional: rounded edges */
}
 .overlay10-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}
/*zoology ki css*/
.overlay100-text {
    position: absolute;
    top: 80%;
    left:10%;
    transform: translate(-50%, -50%);
    color: #0b2b13;
    text-align: center;
    font-size: 2rem; /* Adjust as needed */
    padding: 10px 20px; /* Optional: padding for text */
    border-radius: 5px; /* Optional: rounded edges */
}
 .overlay100-text h2 {
    font-size: 3.9rem;
    font-family: 'Times New Roman', Times, serif;
}

/* New isolated styling for the additional section */
.tab-container-custom {
    position: relative;
    width: 100%;
    height: 500px; /* Full screen height */
    background: url('img/background-image.jpg') no-repeat center center/cover, #333; /* Fallback color */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tab-container-custom .background-overlay {
    background: rgba(0, 0, 0, 0.5); /* Overlay for contrast */
    width: 100%;
    height: 100%;
    position: relative;
}

.tab-container-custom .circle-images {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Circular Image Styles */
.tab-container-custom .circle-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
}

/* Left-side Images */
.tab-container-custom .left-images .circle-image:nth-child(1) {
    left: 15%;
    top: 05%;
}
.tab-container-custom .left-images .circle-image:nth-child(2) {
    left: 1%;
    top: 35%;
}
.tab-container-custom .left-images .circle-image:nth-child(3) {
    left: 15%;
    top: 60%;
}

/* Right-side Images */
.tab-container-custom .right-images .circle-image:nth-child(1) {
    right: 15%;
    top: 5%;
}
.tab-container-custom .right-images .circle-image:nth-child(2) {
    right: 1%;
    top: 35%;
}
.tab-container-custom .right-images .circle-image:nth-child(3) {
    right: 15%;
    top: 60%;
}

/* Text Content Styling */
.tab-container-custom .text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.tab-container-custom .text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.tab-container-custom .text-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #faf7d6f1;
    text-align: center;
    padding-right: 140px;
}

/* Style for the Map Section */
.map {
    width: 102%;
    height: 380px; /* Set a fixed height for the map */
    text-align: center; /* Center the map within the section */
    margin-top: -45px;
    margin-left: -15px;
    margin-bottom: -45px;
}

.map iframe {
    width: 100%; /* Make the iframe take up the full width of its container */
    height: 100%; /* Make the iframe take up the full height of its container */
}

/* Optional: Responsiveness for smaller screens */
@media (max-width: 768px) {
    .map {
        height: 300px; /* Adjust map height on smaller screens */
    }
}

/*Donation ki css*/    
  .containerd {
    display: flex;
    background-color: #fff;
    width: 1350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    height: 550px;
    margin-left: 90px;
  }
  
  .content-box {
    background-color: #d3d3d3d6;
    color: rgb(7, 7, 7);
    padding: 70px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  
  .content-box h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .content-box h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .content-box p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .underline {
    width: 200px;
    height: 4px;
    background-color: black;
    margin-top: 20px;
  }
  
  .image-box {
    flex: 1;
    overflow: hidden;
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .containerde {
    display: flex;
    background-color: #d3d3d3d6;
    width: 1350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    height: 550px;
    margin-left: 90px;
    margin-bottom: 60px;
  }


 
body {
    font-family: 'Baloo Tamma 2', cursive;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.service-container {
    text-align: center;
    max-width: 1400px;
    margin: 20px auto;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.service h2 {
    font-size: 1em;
    margin: 10px 0;
    color: #011524;
}

.service p {
    font-size: 15px;
    color: #555;
}

.service a {
    display: inline-block;
    margin-top: 10px;
    color: #f37021;
    text-decoration: none;
    font-weight: bold;
}

.service a:hover {
    text-decoration: underline;
}

.text-container {
    display: none;
    background: linear-gradient(135deg, #e7f8df 0%, #FEB47B 100%);
    border: 1px solid #090a0a;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1400px;
    text-align: left;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    font-size: 14px;
}

.text-container h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    padding-top: 10px;
    color: #022139;
}


.text-container p {
    font-size: 1.2em;
    color: #010e16;
}

.text-container .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

.head{
    width: 100%;
}

/* General Reset */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Container */
.containerbx {
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

/* Content Sections */
.content {
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.content.active {
    display: flex;
    opacity: 1;
    flex-direction: column;
    align-items: center;
}

/* Image Section */
.image-section img {
    width: 100%;
    max-width: 280px;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    background-color: #244238;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text Section */
.text-section {
    text-align: justify;
    padding: 10px 20px;
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0f0e0e;
    padding: 20px;
    font-style: italic;
}

/* Buttons */
.button {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .containerbx {
        margin: 20px;
        padding: 15px;
    }

    .image-section img {
        max-width: 220px;
    }

    .text-section {
        padding: 10px;
    }

    .text-section p {
        font-size: 1rem;
    }

    .button {
        flex-direction: column;
    }

    .btn1 {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .containerbx {
        width: 95%;
    }

    .text-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .image-section img {
        max-width: 180px;
    }
}
