/* =========================
   GLOBAL
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #fff;
}

/* =========================
   HEADER
========================= */

header{
    width: 100%;
    height: 80px;

    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 80px;

    background: rgba(0,0,0,0.75);

    backdrop-filter: blur(10px);

    z-index: 1000;

    transition: 0.4s;
}

.logo h2{
    color: white;
    font-size: 28px;
}

nav{
    display: flex;
    align-items: center;
}

nav a{
    color: white;
    text-decoration: none;

    margin-left: 35px;

    position: relative;

    font-size: 16px;

    transition: 0.3s;
}

nav a:hover{
    color: #f5b400;
}

nav a::after{

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: #f5b400;

    transition: 0.4s;
}

nav a:hover::after{
    width: 100%;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display: none;

    color: white;

    font-size: 28px;

    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero{
    width: 100%;
    height: 100vh;

    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1920');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;
}

.hero-content{
    max-width: 850px;

    padding: 20px;

    color: white;

    z-index: 2;
}

.hero-content h1{
    font-size: 70px;

    margin-bottom: 25px;

    line-height: 85px;

    animation: slideDown 1s ease;
}

.hero-content p{
    font-size: 22px;

    line-height: 35px;

    margin-bottom: 35px;

    animation: fadeIn 2s ease;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display: inline-block;

    padding: 15px 35px;

    background: #f5b400;

    color: black;

    text-decoration: none;

    border-radius: 5px;

    font-weight: bold;

    transition: 0.3s;
}

.btn:hover{
    background: white;

    transform: translateY(-5px);
}

.btn-dark{
    background: transparent;

    color: white;

    border: 2px solid white;
}

.btn-dark:hover{
    background: white;
    color: black;
}

/* =========================
   ABOUT
========================= */

.about{
    padding: 120px 80px;

    display: flex;
    align-items: center;
    gap: 70px;
}

.about-image{
    flex: 1;

    opacity: 0;

    transform: translateY(40px);

    transition: 1s;
}

.about-image img{
    width: 100%;

    border-radius: 12px;

    transition: 0.4s;
}

.about-image img:hover{
    transform: scale(1.03);
}

.about-content{
    flex: 1;

    opacity: 0;

    transform: translateY(40px);

    transition: 1s;
}

.about-content h4{
    color: #f5b400;

    margin-bottom: 15px;

    font-size: 20px;
}

.about-content h2{
    font-size: 50px;

    line-height: 65px;

    margin-bottom: 25px;
}

.about-content p{
    color: #555;

    line-height: 32px;

    margin-bottom: 20px;

    font-size: 17px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align: center;

    margin-bottom: 70px;
}

.section-title h4{
    color: #f5b400;

    font-size: 20px;

    margin-bottom: 15px;
}

.section-title h2{
    font-size: 50px;
}

/* =========================
   SERVICES
========================= */

.services{
    background: #111;

    color: white;

    padding: 120px 80px;
}

.service-container{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}

.service-box{
    background: #1b1b1b;

    padding: 45px 30px;

    border-radius: 12px;

    text-align: center;

    transition: 0.4s;

    position: relative;

    overflow: hidden;

    opacity: 0;

    transform: translateY(40px);

    border: 1px solid transparent;
}

.service-box:hover{
    background: #f5b400;

    color: black;

    transform: translateY(-12px);

    border: 1px solid white;
}

.service-box::before{

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.1);

    transition: 0.5s;
}

.service-box:hover::before{
    left: 100%;
}

.service-box i{
    font-size: 60px;

    margin-bottom: 25px;
}

.service-box h3{
    margin-bottom: 18px;

    font-size: 24px;
}

.service-box p{
    line-height: 28px;
}

/* =========================
   WHY SECTION
========================= */

.why{
    padding: 120px 80px;

    background:
    linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1920');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: white;
}

.why-content{
    max-width: 750px;
}

.why-content h4{
    color: #f5b400;

    margin-bottom: 15px;
}

.why-content h2{
    font-size: 55px;

    line-height: 70px;

    margin-bottom: 25px;
}

.why-content p{
    line-height: 34px;

    margin-bottom: 35px;

    font-size: 18px;
}

