

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root{
    --c-brand: #fac562;
    --c-dark: #333;
    --c-body: #666;
    --c-light: #f8f8f8;
    --f-base: "Plus Jakarta Sans", sans-serif;
    --n-height: 100px;
    --light-pink-color:  #ffd6ff;
}


*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}


*,*::after, *::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    color: var(--c-body);
    font-family: var(--f-base);
    line-height: 1.8;
    font-weight: 400;
}


h1,h2,h3,h4,h5,h6{
    color: var(--c-dark);
    font-family: var(--f-base);
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 400px;
}

a{
    color: var(--c-dark);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover{
    color: var(--c-brand);
}

section{
    padding: 140px 0;
}

.container{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    /* background-color: aquamarine; */
    padding-left: 24px;
    padding-right: 24px;
}

.btn{
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--c-brand);
    font-family: var(--f-base);
    padding: 16px 34px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
}

.btn:hover{
    background-color: var(--c-brand);
    color: white;
}

.heading-xl {
font-size: clamp(44px, 10vw, 120px);
font-weight: 400;
}

.heading-2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 50px;
    }
    
.heading-3 {
        font-size: 20px
        }   

ul{
    list-style: none;
}

.img{
    max-width: 100%;
    width: 100%;
    height: auto;
}

.brand{
    color: white;
    font-size: 18px;

}

.nav-links{
    display: flex;
}

.nav-links li:not(:last-child){
    margin-right: 44px;

}

.nav-links li a{
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover{
    color: var(--c-brand);
}

.nav-links li.active a{
    box-shadow: 0 2px var(--c-brand);
}

.hamburger.active span:nth-child(1){
transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    transform: translateY(-5px) rotate(-45deg);
}


.hamburger{
display: block;
cursor: pointer;
display: none;
}

.hamburger span{
    display: block;
    width: 34px;
    height: 2px;
    background-color: black;
    margin: 8px auto;
    transition: all 0.4s ease;
}


.navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar{
 
    background-color: black;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: var(--n-height);
    display: flex;
    z-index: 999;
} 

.scrolled{
    background-color: white;
}


.scrolled .brand{
    color: var(--c-dark);
}

.scrolled .nav-links li a{
    color: var(--c-dark);
}

.scrolled .nav-links li a:hover{
    color: var(--c-brand);
}

.scrolled .hamburger span{
   background-color: var(--c-dark);
}

@media(max-width: 768px){
    .nav-links{
        position: fixed;
        top: var(--n-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 0 24px;
        transition: all 0.3s ease-in-out;
        height: 0;
        overflow: hidden;
        justify-content: center;
        background-color: rgb(247, 184, 90);
    }

    .nav-links li a {
        color: var(--c-dark);
    }

    .nav-links.active{
        height: 170px;
    }

    .nav-links li{
        padding: 6px 0;

    }

    .hamburger{
        display: block;
    }

}

#hero {
    min-height: 100vh;
    background: white;
    background-position: center;
    background-size: cover;
    display: grid;
    place-content: center;

}

#hero h1{
    color: black;
    text-align: center;
    top: 25px;
    padding: 65px;
}

@keyframes scrolltodown {
    0%{
       transform: translateY(30%);
       opacity: 0;
    }

    50%{
        transform: translateY(-30%);
        opacity: 1;

    }
    100%{
        transform: translateY(80%);
        opacity: 0;

    }
}
.scroll-to-down{
    width: 30px;
    height: 60px;
    display: grid;
    place-content: center;
    font-size: 24px;
    color: black;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    position: absolute;
    bottom: 48px;
    left: 50%;
}

.scroll-to-down .las{
    animation: scrolltodown 2s ease infinite;

}

.section-intro{
    margin-bottom: 44px;
}
.grid{
    display: grid;
    gap: 44px;
}

.three-col-grid{
    grid-template-columns: repeat(3, 1fr);
}

#services .grid{
 gap: 0;
 margin-bottom: 50px;
}

#services {
    background-color: rgba(0, 0, 0, 0.034);
    /* background-color: rgba(0, 0, 0, 0.096); */
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.service:nth-child(odd){
    background-color: var(--c-light);
}

.service {

    padding: 44px;
}

.service p{
    font-size: 14px;
}

.service .icon{
    font-size: 98px;
    color: var(--c-brand);

}  


#contact{
    padding: 50px 10px;
 
}

.contact-left{
    flex-basis: 35%;

}

.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 20px;
}

.contact-left p i {
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}

.contact-left h1 {
    color: black;
    margin-right: 15px;
    font-size: 35px;
    text-align: left;
}
.contact-left h4 {
    color: black;
    margin-right: 15px;
    text-align: left;
}

.btn.btn2{
    display: inline-block;
    background:  #fac562;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
}
.btn.btn3{
    /* display: inline-block; */
    background:  #fac562;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
}

.btn{
display: block;
margin: 50px auto;
width: fit-content;
border: 1px solid #fac562;
padding: 14px 50px;
border-radius: 6px;
text-decoration: none;

}


/* 
.contact-right form{
    margin-top: 20px;
    width: 50%;
    height: 50%;

}
.contact-right form{
    margin-top: 50px;
    width: 50%;
    height: 100%;

} */
/*
.Contacts{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;

}

.Contacts form{
width: 670px;
height: 600px;
display: flex;
justify-content: center;
border-radius: 15px;
background: rgb(255, 255, 255,0.1);
backdrop-filter: blur(30px);
flex-wrap: wrap;

}

.Contacts form h1{
    color: #fff;
    font-weight: 700;
    line-height: 2;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.Contacts form input{
    width: 300px;
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}

.Contacts form input::placeholder{
    color: white;
}

.Contacts form #email{
    color: white;
    margin-left: 20px;
}

.Contacts form h4{

}

*/

.box {
    margin: 0px;
    padding: 0;
    text-align: center;
    background-size: cover;
    font-family: Century Gothic;
    background-color: rgb(173, 101, 101);
    height: 100%;
}

.title{
    margin: 0;
    padding: 0;
    text-align: center;
    background-size: cover;
    font-family: Century Gothic;
    margin-top: 100px;
    color: #ff004f;
}

.title h1{
    font-size: 32px;
    line-height: 10px;

}

.title h2{
    font-size: 16px;
}

form{
    margin-top: 10px;
    align-items: center;
}

.form-control{
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: #ffd6ff;
    font-size: 18px;
    margin-bottom: 16px;
    position: absolute;
}

input{
    height: 45%;
}

form .submit{
    background-color: #fac562;
}

.contact-right 
form input, 
form textarea{
    width: 50%;
    border: 0;
    outline: none;
    background: #262626;

    padding: 17px;
    margin: 15px 0;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
} 

.intro{
    background-color: #fff;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    align-items: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .features-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .feature-card {
    background-color: #fac562;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
  }
  
  .feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .feature-card p {
    font-size: 16px;
    color: #555;
  }

  /* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  form input, form textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
  }
  
  form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #45a049;
  }