* , *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

}
html{
   font-size: 62.5%;
   
     
}

body{
     font-family: "cairo", sans-serif;
    color: aliceblue;
    margin: 0;
    padding: 0;
    background-color: #0d0f0a;
}
.header{
  background-image: url('./nasa-Q1p7bh3SHj8-unsplash.jpg');
    padding: 20px 0;
    text-align: center;
    background-size: cover;
    
   
}
.intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
}

.primary--text{
    color: #00b894;
    font-weight: bold;
    font-size: 5.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
    }

.secondary--text{
    color: #dfe6e9; 
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out 1s;
}
.btn{
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.6rem;
    color: #fff;
    background-color: #00b894;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    animation: fadeIn 2s ease-in-out 2s;
    cursor: pointer;
}
.btn:hover{
    background-color: #019875;
    transform: translateY(-2px);
}
.btn:active{
    transform: translateY(0);
}

.contacts{
   text-align: center;
    margin-top: 20px;
    padding: 10rem;
    
    min-height: 10rem;
    font-size: 1.4rem;
    color: #dfe6e9;



}

.services{
    background-color: #1e272e;
    padding: 50px 20px;
    text-align: center;
    

}
.services-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service{
    text-align: center;
    padding: 50px 20px;
    display: inline-block;
    width: 300px;
    height: 300px;
    margin: 20px;
    background-color: #2d3436;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}
.service:hover{
    transform: translateY(-10px);
}
.service h3{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00b894;
}

.footer{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1.4rem;
}
.phone{
    color: #00b894;
    font-weight: bold;
    text-decoration: none;
    
}
.logo{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}