* {
    box-sizing: border-box;
}

/* body {
    background: url(img/home-background.png) rgb(0, 0, 0) top center / 100% 700px  no-repeat;
    width: 1280px;
    height: 874px;
    flex-shrink: 0;
    color: white;
    font-family: "Zain", sans-serif;
} */



body {
    /* background: rgb(0, 0, 0);  */
    /* Set a solid background color^^ */
    background: linear-gradient(to bottom, #10133D, #461B75) no-repeat;
    /* width: fit-content;
    height: 1317px; */
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-shrink: 0;
    color: white;
    font-family: "Zain", sans-serif;
    position: relative;
}

.header {
    display: grid;
    grid-template-columns: repeat(4, 30% 45% 23%);
    margin:20px;
    gap: 0px;
 }


 footer {
    background-color: #10133D;
    margin-top: 100px;
    padding: 32px; 
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.footer-nav {
    display: grid;
}

.footer-links {
    color: #ffffff;
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    line-height: 80%;
    
}















.burger {
    font-size: 30px;
    cursor: pointer;
    /* position: fixed; */
    /* top: 20px;
    left: 20px; */
    width: 10px;
    display: flex;
    align-content: center;
    align-items: center;
    z-index: 2;
    color: #ffffff;
}

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.9);
    overflow-x: hidden;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 36px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
}

.overlay-content a:hover, .overlay-content a:focus {
    color: #f4f4f4;
    background-color: #575757;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: #f1f1f1;
    transition: 0.3s;
    z-index: 9;
}

.closebtn:hover {
    color: #ffffff;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}


















.logo {
    height: 83px;
}

.first {
    display: grid;
    grid-template-columns: repeat(2, 66%);
}

.immerse {
    width: 412px;
    height: 380px;
    flex-shrink: 0;
    background-color: blue;
    padding: 30px;
    border-radius: 10%;
}

.article {
    width: 358px;
    color: #FFF;
    font-family: "Avenir Next";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.145%;
}

.jobs-desc {
    margin: 40px;
    margin-bottom: 100px;
}


















h1 {
    color: #FFF;
    font-family: Zain;
    font-size: 160px;
    font-style: normal;
    font-weight: 900;
    line-height: 80%; /* 180px */
    letter-spacing: 1.8px;
    text-transform: uppercase;
    /* background-color: black; */
    margin: 0;
}

h2 {
    color: #FFF;
    font-family: Zain;
    font-size: 108px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 128px */
    letter-spacing: 1.28px;
    text-transform: uppercase;
}

h3 {
    color: #FFF;
    font-family: Zain;
    font-size: 96px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 96px */
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin: 0;
}

h4 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 40px */
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0;
}

h5 {
    font-size: 24px;
    font-weight: 200;
    margin: 0;
}

p {
    /* width: 529px; */
    color: #FFF;
    font-family: "Avenir Next";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.145%; /* 35.566px */
    width: 100%;
}

button {
    margin-right: 5px;
    text-align: center;
    font-family: "Avenir Next";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px;
    border-radius: 20px;
    background: #FFF;
}











.links {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    text-align: center;
    font-family: Zain;
    font-size: 24px;
    font-weight: 900;
    text-transform: capitalize;
    z-index: 2; /* Ensure links are above the background but below the circle */
}

.links a {
    color: #FFF;
    text-decoration: none;
    z-index: 2;
}

a:hover {
    color: #90C33E;
    /* color: #461B75; */
}

/* Gradient overlay */
#link-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    z-index: 3;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Circle effect */
.circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    background: transparent;
    box-shadow: 0px 0px 0px 9999px rgb(70, 27, 117, 0.9);
    z-index: 4; /* Ensure the circle is above everything else */
    transition: box-shadow 0.1s ease;
}























































