* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    background: rgb(0, 8, 62);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 60px 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.adhoc {
    color: rgb(1, 13, 108);
}

.sol {
    color: rgb(0, 86, 183);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;

}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

nav ul li a:hover {
    font-weight: bold;
    color: rgb(0, 10, 88);
    text-shadow: 0.5 0.1;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: black;
    font-size: 35px;
}

.header {
    height: 60vh;
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: white;
    background: url(img/tir2.jpg);
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.01);
    background-size: cover;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header .textbox {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .textbox h1 {
    font-size: 3rem;
    padding-top: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    text-shadow: #000000 2px 2px 4px;
}

.header .textbox p {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    text-shadow: #000000 2px 2px 4px;
    margin-bottom: 1.5rem;
}

.header .textbox .hero-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    background-color: rgb(0, 86, 183);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 20px;
    transition: 0.4s ease;
}

.header .textbox .hero-btn:hover {
    background-color: rgb(0, 10, 88);
    border: 2px solid rgb(0, 10, 88);
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 30px;
    color: white;
    background-color: rgb(0, 86, 183);
    margin-top: auto;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services {
    padding: 50px 50px;
    background: rgb(0, 8, 62);
    color: white;
    text-align: center;
    margin-top: 1.5rem;
    text-shadow: #000000 1px 1px 2px;
}

.services h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.services p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: white;
}

.services h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

.services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}

.services .row .services-col {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgb(0, 86, 183);
    min-width: 300px;
    min-height: 300px;
}

.about {
    display: flex;
    padding: 80px 30px;
    background: rgb(0, 86, 183);
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    text-shadow: #000000 1px 1px 2px;
}

.about-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#rowabout {
    margin: auto;
}
.about h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;

}

.about p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
   
}

.contact {
    padding: 50px 50px;
    background: rgb(0, 8, 62);
    color: white;
    text-align: center;
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
    min-height: 600px;
    text-shadow: #000000 1px 1px 2px;
}

.contact h1 {
    text-align: center;
    margin-bottom: 0px;
    font-size: 2.2rem;
    
}

.contact p {
    margin-top: 5px;
    text-align: center;
    
    font-size: 1.5rem;
    color: white;
}

.contact a {
    color: white;
    text-decoration: none;

    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.3s ease;
    background-color: rgb(0, 86, 183);
    color: white;
    font-size: 1.2rem;

}

.contact a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 86, 183);
    border: solid 1px rgb(0, 86, 183);
}

.contact h3 {
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 200;
}

section {
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}

@media (max-width: 900px) {
    
    nav {
        padding: 10px 25px;
    }

    nav ul {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        overflow: hidden;
        flex-direction: column;
        text-align: center;
        background: rgb(0, 86, 183);
        gap: 0;
        z-index: 1100;
    }

    nav ul li {
        padding: 20px;
    }

    nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }

    .menu-icon i {
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .menu-icon i:active {
        transform: scale(0.9);
    }

    .header .textbox h1 {
        font-size: 2rem;
    }

    .header .textbox p {
        font-size: 1.2rem;
    }

    .services {
        padding: 30px 25px;
    }

    .about p {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about {
        height: 600px;
    }

}