/* Logo Section */
.logo {
    font-size: 45px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
}

.logo-name {
    font-family: "Bebas Neue", serif;
    margin: 0;
}

.middle-name {
    font-family: "Rock 3D", serif;
    margin: 0;
}

/* Nav Links */
.nav-items {
    list-style: none;
    font-family: "Markazi Text", serif;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    color: rgb(56, 56, 56);
}

.nav-items>li:hover {
    text-decoration: underline;
    cursor: pointer;
}

.nav-items>li>button {
    background-color: black;
    color: white;
    font-size: 30px;
    font-family: "Markazi Text", serif;
    border-radius: 40px;
    padding: 0 15px;
}

.nav-items>li>button:hover {
    background-color: rgb(78, 78, 78);
    cursor: pointer;
}

/* Navbar section */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}


/* Hero section */
.hero {
    text-align: center;
    font-size: 60px;
    margin: 102px 0 30px;
    font-family: "Roboto", serif;
}

h2 {
    margin: 0;
}

.hero-des {
    font-size: 25px;
    margin: 50px 0;
}

/* Trusted section */
.trusted {
    margin: 150px 0;
}

.trusted>p {
    text-align: center;
    font-size: 15px;
}

.companies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

/* Gallery section */
.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gallery>img {
    height: 830px;
    width: 1540px;
    border: 1px rgb(224, 216, 216) solid;
    border-radius: 20px;
}

/* Inspiring Companies Section */
.inspiring {
    margin: 150px 0;
}

.inspiring>p {
    text-align: center;
    font-size: 15px;
}

.inspiring-companies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}