@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Funnel+Display:wght@300..800&family=Orbitron:wght@400..900&display=swap');

:root {
    --bg-color: black;
    --second-bg-color: #101010;
    --text-color:white;
    --main-color: #ea580c;
    --underline-color: rgb(245, 245, 91);
    --border-color: #e6e6e6;

    --bg-color2: #080808;
    --second-bg-color: #101010;
    --main-color: #ea580c;
    
    
    --title-color: #0B0C0C;
    --text-color: #475467;
    --white-color: #ffffff;

    --primary: #04aa5c;
    --primary-hover: #00cc70;
    --secondary: #06ce71;
    --secondary-hover: #04aa5c;
    --primary-color2: #00a359;

    --primary-color1: #00a359;

    --font-inter: "Inter", sans-serif;
    --font-hankenGrotesk: "Hanken Grotesk", sans-serif;
    --bot-font-family: "DMS";

    --main-font-family: "Orbitron", serif;
    --main-font-family2: "Exo 2", serif;
    --sec-font-family: "Funnel Display", serif;
    --sec-font-family2: "Atkinson Hyperlegible Next", serif;

    --black: #030303;
    --dark-grey: #969696;
    --turquoise: #00e5d1;
    --white: white;
    --royal-blue: #2577f9;
}

.nav_links .link:hover {
    color: var(--primary-hover) !important; /* Change text color on hover */
}
.dropdown-menu li a:hover {
    color: var(--primary-hover);
}
.nav_links .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* Position the underline at the bottom */
    width: 0; /* Initially set width to 0 */
    height: 1px; /* Thickness of the underline */
    background-color: var(--primary-color2) !important; /* Underline color */
    transition: width 0.4s ease; /* Smooth expand effect */
}

/* Main section styling */
.info-section {
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures H1 is at the top, line at bottom */
    padding: 50px 5%;
}

/* About Us Heading (Top Left) */
.content-left {
    position: absolute;
    top: 2rem;
    left: 5%;
    cursor: pointer;
    text-wrap: nowrap;
    width: 100%;
}

.content-left h1 {
    margin-top: 7rem;
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-align: left;
}

.content-left span {
    font-family: var(--sec-font-family);
    transition: color 0.3s ease-in-out;
}

.content-left #com-name {
    font-family: var(--main-font-family2);
}

/* Centered horizontal line at the bottom */
.center-line {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initially Hide Content */
.info-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* When visible, apply animation */
.info-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wrapper to ensure smooth transition */
.com-name-wrapper {
    position: relative;
    display: inline-block;
    height: 5rem; /* Adjust based on font size */
    width: auto;

    background: linear-gradient(135deg, #e0e0e0, #c0c0c0, #ffffff, #a0a0a0);
    background-clip: text;
    -webkit-background-clip: text;
    color: #d4d4d4; /* Light grey base */
    
    font-weight: bold;
    text-transform: uppercase;

    /* Subtle metallic text shadow */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6), 
                 -1px -1px 2px rgba(100, 100, 100, 0.5);
}



/* Default state for L-VelUp */
#com-name {
    position: absolute;
    left: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Default state for Up (hidden below) */
#com-name-alt {
    position: absolute;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Active class to trigger animation */
.switch-text #com-name {
    transform: translateY(-100%);
    opacity: 0;
}

.switch-text #com-name-alt {
    transform: translateY(0);
    opacity: 1;
}


/* Custom Cursor Circle */
.custom-cursor {
    position: fixed;
    width: 60px;  /* Adjust size of the circle */
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent white */
    border-radius: 50%;
    pointer-events: none; /* Ensures it doesn’t block clicks */
    transform: translate(-50%, -50%); /* Centers it on the real cursor */
    backdrop-filter: blur(0.5px); /* Subtle blur effect */
    z-index: 9999; /* Ensures it stays on top */
    transition: transform 0.1s ease-out;
}

/* Ensure the default cursor is visible */
body {
    cursor: default; /* Keep the default cursor */
}


/* Content */
/* Second Section Styling */
.info-content {
    background-color: white;
    height: 210vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content to top & image to bottom */

    margin: 0rem;
    padding: 0rem;
}


.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    position: relative;
    padding-left: 40px; /* Adjust to ensure content doesn't overlap the line */
    min-height: 90vh; /* Ensuring enough height */
}

/* Vertical Line */
.content-container::before {
    content: "";
    position: absolute;
    left: 40px; /* Adjust as needed */
    top: 14%;
    width: 2px; /* Thickness of the line */
    height: 130%;
    background: linear-gradient(to bottom, rgb(7, 176, 232), rgb(1, 1, 1));

}



/* Vision Section (Left Aligned) */
.vision {
    width: 65%;
    text-align: left;
    position: absolute;
    top: 0;
    margin-left: 2rem;
    padding-top: 4rem;
}

