*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
@font-face {
    font-family: POLAR;
    src: url(./Assets/POLAR-Regular.otf);
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    background-color: black;
    color: white;
}

.logo img{
    width: 250px;
    height: 250px;
    padding:10px 0 0 20px;
}
.section-1{
    background-color: black;
    height: 75vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10%;
}
.section-1 h1{
    font-family:'POLAR';
    font-size: 3rem;
    padding-bottom: 50px;
}

.section-1 h3{
    font-family:'POLAR';
    font-size: 1rem;
    padding-bottom: 10px;
}
.section-1 button{
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 20px 100px 20px 100px;
    border-radius: 25px;
    font-family:'POLAR';
    transition: background-color 0.3s ease;
}

.section-1 button:hover{
    background-color: black;
    color: white;
    border: 1px solid white;
}

.section-2{
    text-align: center;
    font-family:'POLAR';
    margin-bottom: 5%;
}

.section-2 h3{
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: red;
}

.section-2 h5{
    font-size: 1.5rem;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.section-3{
    text-align: center;
    font-family:'POLAR';
    margin-bottom: 5%;
}
.section-3 > h3{
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: red;
}

.service-box{
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 10%;
    height: 250px;
    transition: transform .3s ease;
}

.service-box > h3{
    padding-bottom: 10px;
}

.service-box i {
    font-size: 60px;
    color: black;
    margin-bottom: 15px;
}
.service-box:hover {
    transform: scale(1.05);
}
.service-box > img{
    width: 100px;
    height: 100px;
}

.our-services {
    font-family:'POLAR';
    text-align: center;
    padding: 20px;
    width: 80%;
    margin: 0;
}
.our-services > h3 {
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: red;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.coming-soon{
    grid-column: span 3;
    padding: 20px;
}

.coming-soon button{
    background-color: black;
    color: white;
    border: 1px solid white;
    font-weight: bold;
    font-family:'POLAR';
    transition: background-color 0.3s ease;
}
.contact-container {
    font-family:'POLAR';
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 10%;
}

#contact{
    color: red;
    font-size: 2.5rem; 
    margin: 25px;
    font-family:'POLAR';
}
form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color .3s ease, color .3s ease;
}

button:hover {
    background: white;
    color:black;
    border: 1px solid black;
}
.footer{
    font-family:'POLAR';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    text-align: center;
    padding:10px;
}

.footer > p{
    padding-top: 10px;
}

.footer > img{
    width: 150px;
    height: 150px;
}


@media (max-width: 1024px){
    .section-1 > h1{
        font-size: 2rem;
    }
    
    .logo img{
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 900px){
    .section-1 > h1{
        font-size: 1.5rem;
    }
    
.logo img{
    width: 150px;
    height: 150px;
}
    
}
@media (max-width: 768px){
    .section-1 > h1{
        font-size: 1.5rem;
    }
    .section-1 > h3{
        font-size: .5rem;
    }

    .section-1 > button{
        padding: 10px 15px 10px 15px;
    }
    .services-grid{
        display: flex;
        flex-direction: column;
    }
    .content-grid > .service-box{
        height: 50vh;
    }
}

@media (max-width: 550px) {
    .section-1 > h1{
        font-size: 1rem;
    }     
    .logo img{
    width: 125px;
    height: 125px;
}
}
@media (max-width: 375px){
    .section-1 > h1{
        font-size: .75rem;
    }
    .section-1 > button{
        padding: 5px 10px 5px 10px;
    }
    .section-2 h3{
        font-size: 1rem;
    }
    .section-2 h5{
        font-size: .5rem;
    }
    .section-3 > h3{
        font-size: 1rem;
    }
    
    .service-box > h2{
    font-size: 1.5rem;
    }
    #text{
        font-size: .5rem;
        padding: 0;
    }
    .our-services > h3 {
        font-size: 1rem;
    }
    #contact{
        font-size: 1rem;
    }
        
    .logo img{
    width: 100px;
    height: 100px;
    }
    .content-grid > .service-box{
        height: 30vh;
    }

}