@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --jakarta: "Outfit", serif;
    --black: #181818;
    --primary: #2196F3;
    --secondary: #FF5C00;
    --yellow: #fff;
    --gray: #8E8E8E;
    --heading: #292626;
    --text: #686868;
}

body {
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Outfit", serif;
    line-height: 1.5;
    font-size: 16px;
    box-sizing: border-box;
    background: #ECF0F3;
}


p:empty {
    display: none;
}

a {
    color: #fff;
    text-decoration: none !important;
}

li {
    list-style: none;
}

ul {
    padding: 0;
}

/* ====== header css start ====== */
header {
    /* position: absolute; */
    width: 100%;
    z-index: 99999;
    padding: 10px 20px 10px 20px;
    background: transparent;
}

header .logo img {
    width: 220px;
}

nav {
    display: flex;
    z-index: 10;
    justify-content: space-between;
    padding: 8px 6px;
    border-bottom: 1px solid #1f1f1f;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    margin-bottom: 0;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 6px;
}

nav .cta-btn {
    margin-left: 7vw;
}

nav .cta-btn a {
    color: #fff;
}

.nav-links .active {
    color: var(--secondaryColor);
}

.nav-links li a:hover {
    color: var(--secondaryColor);
}

nav .cta-btn a:hover {
    color: #fff;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
    bottom: 0;
}

.nav-links li a:hover::before {
    width: 80%;
}

.toggle,
[id^=drop] {
    display: none;
}

nav a:hover {
    color: rgb(240 84 84)
}

nav ul ul {
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
    width: 300px;
    list-style: none;
    border-radius: 2px;
    padding-bottom: 15px;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: 100%;
    float: none;
    display: list-item;
    position: relative;
    padding: 7px 0px !important;
}

