/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    font-size: 16px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}




.custom-line {
    border: 0;
    height: 2.5px;
    background-image: linear-gradient(90deg, rgb(0, 0, 0), rgb(32, 13, 105) 40%, rgba(207, 255, 185, 0.096));
    margin: 15px;
  }




.cover-image {
    position: absolute;
    /* bottom: 180px; */
    left: 220px;
    height: 80vh; /* Takes up 80% of the viewport height */
    width: 90%;
    right: 0%;
    overflow: hidden;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
}

/* Title block overlapping the bottom-left corner */
.title-block {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* right: 30px; */
    background-color: rgba(255, 255, 255, 0.68); /* Semi-transparent background */
    color: rgb(34, 17, 95);
    padding: 20px;
    border-radius: 8px;
}

.title-block h1 {
    margin-bottom: 10px;
    font-size: 3rem; /* Large title text */
}

.title-block h2 {
    font-size: 2rem; /* Subheading size */
}







/* Main container layout */
.container {
    display: flex;
    min-height: 100vh;
}


/* Sidebar styling */
.sidebar {
    background-color: #eeeeee;
    padding: 0px;
    width: 220px;
    border-right: 1px solid #ccc;
    position: fixed;
    height: 100%;
    overflow-y: auto;
}

.sidebar nav ul {
    list-style-type: none;
}

.sidebar nav ul li {
    margin: 13px 0;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
}

.sidebar nav ul li a:hover {
    color: #007acc;
}


/* Content styling */
.content {
    margin-left: 220px;
    padding: 40px;
    padding-top: 86vh; /* Adjusted to accommodate the cover image */
    background-color: #ffffff;
    flex: 1;
}

.content h1, .content h2, .content h3, .content h4 {
    color: #333;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Layout for text and image in sections */
.content-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.content-flex img {
    flex-shrink: 1;
}

.section-image {
    max-width: 48%;
    border-radius: 8px;
    
}

.section-image-single {
    max-width: 85%;
    border-radius: 8px;
}

/* Vertical image styling */
.section-image-vertical {
    height: 1500px;
    width: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .content-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-image, .section-image-vertical {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 20px;
    }
}








/* Image array container */
#image-array-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
}

/* Each image card */
.image-card-large {
    background-color: #f1fffe;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px); /* Responsive 2 columns */
    padding: 13px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Image styling */
.image-card-large img {
    max-width: 100%;
    border-radius: 5px;
}

/* Image info (text) styling */
.image-large-info p {
    font-size: 1rem;
    margin: 10px 0;
    color: #555;
}

/* Hover effect */
.image-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    #image-array-large .image-card {
        width: calc(50% - 10px); /* Responsive 2 columns for tablet */
    }
}

@media screen and (max-width: 480px) {
    #image-array-large .image-card {
        width: 100%; /* Responsive 1 column for mobile */
    }
}

















/* Image array container */
#image-array-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 1px;
}

/* Each image card */
.image-card-small {
    background-color: #f1fffe;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(33% - 10px); /* Responsive 3 columns */
    padding: 13px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Image styling */
.image-card-small img {
    max-width: 100%;
    border-radius: 5px;
}

/* Image info (text) styling */
.image-small-info p {
    font-size: 0.9rem;
    margin: 10px 0;
    color: #555;
}

/* Hover effect */
.image-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    #image-array-small .image-card {
        width: calc(33% - 10px); /* Responsive 3 columns for tablet */
    }
}

@media screen and (max-width: 480px) {
    #image-array-small .image-card {
        width: 100%; /* Responsive 1 column for mobile */
    }
}

















/* Image array container */
#image-array-condense {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    margin-top: 20px;
}

/* Each image card */
.image-card-condense {
    background-color: #f1fffe;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(25% - 5px); /* Responsive 4 columns */
    padding: 8px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Image styling */
.image-card-condense img {
    max-width: 100%;
    border-radius: 5px;
}

/* Image info (text) styling */
.image-condense-info p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #555;
}

/* Hover effect */
.image-card-condense:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    #image-array-condense .image-card {
        width: calc(25% - 10px); /* Responsive 4 columns for tablet */
    }
}

@media screen and (max-width: 480px) {
    #image-array-condense .image-card {
        width: 100%; /* Responsive 1 column for mobile */
    }
}


























/* Image array container */
#image-array-single {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 5px;
}

/* Each image card */
.image-card-single {
    background-color: #f1fffe;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(98%); /* Responsive 1 columns */
    padding: 8px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Image styling */
.image-card-single img {
    max-width: 100%;
    border-radius: 5px;
}

/* Image info (text) styling */
.image-single-info p {
    font-size: 1rem;
    margin: 5px 0;
    color: #555;
}

/* Hover effect */
.image-card-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}