* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    background-color: #151618;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar_logo {
    background-image: url(images/logo/Logo.png);
    height: 50px;
    width: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.navbar_button {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.navbar_cta {
    display: flex;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    transition: color 0.5s ease-in-out;
}

.navbar_cta:hover {
    background-color: #ffffff;
    color: black;
}

.navbar_menu {
    display: flex;
    align-items: center;
}

.navbar_item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding-right: 25px;
}

#menu-icon {
    font-size: 30px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
    display: none;
}

.navbar_item:hover {
    color: white;
}

.hero-wrapper {
    overflow: hidden;
}

.hero {
    position: relative;
    margin-top: 60px;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/background-edit.png);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    transition: transform 1s ease;
    z-index: -1;
  }
  
  .hero:hover::before {
    transform: scale(1.2);
  }

.hero_main {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1400px;
    padding: 60px 10%;
    gap: 20px;
}

.hero_left {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_right {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 300px;
    width: 100%;
    max-width: 300px;
    align-self: center;
    justify-self: center;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_image {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 85%;
    width: 85%;
    background-image: url(images/hero-image.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}


.left_header {
    font-weight: 600;
    line-height: 110%;
}

.left_subtext {
    margin-top: 15px;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8em;
}

.hero_cta {
    display: flex;
    width: 200px;
    height: 50px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 500;
    transition: color 0.5s ease-in-out;
}

.hero_cta:hover {
    background-color: #ffffff;
    color: black;
}

.hero_item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding-top: 20px;
    text-decoration: underline;
}

.hero_item:hover {
    color: white;
}

.trusted_by {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    color: white;
}

.logo {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #151618);
    content: "";
    z-index: 2;
}

.logo::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #151618);
    content: "";
    z-index: 2;
}

.logo-slide {
    display: inline-block;
    animation: 60s slide infinite linear;
}

.logo-slide img{
    height: 60px;
    width: 60px;
    margin: 0 40px;
}

@keyframes slide {
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-100%);
    }
}

@media (min-width: 768px) {
    .hero_main {
        grid-template-columns: 2fr 1fr;
    }

    .hero_left {
        width: 70%;
    }

    .left_header {
        font-size: 50px;
    }

    .hero {
        margin-top: 60px;
        height: 500px;
    }

    #menu-icon {
        display: none;
    }

    .navbar_menu {
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .left_header {
        line-height: 150%;
    }

    .navbar_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #2c2e30;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .navbar_menu.active {
        display: flex;
        max-height: 300px;
    }

    .navbar_item {
        padding: 15px 0;
    }

    #menu-icon {
        display: block;
    }

    .logo {
        margin-top: 40px;
    }

    .logo-slide img{
        margin: 0 20px;
    }

    .logo::before {
        width: 100px;
    }

    .logo::after {
        width: 100px;
    }
}

.service {
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1b1c1f;
}

.title {
    font-size: 2em;
    color: white;
    font-weight: 600;
}   

.title-subtext {
    margin-top: 5px;
    font-size: 14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.service-grid {
    margin-top: 30px;
    display: grid;
    gap: 20px;
    max-width: 1200px;
    color: white;
    grid-template-columns: 1fr;
}

.item {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
}

.item h2 {
    margin-top: 10px;
    font-size: 20px;
    text-align: left;
    font-weight: 500;
}

.item p {
    margin-top: 5px;
    font-size: 13px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .service {
        height: 650px;
    }

    .item {
        width: 90%;
    }

    .item1 {
        width: 90%;
        max-width: 400px;
    }
}

.service_cta {
    display: flex;
    width: 150px;
    height: 40px;
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none;
    border: none;
    transition: color 0.5s ease-in-out;
}

.item1 h2 {
    font-size: 20px;
    text-align: left;
    font-weight: 500;
}

.item1 p {
    margin-top: 5px;
    font-size: 13px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
}

.service_cta:hover {
    background-color: #ffffff;
    color: black;
}

.more-section {
    height: 650px;
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.more-grid {
    margin-top: 30px;
    display: grid;
    gap: 20px;
    max-width: 1200px;
    color: white;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .more-section {
        height: 400px;
    }
}

.item1 {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

input[type="tel"] {
    width: 100%;
    height: 35px;
    padding: 10px;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);;
    border-radius: 5px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

input[type="tel"]:focus {
    border-color: #ffffff;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.social-media {
    width: 100%;
    height: 250px;
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1b1c1f;
}

.social-links {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    transition: color 0.3s ease;
}

.social-links:hover {
    color: white;
}

.social-links-section {
    margin-top: 20px;
    width: 150px;
    display: flex;
    justify-content: space-between;
}

.about-section {
    display: flex;
    justify-content: center;
    height: 1500px;
    margin-top: 100px;
    margin-bottom: 50px;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
}

.content-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.4rem;
}

.content-bold {
    font-weight: 700;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-grid .title {    
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-grid .content-text {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (min-width: 768px) {
    .about-section {
        height: 800px;
        margin-top: 100px;
        margin-bottom: 0;
    }
    .about-grid {
        grid-template-columns: 1fr 2fr;
        padding: 60px 10%;
    }

    .about-grid .left-column {
        justify-content: flex-start;
        padding-right: 20px;
    }

    .about-grid .right-column {
        justify-content: flex-start;
    }
}

.error {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.team {
    text-align: center;
    padding-top: 100px;
    padding-left: 10%;
    padding-right: 10%;
}

.team-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: transform 0.3s;
    color: white;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: auto;
}

.team-member-info {
    padding: 20px;
    text-align: left;
}

.team-member h3 {
    margin: 0 0 5px;
}

.team-member p {
    margin: 0;
    color: #777;
}

@media (max-width: 768px) {
    .team-member {
        flex: 1 1 calc(50% - 40px);
    }
    
    .team {
        height: auto;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 480px) {
    .team-member {
        flex: 1 1 100%;
    }
    
    .team {
        height: auto;
        padding-left: 5%;
        padding-right: 5%;
    }
}