li>a:only-child:after {
    content: '';
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

a.ct.btn.chat_pop,
main.ct.btn.chat_pop {
    border-radius: 30px 30px 0;
    font-size: 14px;
    padding: 6px 20px;
    color: #fff;
    background: var(--primary);
    font-weight: 300;
    cursor: pointer;
    border: 1px solid var(--primary);
}

.tophead a.btn {
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 300;
    margin-left: 7px;
    padding: 5px 20px;
    font-size: 14px;
}

.tophead a.btn:hover {
    background: var(--primary);
    transition: .3s all ease-in-out;
    color: #fff;
}

/* ====== header css end ====== */

/* ====== banner css start ====== */

.banner {
    padding: 5rem 20px;
}


/* ====== banner css end ====== */

/* ====== project css start ====== */
.portfolio-holder {
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.portfolio-wrapper {
    margin-top: 3rem;
}

.portfolio-holder {
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.portfolio-image {
    overflow: hidden;
}

.portfolio-holder .portfolio-image img {
    border-radius: 12px 12px 0 0;
    transition: .3s all ease-in-out;
    object-fit: cover;
    height: 280px;
    width: 100%;
}

.portfolio-holder:hover .portfolio-image img {
    transform: scale(1.15);
}

.portfolio-holder .desc {
    padding: 10px 16px 2px 16px;
}

.portfolio-holder .desc h2 {
    font-weight: 600;
    color: var(--black);
    font-size: 20px;
}

.portfolio-holder .desc p {
    color: var(--primary);
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    flex-direction: column;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    background: #2196f3;
    color: #fff;
    font-weight: 500;
    padding: 6px 7px;
    border-radius: 14px;
    font-size: 14px;
    justify-content: center;
    transition: all 0.3s ease;
    gap: 5px;
}

.tech-item i {
    /* margin-right: 6px; */
    font-size: 16px;
}

.tech-item:hover {
    background: #0078ff;
    color: #fff;
    transform: scale(1.05);
}

/* ====== project css end ====== */

/* ====== modal css starts ====== */
.modal {
    background: #ECF0F3;
}

.modal-dialog {
    min-width: 1100px;
}

.modal-header {
    border: none;
}

.btn-close {
    background: var(--primary);
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-headline {
    font-size: 18px;
    color: var(--primary);
}

.modal-content {
    border: none;
    box-shadow: 0px 0px 6px -2px #0000009e;
}

.button-group a {
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #D1D9E6,
        -5px -5px 15px #ffffff;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 4px;
}


.button-group {
    margin: 2rem 0;
    gap: 24px;
    display: flex;
    align-items: center;
}

.button-group a.whatsapp-float {
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    text-align: center;
    font-size: 26px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.button-group a.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* ====== modal css end ====== */

/* ====== testimonial css start ====== */
.testimonial {
    padding: 0 16px 4rem 16px;
}

iframe {
    height: 300px;
    width: 100%;
}

.video-wrapper {
    margin-bottom: 4rem;
}

.testimonial .arrow {
    position: relative;
    padding: 25px;
    color: #fff;
    border-radius: 50%;
    background: var(--secondary);
}

.arrow::after {
    display: none;
}

.testimonial .nav {
    display: flex;
    gap: 36px;
    float: right;
    margin-top: -30px;
}

.testimonial h5 {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    border-radius: 22px;
    font-size: 14px;
    margin-top: 1rem;
}

.written-review-holder {
    background: linear-gradient(45deg, rgba(27, 127, 204, .8), #58b4fb);
    padding: 24px;
    color: #fff;
    border-radius: 12px;
    min-height: 240px;
    margin-bottom: 5rem;
}

p.review {
    margin-bottom: 0;
}

/* ====== testimonial css end ====== */

/* ====== whatshapp icon css start ====== */

.whatshapp_icon {
    position: fixed;
    bottom: 2%;
    right: 1%;
    z-index: 999;
}

.whatshapp_icon img {
    width: 60px;
}

/* ====== whatshapp icon css end ====== */

/* =============== single route modal css start   =============== */

.single-route-modal {
    padding: 0 !important;
}

.single-route-modal .modal-dialog {
    max-width: 100% !important;
    margin: 0;
}

.single-route-modal .modal-content {
    background: #ECF0F3;
    box-shadow: none;
}

/* =============== single route modal css end   =============== */


/* ======================================================================================================================================================//////////////////////////////////////////////////////////////// RESPONSIVE CSS ////////////////////////////////////////////////////////////////======================================================================================================================================================*/



@media (max-width: 991px) {
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 42%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #000;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        top: 0px;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        left: 0;
        justify-content: flex-start;
        gap: 0px;
    }

    .nav-links.open {
        clip-path: circle(1000px at 50% -10%);
        -webkit-clip-path: circle(1000px at 50% -10%);
        pointer-events: all;
        padding: 0px 50px;
    }

    .nav-links li {
        opacity: 0;
    }

    .fade:not(.show) {
        opacity: 1;
    }

    header .cta-btn {
        padding: 14px 0px !important;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }

    .nav-links li a {
        color: #fff;
    }

    .toggle+a,
    .menu {
        display: none;
    }

    .toggle {
        display: block;
        padding: 14px 0px;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
        border: none;
    }

    .toggle:hover {
        background-color: transparent;
    }

    [id^="drop"]:checked+ul {
        display: block;
        width: 100%;
        background: transparent;
        transition: all 0.3s ease;
    }

    nav ul li {
        display: block;
        width: 100%;
        line-height: 3;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul li ul li .toggle,
    nav ul ul a {
        padding: 14px 20px;
        color: #fff;
        font-size: 17px;
    }

    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
    }

    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    nav ul ul li {
        display: block;
        width: 100%;
    }

    .hamburger div {
        background: var(--white);
        margin: 5px;
    }
}

@media(max-width:1200px) {
    .modal-dialog {
        min-width: 95%;
    }
}

@media(max-width:991px) {
    .portfolio-popup-thumbnail img {
        width: 100%;
    }

    .text-content {
        margin-top: 1rem;
    }
}

@media(max-width:575px) {
    .button-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    header .logo img {
        width: 120px;
    }

    header {
        padding: 0;
    }
}

@media(max-width:430px) {
    .portfolio-holder .portfolio-image img {
        height: 215px;
    }
}