.why-list div{
    margin-bottom: 20px;

    font-size: 18px;
}

.why-list i{
    color: #f5b400;

    margin-right: 10px;
}

/* =========================
   COUNTER
========================= */

.counter{
    background: #f5b400;

    padding: 90px 80px;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;

    text-align: center;
}

.counter-box{
    opacity: 0;

    transform: translateY(40px);

    transition: 1s;
}

.counter-box h2{
    font-size: 60px;

    margin-bottom: 10px;
}

/* =========================
   CONTACT
========================= */

.contact{
    padding: 120px 80px;
}

form{
    max-width: 750px;

    margin: auto;
}

form input,
form textarea{
    width: 100%;

    padding: 18px;

    margin-bottom: 20px;

    border: 1px solid #ddd;

    border-radius: 5px;

    outline: none;

    font-size: 16px;

    transition: 0.3s;
}

form input:focus,
form textarea:focus{

    border: 1px solid #f5b400;

    box-shadow: 0 0 10px rgba(245,180,0,0.4);
}

form button{
    padding: 15px 40px;

    background: #f5b400;

    border: none;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    border-radius: 5px;

    transition: 0.3s;
}

form button:hover{
    background: #111;

    color: white;
}

/* =========================
   INFO
========================= */

.info{
    background: #f8f8f8;

    padding: 100px 80px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.info-box{
    background: white;

    padding: 45px 25px;

    text-align: center;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transition: 0.4s;

    opacity: 0;

    transform: translateY(40px);
}

.info-box:hover{
    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-box i{
    font-size: 42px;

    color: #f5b400;

    margin-bottom: 20px;
}

.info-box h3{
    margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */

footer{
    background: #111;

    color: white;

    text-align: center;

    padding: 70px 20px;
}

footer h2{
    margin-bottom: 20px;
}

footer p{
    margin-bottom: 25px;
}

.socials i{
    margin: 0 10px;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s;
}

.socials i:hover{
    color: #f5b400;

    transform: scale(1.2);
}

footer h5{
    margin-top: 30px;

    color: #999;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    background: #25d366;

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    font-size: 32px;

    text-decoration: none;

    z-index: 1000;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* =========================
   ANIMATION
========================= */

.show{
    opacity: 1 !important;

    transform: translateY(0) !important;
}

/* =========================
   PAGE BANNER
========================= */

.page-banner{
    width: 100%;
    height: 350px;

    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1920');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    text-align: center;
}

.page-banner h1{
    font-size: 60px;
}

/* =========================
   GALLERY
========================= */

.gallery{
    padding: 120px 80px;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;
}

.gallery img{
    width: 100%;

    border-radius: 12px;

    transition: 0.4s;
}

.gallery img:hover{
    transform: scale(1.03);
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background: #111;
}

::-webkit-scrollbar-thumb{
    background: #f5b400;

    border-radius: 20px;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes slideDown{

    from{
        opacity: 0;
        transform: translateY(-50px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn{

    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .service-container{
        grid-template-columns: repeat(2,1fr);
    }

    .counter{
        grid-template-columns: repeat(2,1fr);
    }

    .info{
        grid-template-columns: repeat(2,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    header{
        padding: 0 20px;
    }

    .menu-toggle{
        display: block;
    }

    nav{

        position: absolute;

        top: 80px;
        left: -100%;

        width: 100%;

        background: #111;

        flex-direction: column;

        text-align: center;

        transition: 0.4s;

        padding: 20px 0;
    }

    nav.active{
        left: 0;
    }

    nav a{
        margin: 18px 0;

        display: block;
    }

    .hero-content h1{
        font-size: 42px;

        line-height: 55px;
    }

    .hero-content p{
        font-size: 18px;
    }

    .about,
    .services,
    .why,
    .contact,
    .info,
    .gallery{
        padding: 80px 20px;
    }

    .about{
        flex-direction: column;
    }

    .service-container,
    .counter,
    .info,
    .gallery{
        grid-template-columns: 1fr;
    }

    .about-content h2,
    .section-title h2,
    .why-content h2{
        font-size: 36px;

        line-height: 48px;
    }

    .page-banner h1{
        font-size: 42px;
    }

}