* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --c-brand: #fac562;
    --c-dark: #333;
    --c-body: #666;
    --c-light: #f8f8f8;
    --f-base: "Plus Jakarta Sans", sans-serif;
    --n-height: 100px;
}

*,
*::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;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-bottom: 50px;
    height: 100px;
}

.navbar .container {
    display: flex;
    align-items: left;
    justify-content: space-between;
    margin-top: -70px;
}

.nav-links {
    display: flex;
    margin-top: 20px;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li:not(:last-child) {
    margin-right: 45px;
}

.nav-links li a {
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: 48C6EA;
}

.hamburger {
    display: block;
    cursor: pointer;
    display: none;
}

.hamburger span {
    display: block;
    width: 34px;
    height: 2px;
    background-color: white;
    margin: 8px auto;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

.scrolled {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.scrolled .brand {
    color: var(--c-dark);
}

.scrolled .nav-links li a {
    color: var(--c-dark);
}

.scrolled .nav-links li a:hover {
    color: 48C6EA;
}

.scrolled .hamburger span {
    background-color: var(--c-dark);
}

.back-video {
    position: absolute;
    max-width: 100%;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.navbar img {
    width: 260px;
    top: 0px;
    left: 0px;
    padding: 50PX;
}

@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;
        background-color: white;
        justify-content: center;
    }
    .nav-links li a {
        color: var(--c-dark);
    }
    .nav-links.active {
        height: 200px;
    }
    .nav-links li {
        padding: 6px 0;
    }
    .hamburger {
        display: block;
    }
}

.whatsapp-btn-container {
    position: fixed;
    right: 30px;
    opacity: 0;
    bottom: -50px;
    padding: 24px;
    animation: fade-up 1000ms forwards;
    animation-delay: 1000ms;
}

@keyframes fade-up {
    100% {
        bottom: 24px;
        opacity: 1;
    }
}

.whatsapp-btn-container .whatsapp-btn {
    font-size: 48px;
    color: #25d366;
    display: inline-block;
}

.whatsapp-btn-container .whatsapp-btn:hover {
    transform: scale(1.2);
}

.whatsapp-btn-container span {
    position: absolute;
    top: -5px;
    left: 4px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #075e54;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover+span {
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}


/* Hero */

#hero .container {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-position: center;
    background-size: cover;
    display: grid;
    place-content: center;
    text-align: center;
}

#hero h1 {
    color: white;
}

@keyframes scrolltodown {
    0% {
        transform: translateY(30%);
        opacity: 0;
    }
    50% {
        transform: translateY(-30%);
        opacity: 1;
    }
    100% {
        transform: translateY(60%);
        opacity: 0;
    }
}

#hero .container .scroll-to-down {
    width: 30px;
    height: 60px;
    margin-left: -15px;
    display: grid;
    place-content: center;
    font-size: 24px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    position: absolute;
    bottom: 48px;
    left: 50%;
}

.scroll-to-down .las {
    animation: scrolltodown 2s ease infinite;
}


/* Grid*/

.grid {
    display: grid;
    gap: 44px;
}

.two-col-grid {
    grid-template-columns: repeat(2, 1fr);
}

.three-col-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid {
        gap: 24px;
    }
    .two-col-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .three-col-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*---------Services--------*/

.Services {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.Services h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #090101;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.Services-col {
    flex-basis: 31%;
    background: #48C6EA;
    border-radius: 10px;
    border-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.Services-col h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.Services-col p {
    text-align: left;
    list-style: circle inside none;
    list-style-type: square;
    list-style-position: inside;
}

.Services-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.hero-bn {
    display: inline-block;
    text-decoration: none;
    color: #0b0b0b;
    border: 1px solid #0f0e0e;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-bn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}


/* Project */

.Aboutus {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.Aboutus h1 {
    font-size: 26px;
    font-weight: 600;
}

.work .container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    font-size: 36px;
}

.project {
    position: relative;
    overflow: hidden;
    height: 23rem;
    padding: 50px;
}

.project img {
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    padding: 20px;
    top: 25%;
    left: 25%;
}

.project .overlay {
    padding-top: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 50px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.project .overlay h2 {
    color: white;
}

.project .overlay p {
    color: rgba(255, 255, 255, 0.6);
}

.project:hover .overlay {
    opacity: 1;
    display: flex;
}

.project:hover img {
    transform: rotate(15deg) scale(1.5);
}


/*-------------Careers-----------*/

.Careers {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.Careers h1 {
    font-size: 26px;
    font-weight: 600;
}

.careercontainer {
    max-width: 900px;
    margin: 0 auto;
}

.apply_box {
    max-width: 600px;
    padding: 20px;
    background-color: white;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 3px 5px rgba(1, 1, 1, 0.1);
    border-radius: 10px;
}

.title_small {
    font-size: 20px;
}

.formcontainer {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form_control {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 15px;
    margin-bottom: 5px;
}

input,
select,
textarea {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 15px;
}

input:focus {
    outline-color: #48C6EA;
}

.buttoncontainer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

button {
    background-color: #48C6EA;
    border: transparent solid 2px;
    padding: 5px 10px;
    color: white;
    border-radius: 8px;
    transition: 0.3s ease-in;
}

button:hover {
    border: 2px solid red;
    color: black;
    transition: 0.3s ease-out;
    cursor: pointer;
}

.textarea_control {
    grid-column: 1 / span 2;
}

.textarea_control textarea {
    width: 100%;
}

@media (max-width: 460px) {
    .textarea_control {
        grid-column: 1 / span 1;
    }
}


/*------contact-------*/

#contactus {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: -100px;
}

#contactus h1 {
    font-size: 26px;
    font-weight: 600;
    padding-top: 100px;
    text-align: center;
}

#contactus p {
    width: 80%;
    text-align: center;
    margin: auto;
}

#contact .container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: -300px;
    list-style-type: none;
    margin: 30px;
    padding: -50px;
    min-height: 100px;
}

#contact .container h1 {
    font-size: 15px;
    font-weight: 600;
}

#contact .container ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#contact .container .grid {
    grid-template-columns: 4fr 2.5fr;
}

@media (max-width: 768px) {
    #contact .grid {
        grid-template-columns: 1fr;
    }
}

#contact-form .section-intro {
    padding-top: 10px;
}

#contact-form {
    width: 80%;
    align-items: center;
}

.contact-widget {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group .form-input {
    display: block;
    width: 100%;
    padding: 20px 50px;
    border-radius: 0;
    border: none;
    font-family: var(--f-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
}

.form-group .form-input:focus {
    outline: none;
}

.form-group .error-text {
    font-size: 14.5px;
    color: #f44336;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}


/*------contact-------*/


/*---------footer--------*/

footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: -150px;
}

footer .social_icon,
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li {
    list-style: none;
}

footer .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover {
    transform: translateY(-10px);
}

footer .menu li a {
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(images/wave.png);
    background-size: 1000px 100px;
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
    overflow-y: hidden;
}

@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
}