/* Mission Section (Right Side, Below Vision) */
.mission {
    width: 70%;
    text-align: left;
    position: absolute;
    top: 100px; /* Adjust spacing */
    right: 0;
    padding-top: 9rem;
}

/* Story */
.cause {
    width: 70%;
    text-align: left;
    position: absolute;
    top: 100px; /* Adjust spacing */
    padding-top: 25.5rem;
    margin-left: 4rem;
}

/* Headings */
.vision h2, .mission h2, .cause h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #474646;
    font-family: var(--main-font-family);
}

.vision span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--main-font-family);
}

.mission span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--main-font-family);
}

.cause span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--main-font-family);
}

/* Paragraph Styling */
.vision p, .mission p, .cause p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.3;

    font-weight: 500;
    opacity: 0.9;
    font-family: var(--font-inter);

    margin-top: 1rem;
}

.cause .highlight { 
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-family: var(--sec-font-family);
}



/* Image container at the bottom */
.img {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0; 
    transform: translateX(-50%);
    z-index: 1;

    padding-top: 0rem;
    padding-bottom: 3rem;
}

.img img {
    width: 100%;
    max-width: 900px;
    height: 100%;
    max-height: 350px;
    opacity: 0.7; /* Slight transparency */
    object-fit: cover;

    border-radius: 18px;
    transition: all 0.5s ease-in-out;
}

.img img:hover {
    opacity: 1;
}

/* Initially hide the content and move it down */
.vision, .mission, .cause, .img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When content is in view, make it visible */
.vision.visible, .mission.visible, .cause.visible, .img.visible {
    opacity: 1;
    transform: translateY(0);
}


/* section 4 - values */
.values {
    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 60px 20px;
}

/* Title Styling */
.values-title {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 50px;

    color: white;

    font-family: var(--main-font-family2);
}

.values-title span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2596f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
}


/* Container for Grid Layout */
.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Card Styling */
.value-card {
    background: #2222228f;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
}

/* Number (Top-Right Corner) */
.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: transparent; /* Make text color transparent */
    -webkit-text-stroke: 1px rgb(158, 158, 158); /* White text outline */
    text-stroke: 1px white; /* Fallback for some browsers */

    font-family: var(--main-font-family);

    transition: all 0.3s ease-in-out;
}


/* Icon Styling */
.icon {
    font-size: 30px;
    margin-bottom: 10px;

    color: transparent; /* Make text color transparent */
    -webkit-text-stroke: 1px rgb(235, 235, 235); /* White text outline */
    text-stroke: 1px white; /* Fallback for some browsers */

    transition: all 0.3s ease-in-out;
}

.value-card:hover .icon {
    color: transparent; /* Make text color transparent */
    -webkit-text-stroke: 1px rgb(255, 232, 118); /* White text outline */
    text-stroke: 1px white; /* Fallback for some browsers */
}


.value-card:hover .value-number {
    color: rgb(241, 241, 241); /* Make text color transparent */
}

/* Title Styling */
.values h3 {
    font-size: 1.7rem;
    margin-bottom: 22px;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #00e5d1 0%, #2596f9 30%, #00e5d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}


/* Description Text */
.value-card p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #b9b9b9;
    font-family: var(--main-font-family2);
    letter-spacing: 0.2px;
}

/* section 5 - people */
.people {
    text-align: center;
    padding: 60px 20px;
    background: #000000;
}

.people-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--main-font-family2);

    color: white;
}

.people-title span {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #808080 0%, #cecece 30%, #c0c0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--main-font-family2);
}

.people-description {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #acacac;

    font-family: var(--sec-font-family2);
}

/* Grid layout for team cards */
.people-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual team card styling */
.team-card {
    background: #2222228f;
    border-radius: 10px;
    padding: 15px 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.team-card:hover {
    box-shadow: 4px 6px 15px rgba(92, 193, 255, 0.2) !important; /* Slightly stronger shadow */
}


.team-card img {
    width: 450px; /* Set a fixed width */
    height: 425px; /* Set a fixed height */
    border-radius: 16px;
    object-fit: fit-content;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}


/* Align text content to the left */
.team-card h3,
.team-card .role,
.team-card .bio {
    text-align: left;
    width: 100%; /* Ensures alignment within the card */
    padding-left: 20px; /* Adds space from the left edge */
}

/* Name Styling */
.team-card h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
    opacity: 0.8;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #00e5d1 0%, #2596f9 30%, #00e5d1 100%);
    -webkit-background-clip: text;
    background-clip: text;

}

