/*h1{
    color: rebeccapurple;
}*/
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


h1 {
    font-size: 3rem;
    color: #FFD700; /* Gold for contrast */
}
*{
    margin : 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items : end;
    /*padding: 10px;*/
    background: rgba(0, 0, 0, 0.6);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 999;
}

body {
    background-color: #4B0082; /* Royal Purple */
    color: white;
}

.navbar__container {
    display: flex;
    justify-content: inherit;
    height: 80px;
    z-index: 1;
    width: 100%;
    margin : 0 auto ;
    padding: 0 50px;
}

#navbar__logo{

    background-image: linear-gradient(to top,rgba(0, 0, 0, 0.5) 0%, rgb(255,255,255) 1%);
    -webkit-background-clip: text;
    /*-moz-background-clip: text;*/
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    justify-content: right;
    list-style: none;
    height: 80px;
}

.navbar__menu a:hover {
    color: #FFD700;
}

.navbar__item {
    height: 80%;
}

.navbar__links {
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content : center;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('assets/images/royalPurple.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 40px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.content p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.btn {
    padding: 12px 24px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 5px;
}


.btn-primary {
    background: #FFD700; /* Gold */
    color: #4B0082;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.partners img {
    max-width: 40%;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}

.landscape-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.landscape-logos img {
    max-width: 45%;
    height: auto;
}

.container p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.container h2 {
    color: #FFD700;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    text-align: center;
}

body {
    background-color: #4B0082;
    color: white;
}

.container .About__Us,.Our__Partners,.CEO__Address{
    margin-bottom: 100px;
}

@media (max-width: 600px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items : end;
        padding: 10px;
        background: rgba(0, 0, 0, 0.6);
        position: static;
        width: 100%;
        top: 0;
        height: 100%;
        z-index: 999;
    }

    #navbar__logo{

        background-image: linear-gradient(to top,rgba(0, 0, 0, 0.5) 0%, rgb(255,255,255) 1%);
        -webkit-background-clip: text;
        /*-moz-background-clip: text;*/
        -webkit-text-fill-color: transparent;
        display : block;
        align-items: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 1rem;
        position: absolute !important;
        left : 15px;
        top: 25px;
        width : 40%

    }

    .navbar__links {
        color: white;
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content : right;
        padding: 0 0.5rem;
        height: 60%;
    }

    .navbar__container {
        display: flex;
        justify-content: inherit;
        height: 80px;
        z-index: 1;
        width: 100%;
        margin : 0 auto ;
        padding: 0 50px;
    }
    .navbar__menu {
        display: flex;
        align-items: center;
        justify-content: right;
        position: absolute !important;
        height: 80px;
        right : 10px;
        top : 10px;
    }


}
