.hero-homepage-image {
    position: relative;
    width: 100vw;
    /* Full viewport width */
    height: 100vh;
    /* Adjust height as needed */
    overflow: hidden;
    margin: 0;
    /* Remove default margins/paddings */
    padding: 0;
    /* Remove default margins/paddings */
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    color: #4b5563;
    padding: 2rem 1rem;
}

.about-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-text-col,
.about-image-col {
    width: 100%;
}

.about-heading {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #000;
}

.about-description {
    margin: 2rem 0 1rem;
    line-height: 1.8;
    color: #000;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    padding-top: 20px;
}

@media (min-width: 1024px) {
    .about-text-col {
        width: 40%;
    }

    .about-image-col {
        width: 60%;
    }
}

.about-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.decorative-symbol {
    margin-top: 1rem;
    padding-bottom: 50px;
}

.about-image {
    padding-top:20px;
}

.hero-homepage-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the image covers the container */
}

/* Image Title */
.image-title {
    position: absolute;
    top: 320px;
    /* Adjust as needed */
    left: 80px;
    /* Adjust as needed */
    color: #fff;
    /* Text color for visibility */
    font-size: 3em;
    /* Adjust font size as needed */
    z-index: 10;
    /* Ensure the title is on top of the image */
    margin-right: 973px;
    padding: 0;
    /* Remove default padding */
    line-height: 50px;
}

/* Scroll Down Message */
.scroll-down-message {
    position: absolute; /* Positioning relative to the container */
    bottom: 20px; /* Place above the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center the text */
    color: #ffffff;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    z-index: 100;
    padding: 10px 20px;
    border-radius: 5px;
}

.content-after {
    padding-top: 180px;
    width: 1920px;
    margin: auto;
    font-size: 1.3rem;
}

.about-container {
    max-width: 1820px;
}




/*GSAP*/
/* GSAP Slider Container */
.gsap-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    /* Fixed height for the container */
    aspect-ratio: 1 / 1;
    /* Ensures a square container */
    padding: 1rem;
    margin-top: 2rem;
}

/* GSAP Slider Wrapper */
.gsap-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* Ensures the slider takes full height of the container */
    padding-top: 30px;
}

.slides-container {
    position: relative;
}

.slides {
    display: flex;
    overflow: hidden;
}



.slide {
    position: relative;
    /* Ensure enough height for title visibility */
    min-height: 300px;
    /* Adjust as needed */
}


.slide-title {
    position: absolute;
    bottom: 10px;
    /* Distance from the bottom of the slide */
    left: 10px;
    /* Distance from the left edge */
    color: #242424;
    /* Text color for visibility */
    font-size: 18px;
    /* Adjust font size as needed */
    border-radius: 0-px;
    /* Rounded corners */
    z-index: 10;
    /* Ensure title is on top */
    background-color: rgb(255, 255, 255);
    /* Optional: background for readability */
    padding: 5px 10px;
    /* Optional: padding for better spacing */
}

/* Image Styling */
.slide img {
    display: block;
    width: 100%;
    /* Ensure the image fills the container width */
    height: auto;
    /* Maintain aspect ratio */
}



/* Slider Buttons */
.prev,
.next {
    position: absolute;
    top: -50px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    /* Semi-transparent background for visibility */
    color: #000000;
    /* White text color */
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 20;
    /* Ensure buttons are on top of the slider */
    font-size: 1.5rem;
    /* Adjust font size as needed */
    margin-top: 2rem;
    padding-bottom: 2rem;
}



.prev:hover,
.next:hover {
    color: transparent;
    /* Change to desired hover text color */
    background-color: transparent;
}

/* Position the Previous button */
.prev {
    left: 10px;
    /* Adjust distance from the left edge */
}

/* Position the Next button */
.next {
    right: 10px;
    /* Adjust distance from the right edge */
}

.space {
    margin-bottom: 5rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-title {
        font-size: 1.5em;
        top: 10px;
        left: 10px;
    }

    .taxonomy-list {
        font-size: 0.9em;
        top: 50px;
    }

    .description-container {
        padding: 22px;
    }

    .image-title {
        top: 146px;
    }

    .taxonomy-list {
        top: 175px;
    }
}

@media (max-width: 480px) {
    .image-title {
        margin-right: 103px;
        left: 15px;
        font-size: 2rem;
    }
}