/* Role Styling */
.team-card .role {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e7e7e7;
    border-radius: 36px;
    width: fit-content;
    padding: 3.5px 10px;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
    background-color: transparent;

    /* Gradient border */
    border: 1px solid transparent;
    background: linear-gradient(black, black) padding-box, 
                linear-gradient(45deg, #2596f9, #00e5d1) border-box;
}


/* Description Styling */
.team-card .bio {
    font-size: 0.95rem;
    color: #b6b6b6;
    max-width: 100%;
    letter-spacing: 0.1px;
    line-height: 1.4;

    font-family: var(--main-font-family2);
}

.bio .highlight {
    font-weight: 500;
    color: #dfdfdf;
    font-style: italic;
}

/* section - 6 contact */
.reach-out {
    background-color: black;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.reach-out-container {
    max-width: 700px;
    margin: 0 auto;
    
    padding-bottom: 3.5rem;
}

.reach-out h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: var(--main-font-family2);

    color: white;
}

.reach-out p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    font-family: var(--sec-font-family2);
}

.talk-to-us-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 28px;
    margin-top: 30px;
    position: relative;
    left: 0;
    color: #fff;
    text-align: center;
    letter-spacing: .03125rem;
    line-height: 1;
    cursor: pointer;
    background-color: #000;
    background-image: linear-gradient(158deg, #002fff 3%, #29ffb1 99%);

    border: 1px solid #80b8fa;
    font-family: var(--font-inter);

    transition: all 0.3s ease-in-out;
}

