/* Google fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* helpers and reset */
html{
    font-size:62.5%;
    scroll-behavior: smooth;
}

:root{
    --c-brand:#fac562;
    --c-dark:#333;
    --c-body:#666;
    --c-light:#f8f8f8;
    --f-base:"Plus Jakarta Sans",sans-serif;
    --n-height:10rem;
    --c-scroll-green:#51cd04;
}

*,*::after,*::before{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body{
    color:var(--c-body);
    font-family:var(--f-base);
    line-height: 1.4;
    font-weight: 400;
    background-image: linear-gradient(to right top, #eeeeeeeb, #fff5f5dc);
 
}

h1,h2,h3,h4,h5,h6{
    color: var(--c-dark);
    line-height: 1.2;
    margin-bottom:1rem;
    font-weight: 400;
}

.heading-xl{
    font-size:clamp(4.4rem,10vw,10rem);
    text-transform: uppercase;
}

.heading-1{
    font-size: clamp(2.2rem,6vw,5.6rem);
    text-transform: uppercase;
   
}

.heading-2{
    font-size: clamp(2rem,4vw,3.6rem);
    font-weight: 800;

}

.heading-3{
    font-size: clamp(1.8rem,2vw,2.8rem);
    font-weight:800;
    padding-bottom:1rem;
    margin-top:16px;;margin-top:16px;;
}

p{
    font-size:1.4rem;
    line-height: 1.2;
}

.para{
    font-size:clamp(.8rem,1.6vw,1.8rem)
}


li{
    font-size:1.4rem;
    font-size: clamp(0.8rem,1.4vw,2rem);
}



a{
    color:var(--c-dark);
    text-decoration: none;
    transition: all ease-in-out .4s;
}

a:hover{
    color: var(--c-brand);
}

img{
    width:100%;
    height: auto;
}

ul{
    list-style: none;
}

section{
    padding:14rem 0;
}

.container{
    max-width:1140px;
    width:100%;
    margin:0 auto;
    padding-inline: 2.4rem;
}


@media (max-width:800px){
    .container{
       
        padding-inline: 2rem;
    }
    section{
        padding:10rem 0;
    }
    
    
}

@media (max-width:475px){
    .container{
        padding-inline: 1rem;
    }
    section{
        padding:6rem 0;
    }
}
@media (max-width:350px){
    .container{
        padding-inline: 1rem;
    }
    section{
        padding:2rem 0;
    }
}

.btn{
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--c-brand);
    font-family: var(--f-base);
    padding:1.6rem 3.2rem;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.btn:hover{
    background-color:var(--c-brand);
    color:#fff
}

/* //helpers and reset */

/* logo image */

.logo{
    width:6rem;
    height: 6rem;
}


/* navbar */

.navbar{
    background-color: #000 ;
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height:var(--n-height);
   display: flex;
   z-index:999;
} 

.navbar .container{
    display:flex;
    align-items: center;
    justify-content:space-between;

}

.nav-links{
    color:#fff;
    font-size: 2.8rem;
}

.nav-links{
    display: flex;;
}

.nav-links li:not(last-child){
    margin-right:4.4rem;
}
.nav-links li.active a{
    box-shadow:0 4px var(--c-brand);
}
.nav-links li a{
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links li a:hover{
    color: var(--c-brand);
}

.hamburger{
    display: block;
    cursor: pointer;
    display:none;
}

.hamburger span{
    display: block;
    width:3.4rem;
    height: .2rem;
    background-color: #fff;
    margin: .8rem auto;
    transition:all .2s ease
}
.hamburger.active span:nth-child(1){
    transform: translateY(.5rem) rotate(45deg);
    
}

.hamburger.active span:nth-child(2){
    transform: translateY(-.5rem) rotate(-45deg);
    
}

.scrolled{
    background-color:#fff;

}

.scrolled .nav-links{
    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:800px){
    .nav-links{
        position: fixed;
        top:var(--n-height);
        left:0;
        width:100%;
        height:0;
        flex-direction: column;
        padding:0 2.4rem;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        background-color: #fff;
    }
    .nav-links li a{
        color:var(--c-dark);
    }
    .nav-links.active{
        height: max-content;
    }
    .nav-links li{
        padding:.6rem 0;
    }
    .hamburger{
        display: block;
    }
}

/* Hero */
.hero{
    width:100%;
    min-height:100vh;
    background: linear-gradient(to right bottom,
    #00000002,
    #00000002),url("/assets/images/hero/hero.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    place-content: center;
    text-align: center;
}

.hero h1{
    color:white;
    backdrop-filter: blur(10px);
    font-weight: 600;

}

@keyframes scrolltodown {
    0%{
        transform:translateY(30%);
        opacity: 0;
    }
    50%{
        transform:translateY(-30%);
        opacity:1;
    }
    100%{
        transform:translateY(60%);
        opacity:0;
    }
}

.scroll-to-down{
    width:3rem;
    height: 6rem;
    display: grid;
    place-content: center;
    font-size: 2.4rem;
    color:#fff;
    border:2px solid rgba(255,255,255,.2);
    border-radius: 10rem;
    position:absolute;
    bottom:4.8rem;
    left:50%;
    

}

.scroll-to-down .down-arrow-icon{
    animation:scrolltodown 2s ease infinite;
}
/* section title */

.section-intro{
    text-transform: uppercase;
    font-weight: 900;
    padding: 1rem;
    margin-bottom:3.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

/* grid */

.grid{
    display:grid;
    gap:4.4rem;

}

.two-col-grid{
    grid-template-columns: repeat(2,1fr);
}

.three-col-grid{
    grid-template-columns: repeat(3,1fr);
}

@media (max-width:800px) {
    .grid{
        gap:2.4rem;
    }
    .two-col-grid{
        grid-template-columns: repeat(1,1fr);
    }
    
    .three-col-grid{
        grid-template-columns: repeat(1,1fr);
    }
    
}
/* service */


#services .grid{
    gap:0;
}

.service:nth-child(odd){
    background-color: var(--c-light);
}

.service{
    padding:3.5rem;
    text-align: justify;
}


.service .icon{
    font-size: 3.8rem;;
    color:var(--c-brand)
}


@media (max-width:900px) {
    .service{
        padding:2rem;
       
    }
    .service p{
        font-size:1.4rem
       
    }
}
@media (max-width:800px) {
    .service{
        padding:1rem;
       
    }
}

/* product  */


.product{
    position:relative;
    overflow: hidden;
    box-shadow: #28231D 0px 50px 100px -20px, #efefef4d 0px 30px 60px -30px, #a0c3e759 0px -2px 6px 0px inset;
}
.product-img{
   max-height: 60vh;
    height: 100%;
    width:100%;
    object-fit:cover;
    transition:all 0.4s ease-in-out;
    
}

.product .title{
    position:absolute;
    top:10%;
    right:10%;
    border-radius: 1rem;
    padding: .5rem 1rem;
    color:white;
    backdrop-filter: blur(10rem);
    text-transform: uppercase;
    transition:all 0.4s ease-in-out;
}

.product .overlay{
    position:absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    background-color: rgba(0,0,0,.8);
    padding:4.4rem;
    display: flex;
    align-items: flex-end;
    transition:all 0.4s ease-in-out;
    opacity:0;

}

.product .overlay h2{
    color:#fff;
    text-transform: uppercase;
}

.product .overlay p{
    color:rgba(255, 255, 255, 0.6);
}

.product:hover .overlay{
    opacity:1;
}
.product:hover .title{
    opacity:0;
    backdrop-filter: unset;

}

.product:hover img{
    transform:scale(1.5) ;
}

@media (max-width:800px) {
    .product .overlay p{
       font-size:1.6rem
    }
}
@media (max-width:475px) {
    .product .overlay p{
        font-size:1.4rem
     }
   
}
@media (max-width:360px) {
    .product .overlay h2{
        font-size:1.2rem;
    }
    .product .overlay{
        padding:1rem;
    }
    .product .overlay p{
        font-size:1rem
     }
      .product .overlay{
        align-items: center;
    }
}

/* //product */

/* work */

/* #work{
    background-color: var(--c-light);
}
.work-post{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.work-post img{
   object-fit: cover;
} */

/* //work */

/* about */



/* flex-container about */
.flex-container{
    display:flex;
    align-items:center;
    justify-content: space-around;
    gap:1rem;
}
.flex-container .about-img{
    max-width:50vmin;
    width:100%;
}
/* flex-container about */

.about-us{
    max-width:60%;
    letter-spacing: 1.5px;
    text-align: center;
}

 .about-us h3 {
    color:var(--c-brand);
    text-transform: uppercase;
   
} 

.about-us p{
    font-weight: 700;
}

@media (max-width:800px){
    .flex-container{
            flex-wrap: wrap;
    }
    .about-us{
        letter-spacing: .5px;
        text-align: justify;
    }
    .about-us p{
        font-size: 1.6rem;
    }
}
@media (max-width:360px) {
    .about-us p{
        font-size: 1.2rem;
    }
}

.scroller{
    padding-top:1.5rem;
    white-space: nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    position: relative;
}

.scroller::-webkit-scrollbar{
    display: none;
}
.scroller_in{
    display:inline-block;
    white-space:nowrap;
    animation-name:scroll;
    animation-duration: 80s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.scroller h4{
    display:inline-block;
    font-size: 2rem;
    font-weight: 900;
    margin-right: 1rem;
    transition:all linear 0.4s;
    color:#000;
    -webkit-text-stroke: 1px #ffffffdc;
}

.scroller h4:hover{
    color: var(--c-scroll-green);
   
}


@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

/* //about */

/* contact */

.contact-info{
    padding-left:2rem;
}

.contact-info h3{
    color:var(--c-brand);
}


.contact-info li{
    
    font-weight: 700;
    text-transform:uppercase;
}
.contact-map{
   padding:1rem;
   overflow: hidden;
    width:100%;
    height: 100%;
}

@media (max-width:800px) {
    .two-col-grid{
        grid-template-columns: 1fr;
    }
    .contact-info li{
    
       font-size: 1.6rem;
    }
}
@media (max-width:360px) {
    .contact-info li{
    
        font-size: 1rem;
     }
}
/* //contact */

/* footer */
footer{
    background-color: var(--c-dark);
    padding: 2rem 0;
}

footer .container{
    display: flex;
    justify-content: center;
}

footer p{
    color:white;
    font-size:1.2rem;
}

/* footer */