@media screen and (max-width: 1200px) {
    
    .header {
        display: grid;
        grid-template-columns: repeat(3,37% 30% 27%);
        margin:10px;
        gap: 0px;
     }
    
    .logo {
        height: 70px;
        margin: 10px;
    }

    h3 {
        color: #FFF;
        font-family: Zain;
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%; /* 96px */
        letter-spacing: 0.96px;
        text-transform: uppercase;
        margin: 0;
    }

    h5 {
        font-size: 24px;
        font-weight: 200;
        margin: 0;
    }
    
    footer {
        background-color: #10133D;
        margin-top: 100px;
        padding: 24px; 
        display: grid;
        grid-template-columns: repeat(2, 55%);
    }
    
    .footer-nav {
        display: grid;
    }
    
    .footer-links {
        color: #ffffff;
        font-size: 48px;
        font-style: normal;
        font-weight: 900;
        line-height: 80%;
        
    }

    .footer-logo {
        display: grid;
        grid-template-columns: repeat(2, 70% );
    }

}


@media screen and (max-width: 900px) {

    .header {
        display: grid;
        grid-template-columns: repeat(3, 30% 20% 42%);
        margin:10px;
        gap: 0px;
     }
    
    .logo {
        height: 70px;
        margin: 10px;
    }

    h3 {
        color: #FFF;
        font-family: Zain;
        font-size: 64px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%; /* 96px */
        letter-spacing: 0.96px;
        text-transform: uppercase;
        margin: 0;
    }

    h5 {
        font-size: 24px;
        font-weight: 200;
        margin: 0;
    }
    
    footer {
        background-color: #10133D;
        margin-top: 100px;
        padding: 24px; 
        display: grid;
        grid-template-columns: repeat(2, 55%);
    }
    
    .footer-nav {
        display: grid;
    }
    
    .footer-links {
        color: #ffffff;
        font-size: 48px;
        font-style: normal;
        font-weight: 900;
        line-height: 80%;
        
    }

    .footer-logo {
        display: grid;
        grid-template-columns: repeat(2, 70% );
    }

}



@media screen and (max-width: 530px) {

    .header {
        display: grid;
        grid-template-columns: repeat(3,30% 24% 43%);
        margin:10px;
        gap: 0px;
     }
    
    .logo {
        height: 50px;
        margin: 10px;
    }

    h3 {
        color: #FFF;
        font-family: Zain;
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%; /* 96px */
        letter-spacing: 0.96px;
        text-transform: uppercase;
        margin: 0;
    }

    h4 {
        color: #FFF;
        font-size: 40px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%; /* 40px */
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin: 0;
    }

    h5 {
        font-size: 16px;
        font-weight: 200;
        margin: 0;
    }

    p {
        /* width: 529px; */
        color: #FFF;
        font-family: "Avenir Next";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 111.145%; /* 35.566px */
        width: 100%;
    }

    .links {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 20px;
        text-align: center;
        font-family: Zain;
        font-size: 24px;
        font-weight: 900;
        text-transform: capitalize;
        margin: 16px;
        z-index: 2; /* Ensure links are above the background but below the circle */
    }

    .links a {
        color: #FFF;
        text-decoration: none;
        z-index: 2;
    }
    
    a:hover {
        color: #90C33E;
        /* color: #461B75; */
    }
    
    /* Gradient overlay */
    #link-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.7));
        z-index: 3;
        pointer-events: none; /* Allow clicks to pass through */
    }
    
    /* Circle effect */
    .circle {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        pointer-events: none;
        background: transparent;
        box-shadow: 0px 0px 0px 9999px rgb(70, 27, 117, 0.9);
        z-index: 4; /* Ensure the circle is above everything else */
        transition: box-shadow 0.1s ease;
    }

    footer {
        background-color: #10133D;
        margin-top: 100px;
        padding: 24px; 
        display: grid;
        grid-template-columns: repeat(2, 55%);
    }
    
    .footer-nav {
        display: grid;
    }
    
    .footer-links {
        color: #ffffff;
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 80%;
        
    }

    .footer-logo {
        display: grid;
        grid-template-columns: repeat(2, 70% );
    }

}