

#category_parent, #extra_parent, #related_parent{border-radius: 5px;}
.area_img {
    border-color: #808080;
    background-color: #ddd;
}
.area_t {
    font-size: 14px;
}

.area_p {
    font-size: 18px;
}
.area_heading {
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Small screens up to 576px */
@media screen and (max-width: 576px) {
   

    .area_heading {
        font-size: 30px;
    }

    .area_p {
        font-size: 16px;
    }
}

/* Extra small screens up to 320px */
@media screen and (max-width: 320px) {
    .area_heading {
        font-size: 24px;
    }

    .area_p {
        font-size: 14px;
    }
}

/* Tiny screens up to 240px */
@media screen and (max-width: 240px) {
   

    .area_heading {
        font-size: 20px;
    }

    .area_p {
        font-size: 12px;
    }
}


.site_captions {
    font-size: 2rem; /* Adjust title size */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
}

/* Unique Styles for Biosphere Section */
.biosphere-container {
    padding: 20px;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
   
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius:8px;
	overflow: hidden; /* Prevent any content from overflowing */
}

.biosphere-header {
    font-size: 2rem; /* Adjust title size */
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
	margin: 0; /* Reset default margins */
    word-wrap: break-word; /* Break long words to avoid overflow */
}

.biosphere-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align vertically */
    flex-wrap: wrap;
}

.biosphere-main {
    flex: 1 1 70%; /* Takes up 70% of the space */
    padding: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.biosphere-sidebar {
    flex: 1 1 25%; /* Takes up 25% of the space */
    display: flex;
    justify-content: center; /* Align horizontally */
    align-items: center; /* Align vertically */
    padding: 20px;
    background: linear-gradient(135deg, #a8e063, #f3e55b); /* Light green to yellow gradient */
    border-radius: 12px; /* Slightly larger border radius for softer edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle outer shadow for depth */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 75px; /* Ensures enough height for vertical centering */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.biosphere-sidebar span {
    display: block;
    margin: auto;
}


/* General Styles */
.image-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple rows */
    gap: 15px; /* Add space between images */
    margin-top: 20px;
    justify-content: center; /* Center images horizontally */
}

.image-item {
    position: relative; /* Make the image item a positioning context */
    flex: 1 1 calc(33.333% - 15px); /* Each image takes up 1/3 of the row minus the gap */
    max-width: calc(33.333% - 15px); /* Ensure max width for each image */
    box-sizing: border-box;
}

.image-item img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}



/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
    .image-item {
        flex: 1 1 calc(50% - 15px); /* Switch to two images per row on smaller screens */
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .image-item {
        flex: 1 1 100%; /* One image per row on very small screens */
        max-width: 100%;
    }
}

@media (max-width: 240px) {
    .biosphere-sidebar{display:none;}
}

/* General container for the map section */
#map_canvas {
    border-radius: 5px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Prevent content overflow */
    margin-top: 20px; /* Add spacing from the content above */
    background-color: #f9f9f9; /* Light background for contrast */
}

/* Styling the iframe for responsiveness */
.responsive-iframe {
    width: 100%; /* Make the iframe take the full width of its container */
    height: 500px; /* Set a default height for the iframe */
    border: none; /* Remove default iframe border */
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .responsive-iframe {
        height: 300px; /* Reduce height for smaller screens */
    }

    #map_canvas {
        margin-top: 15px;
    }
}

/* Row Container for Flags */
.flag-row {
    padding: 20px;
    background-color: #f8f9fa; /* Light background color */
    border: 1px solid #ddd; /* Add a subtle border */
    border-radius: 5px; /* Rounded corners for modern design */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-top: 20px; /* Add spacing from the previous section */
}

/* Header Styling */
.flag-row-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
	color:#6c757d;
}

/* Flag Container */
.flag-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple rows */
    gap: 10px; /* Space between flags */
    justify-content: center; /* Center align flags */
}

/* Flag Images */
.area_img {
    width: 60px; /* Fixed width for flags */
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border: 1px solid #ddd; /* Add a border to each flag */
    border-radius: 4px; /* Rounded corners */
    transition: transform 0.3s ease; /* Hover effect */
}

.area_img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Additional Text */
.extra_size {
    font-size: 16px; /* Larger font size */
    font-weight: bold;
    margin-top: 20px;
	color:#6c757d;
}



/* Responsive Design */
@media (max-width: 768px) {
    .area_img {
        width: 50px; /* Adjust flag size for smaller screens */
    }
}





/* Adjustments for small screens */
@media (max-width: 768px) {
    .biosphere-main {
        padding: 10px; /* Reduce padding */
        font-size: 16px; /* Smaller font size */
    }
    
}

@media (max-width: 480px) {
    .biosphere-main {
        padding: 5px; /* Further reduce padding for very small screens */
        font-size: 14px; /* Further reduce font size */
    }
}


