.nav__link a {
    color: #333333;
}

.nav__link a:hover {
    color: #4d4d4d;
}

.nav__link a:hover .d-toggle {
    fill: #4d4d4d;
}


.d-toggle {
    fill: #333333;
}

.header-btn{
    background: #334097;
    padding: 0.9vw 1.5vw;
    color: #fcf6f6;
    outline: none;
    font-family: "Altone Trial", sans-serif;
    font-size: 1.1vw;
    border: 0.1vw solid #fff;
    border-radius: 1vw;
    z-index: 2;
    height: 100%;
    position: relative;
    cursor: pointer;
}

/* Vision intro */

.vision-header {
    position: relative;
    width: 100%;
    height: 30vw; /* Adjust height as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.248); /* Semi-transparent overlay */
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.vision-content {
    position: relative;
    z-index: 2; /* Ensures content appears above overlay */
    text-align: center;
    padding: 0 1vw;
}

.vision-title {
    font-size: 3vw;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vision-subtitle {
    font-size: 1.2vw;
    font-weight: 300;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .vision-header {
        height: 40vw;
    }

    .vision-title {
        font-size: 4vw;
    }

    .vision-subtitle {
        font-size: 2vw;
    }
}

/* First Section */

.first{
    padding: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-content{
    width: 45vw;
}

.text-content h1{
    font-size: 2.5vw;
    color: #1a237e;
    margin-bottom: 1vw;
    font-weight:bolder;
}

.subtext{
    font-size: 1.1vw;
    line-height: 1.5;
    color: black;
    margin: 0.5vw 0;
}

.last-paragraph{
    font-size: 1.1vw;
    line-height: 1.5;
}

.image-container {
    width: 40vw;
    height: 40vw;
    border-radius: 1.5vw;
    border: 0.5vw solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
}

/* Second Section */

.text-details{
    width: 45vw;
}

.text-details h1{
    font-size: 2.5vw;
    color: #1a237e;
    margin-bottom: 1vw;
}

.text-details p{
    font-size: 1.1vw;
    line-height: 1.5;
    margin-bottom: 1vw;
}

.text-details ul {
    list-style-type: none;
    padding: 0;
}

.text-details li {
    font-size: 1.1vw;
    line-height: 1.5;
    margin: 1vw 1vw;
    text-align: left;
}

.text-details li::before {
    content: "📌";
    color: #1b5e20;
    margin-right: 0.1vw;
    font-size: 1.2vw;
}

/* Third Section */

.text-header{
    font-size: 2.5vw;
    color: #1a237e;
    margin-bottom: 1vw;
}

/* Conclusion */

.conclude{
    padding: 3vw 5vw;
}

.conclude h3{
    font-size: 2vw;
    color: #1a237e;
    margin-bottom: 0.5vw; 
}

.conclude p{
    font-size: 1.1vw;
    line-height: 1.5;
}