.talk-to-us-btn:hover {
    background-image: linear-gradient(158deg, #002fff 3%, #29ff89 99%);
    transform: scale(0.99);
}



/* Initially hide the content and move it down */
.values-title, .value-card, .people-title, .people-description, .team-card, .reach-out-container {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When content is in view, make it visible */
.values-title.visible, .value-card.visible, .people-title.visible, .people-description.visible, .team-card.visible, .reach-out-container.visible {
    opacity: 1;
    transform: translateY(0);
}







/* Responsive: Stack cards in one column on smaller screens */
@media (max-width: 1100px) {
    .people-title {
        font-size: 2.9rem;
    }
    
    .people-description {
        font-size: 1rem;
    }

    .team-card img {
        width: 440px; /* Set a fixed width */
        height: 400px; /* Set a fixed height */
    }
}


@media (max-width: 950px) {
    .people-container {
        grid-template-columns: 1fr; /* Single column layout */
        max-width: 70%;
    }
}

/* RWD */
@media (max-width: 950px) { 
    .content-left h1 {
        font-size: 3.5rem;
        margin-top: 10rem;
    }

    .vision h2, .mission h2, .cause h2 {
        font-size: 1.5rem;
    }

    .vision p, .mission p, .cause p {
        font-size: 1rem;    
        font-weight: 500;
    }
    
    .vision {
        padding-top: 5rem;
    }
    
    .mission {
        padding-top: 7rem;
    }
    
    .cause {
        padding-top: 25rem;
        margin-left: 2rem;
    }

    .content-container::before {
        top: 14%;
        height: 140%; 
    }

    .img {
        width: 100%;
        height: 70vh;
        padding-top: 1rem;
        padding-bottom: 3rem;
    }
    
    .img img {
        width: 100%;
        max-width: 800px;
        height: 100%;
        max-height: 350px;
    }

    .values-title {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .value-number {
        font-size: 2.7rem;
    }
    
    .icon {
        font-size: 26px;
    }
    
    .values h3 {
        font-size: 1.5rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }

    .people-title {
        font-size: 2.8rem;
    }
    
    .people-description {
        font-size: 0.9rem;
    }

    .team-card img {
        width: 400px; /* Set a fixed width */
        height: 390px; /* Set a fixed height */
    }
}

@media (max-width: 815px) { 
    .content-left h1 {
        font-size: 3.3rem;
    }

    .vision h2, .mission h2, .cause h2 {
        font-size: 1.3rem;
        font-weight: 500;
    }

    .vision p, .mission p, .cause p {
        font-size: 0.95rem;
        line-height: 1.4;
    
        font-weight: 500;
    }

    .vision {
        padding-top: 5rem;
    }
    
    .mission {
        padding-top: 7rem;
    }
    
    .cause {
        padding-top: 23rem;
        margin-left: 2rem;
    }

    .content-container::before {
        top: 14%;
        width: 2px; /* Thickness of the line */
        height: 135%; 
    }

    .img img {
        width: 100%;
        max-width: 600px;
        height: 100%;
        max-height: 320px;
    }

    .content-container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .vision, .mission, .cause {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .team-card {
        min-height: 300px; 
        max-width: 350px;
        left: 15%;
    }

    .team-card img {
        width: 320px; /* Set a fixed width */
        height: 300px; /* Set a fixed height */
    }
    
}

@media (max-width: 650px) { 
    .content-left h1 {
        font-size: 2.5rem;
        margin-top: 13rem;

    }

    .vision h2, .mission h2, .cause h2 {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .vision p, .mission p, .cause p {
        font-size: 0.86rem;
        line-height: 1.4;
    
        font-weight: 500;
    }
    
    .mission {
        padding-top: 9.5rem;
    }
    
    .cause {
        padding-top: 26rem;
        margin-left: 2rem;
    }

    .content-container::before {
        height: 144%; 
    }

    .content-container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .vision, .mission, .cause {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .img img {
        margin-top: 2rem;
        width: 100%;
        max-width: 470px;
        height: 100%;
        max-height: 300px;
    }

    .values-title {
        font-size: 2rem;
        font-weight: bold;
    }

    .value-number {
        font-size: 2.4rem;
    }
    
    .icon {
        font-size: 23px;
    }
    
    .values h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.8rem;
    }

    .people-container {
        margin-right: 25% !important;
    }

    .people-title {
        font-size: 2.45rem;
    }
    
    .people-description {
        font-size: 0.8rem;
    }

    .team-card img {
        width: 310px; /* Set a fixed width */
        height: 280px; /* Set a fixed height */
    }

    .team-card h3 {
        font-size: 1.7rem;
    }
    
    .team-card .role {
        font-size: 0.8rem;
    }
    
    .team-card .bio {
        font-size: 0.85rem;
    }

    .reach-out h2 {
        font-size: 2.5rem;
    }
    .reach-out p {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .img img {
        margin-top: 2rem;
        width: 100%;
        max-width: 400px;
        height: 100%;
        max-height: 270px;
    }

    .values-title {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .value-number {
        font-size: 2rem;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .values h3 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.7rem;
    }

    .people-title {
        font-size: 2.3rem;
    }
    
    .people-description {
        font-size: 0.8rem;
    }

    .team-card {
        min-height: 300px; 
        max-width: 350px;
        left: 13%;
    }

    .team-card img {
        width: 290px; /* Set a fixed width */
        height: 260px; /* Set a fixed height */
    }

    .cause {
        padding-top: 29rem;
        margin-left: 2rem;
    }

    .content-container::before {
        height: 150%; 
    }

    .img img {
        margin-top: 5rem;
        width: 100%;
        max-width: 450px;
        height: 100%;
        max-height: 250px;
    }
}


@media (max-width: 400px) {

    .info-section {
        width: 90%;
        height: 90vh;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Ensures H1 is at the top, line at bottom */
        padding: 50px 5%;
    }
    
    /* About Us Heading (Top Left) */
    .content-left {
        position: absolute;
        top: 2rem;
        left: 5%;
        cursor: pointer;
        text-wrap: nowrap;
        width: 100%;
    }
    
    .content-left h1 {
        margin-top: 17rem;
        font-size: 1.8rem;
        text-wrap: nowrap;
    }
    
    .cause {
        padding-top: 32rem;
        margin-left: 2rem;
    }


    .img img {
        margin-top: 7.5rem;
        width: 100%;
        max-width: 350px;
        height: 100%;
        max-height: 270px;
        margin-bottom: 0 !important;
    }

    .values-title {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .value-number {
        font-size: 2rem;
    }
    
    .icon {
        font-size: 20px;
    }
    
    .values h3 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.7rem;
    }

    .people-title {
        font-size: 2rem;
    }
    
    .people-description {
        font-size: 0.8rem;
    }

    .team-card {
        min-height: 280px; 
        max-width: 330px;
        left: 0%;
    }

    .team-card img {
        width: 270px; /* Set a fixed width */
        height: 235px; /* Set a fixed height */
    }
}

@media (max-width: 500px) {
    .com-name-wrapper {
        text-wrap: nowrap !important;
    }

    .com-name-wrapper .line-3 {
        font-size: 1.5rem;
        text-wrap: nowrap !important;
        width: 200px !important;
    }

}

/* Responsive: Single Column on Smaller Screens */
@media screen and (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr; /* One column on small screens */
    }
}

@media (max-width: 350px) {
    .com-name-wrapper {
        text-wrap: nowrap !important;
    }

    .com-name-wrapper .line-3 {
        font-size: 1.5rem;
        text-wrap: nowrap !important;
        width: 200px !important;
    }

}

@media (max-width: 1100px) {
    .dropdown-menu li a {
        display: none;
        text-wrap: nowrap;
    }

    .dropdown .dropdown-icon {
        display: none;
    }
    .dropdown-menu:hover {
        display: none;
    }
}

@media (min-height: 800px) {
    .content-left {
        top: 3rem;
        left: 5%;
    }
    
    .content-left h1 {
        margin-top: 10rem;
    } 

    .content-container {
        min-height: 70vh; /* Ensuring enough height */
    }

    .img {
        width: 100%;
        height: 70vh;
        padding-top: 0rem;
        padding-bottom: 3rem;
    }
    
    .img img {
        width: 100%;
        max-width: 900px;
        height: 100%;
        max-height: 350px;
    }
    
}