* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --text-light: #08c9bd;
    --text-prim: #1b2a40;
    --bg-color: #f4eb95;
    --border-color: #ededed;
    --pera-text: #595f68;
    --white: #fff;
    --transition-regluar: 0.3s;
    --transition-slow: 0.6s;
}

body {
    font-family: "satoshi-medium", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background-color: var(--white);
}

/* Custom CSS */

.btn {
    color: var(--text-prim);
    border: 2px solid var(--text-prim);
    background-color: transparent;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-regluar);
    cursor: pointer;
}

.btn:hover {
    background: var(--text-light);
    color: var(--white);
    border-color: transparent;
}

/* Top Navbar */

.top-nav {
    border: 1px solid var(--border-color);
    padding: 0 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    position: relative;
    z-index: 1000;
    background: var(--white);
}

.nav-section {
    display: flex;
    gap: 30px;
}

.nav-icon {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-icon i {
    color: var(--text-light);
    font-size: 18px;
}

.nav-icon span {
    color: var(--pera-text);
    font-size: 14px;
    font-weight: 500;
}

.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.map-location {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    height: 100%;
    border-right: 2px solid var(--border-color);
}

.map-location i {
    color: var(--text-light);
    font-size: 18px;
}

.map-location span {
    color: var(--text-prim);
    font-weight: 600;
}

.country-list {
    display: flex;
    height: 100%;
}

.country-list li {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 100%;
    font-weight: 500;
    color: var(--pera-text);
    border-right: 2px solid var(--border-color);
    font-size: 14px;
}

@media (max-width:991px) {
    .top-nav {
        display: none;
    }
}

/* Navbar */

nav {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

nav.nav-scroll {
    top: 0;
}

.logo {
    color: var(--text-prim);
    font-size: 34px;
    font-weight: 600;
    cursor: pointer;
}

nav ul li {
    display: inline-block;
    margin: 0 12px;
}

nav ul li a {
    color: var(--text-prim);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-regluar);
}

nav ul li a:hover {
    color: var(--text-light);
}

nav .call-button {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav .call-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .call-icon i {
    background-color: var(--text-prim);
    color: var(--white);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .call-icon span {
    color: var(--text-prim);
    font-weight: 500;
}

nav .ri-menu-line {
    display: none;
}

@media (max-width:991px) {
    nav {
        position: relative;
    }

    .menu {
        position: absolute;
        top: 100%;
        width: 100%;
        left: -100%;
        transition: var(--transition-slow);
        background-color: var(--bg-color);
        z-index: 999;
    }

    nav ul li {
        display: block;
        padding-left: 12% !important;
        padding: 10px 0;
        margin: 5px 0;
    }

    .showmenu {
        left: 0;
    }

    nav .ri-menu-line {
        display: block;
    }
}

@media (max-width:575px) {
    nav .call-button {
        display: none;
    }
}

/* Hero */

.hero-section {
    background-image: url(Images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 12%;
}

.hero-content {
    width: 50%;
}

.hero-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-icon i {
    height: 36px;
    width: 36px;
    background-color: var(--white);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-regluar);
}

.hero-icon i:hover {
    color: var(--text-prim);
}

.hero-icon span {
    color: var(--text-prim);
    font-weight: 500;
    font-size: 17px;
}

.hero-content h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 100px;
    color: var(--text-prim);
    margin-top: 8px;
}

.light {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.light::before {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: 75%;
    background-color: var(--bg-color);
    z-index: -1;
    top: 20px;
    left: -2px;
}

.hero-content .btn {
    margin-top: 30px;
    background-color: var(--text-light);
    border: 2px solid transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    border-color: var(--text-prim);
    background-color: transparent;
    color: var(--text-prim);
}

.hero-img {
    width: 50%;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
}

.hero-customer {
    position: absolute;
    top: -5%;
    left: 65%;
}

@media (max-width:1200px) {
    .hero-content h2 {
        font-size: 70px;
    }
}

@media (max-width:991px) {
    .hero {
        flex-direction: column;
        gap: 50px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-img {
        width: 100%;
    }
}

@media (max-width:575px) {
    .hero-content h2 {
        font-size: 65px;
        line-height: 60px;
    }
}

@media (max-width:480px) {
    .hero-content h2 {
        font-size: 55px;
        line-height: 60px;
    }
}

/* Team Banner */

.team {
    position: relative;
    padding-top: 100px;
}

.team-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 80px 12%;
    background: var(--white);
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    margin-top: -160px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid var(--border-color);
}

.team-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.team-content h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-prim);
}

.team-content h5 span {
    height: 40px;
    background-image: url(Images/underline-svg.svg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: auto;
    display: inline-block;
}

@media (max-width: 1200px) {
    .team-banner {
        margin-top: -110px;
        border-top-left-radius: 120px;
        border-top-right-radius: 120px;
    }
}

@media (max-width: 991px) {
    .team-banner {
        margin-top: -90px;
        border-radius: 40px;
        text-align: center;
        flex-direction: column;
        border-top-left-radius: 100px;
        border-top-right-radius: 100px;
        gap: 20px;
    }

    .team-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .team-content h5 {
        font-size: 16px;
    }
}

/* About */

.about-section {
    padding: 80px 12%;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/about-bg-1.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    z-index: -1;
}

.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/about-bg-2.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    z-index: -1;
}

.about-section h2 {
    text-align: center;
    font-size: 46px;
    color: var(--text-prim);
}

.about-section .light::before {
    top: 10px;
}

.about {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.about-img {
    width: 50%;
}

.about-img img {
    max-width: 800px;
    object-fit: cover;
}

.about-content {
    width: 50%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    border-radius: 12px;
    align-items: flex-start;
    padding: 40px 34px 40px 30px;
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 50px 5px rgba(27, 42, 64, .08);
    background-color: var(--white);
    max-width: 500px;
    margin-left: auto;
}

.about-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
}

.about-card:nth-child(1) {
    margin-left: auto;
}

.about-card:nth-child(2) {
    margin-left: -10px;
}

.about-card:nth-child(3) {
    margin-left: -150px;
}

.about-card:nth-child(1)::after {
    background-color: #ff8f3f;
}

.about-card:nth-child(2)::after {
    background-color: #29cf93;
}

.about-card:nth-child(3)::after {
    background-color: #fd7eb3;
}

.about-text h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-prim);
    margin-bottom: 5px;
}

.about-text p {
    font-size: 17px;
    line-height: 32px;
    color: var(--pera-text);
}

@media (max-width: 1200px) {
    .about-card {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .about-section {
        margin-top: 100px;
    }

    .about-section h2 {
        position: relative;
        z-index: 999;
    }

    .about {
        flex-direction: column;
        gap: 20px;
    }

    .about-img {
        width: 100%;
    }

    .about-img img {
        width: 100%;
    }

    .about-content {
        width: 100%;
        gap: 30px;
    }

    .about-card:nth-child(1) {
        margin-left: 0px;
    }

    .about-card:nth-child(2) {
        margin-left: 0px;
    }

    .about-card:nth-child(3) {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .about-section h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .about-section h2 {
        font-size: 30px;
    }

    .about-card {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 40px;
    }
}

/* Service */

.service-section {
    padding: 80px 12%;
    background-color: #e9ffff;
    position: relative;
}

.service-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/service-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.service-section h2 {
    text-align: center;
    font-size: 46px;
    color: var(--text-prim);
}

.service-section .light::before {
    top: 8px;
}

.service-section h2 img {
    transform: translateX(88px);
}

.service-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    box-shadow: 0px 4px 50px 5px rgba(27, 42, 64, .08);
    border-radius: 30px;
    padding: 50px 34px 44px 43px;
}

.ser-img {
    margin-bottom: 20px;
    text-align: center;
}

.service-card h4 {
    color: var(--text-prim);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: var(--pera-text);
    line-height: 30px;
    margin-bottom: 20px;
}

.service-card button {
    border: none;
    background: none;
    font-weight: 600;
    color: var(--text-prim);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-regluar);
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.service-card button:hover {
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .service-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .service-section::after {
        display: none;
    }

    .service-section h2 {
        font-size: 38px;
    }

    .service-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    .service-section h2 {
        font-size: 28px;
    }

    .service-section h2 img {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-section h2 {
        font-size: 36px;
    }
}

/* Achievement */

.achievement-section {
    padding: 80px 12%;
}

.achievement-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-text {
    width: 50%;
    box-shadow: inset 0px -20px 0px 0px rgba(207, 252, 230, 1);
    font-size: 50px;
    color: var(--text-prim);
    text-align: center;
    margin-bottom: 10px;
}

.achievement-card span {
    font-size: 19px;
    color: var(--text-prim);
    font-weight: 400;
}

@media (max-width: 991px) {
    .achievement-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    .achievement-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .achievement-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Faq */

.faq-section {
    padding: 80px 12%;
}

.faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.faq-img {
    width: 50%;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-content {
    width: 50%;
}

.faq-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-prim);
}

.faq-content .light::before {
    top: 8px;
}

.acc-box {
    border-top: 1px solid var(--border-color);
}

.acc-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-prim);
    cursor: pointer;
}

.acc-question i {
    font-size: 26px;
    transition: transform 03s ease;
}

.acc-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.acc-answer p {
    font-size: 16px;
    line-height: 28px;
    color: var(--pera-text);
    padding-bottom: 25px;
}

.acc-box.active .acc-answer {
    max-height: 200px;
}

.acc-box.active .acc-question i {
    color: var(--text-light);
    transform: rotate(45deg);
}

.acc-box.active .acc-question span {
    color: var(--text-light);
}

@media (max-width: 991px) {
    .faq {
        flex-direction: column;
        align-items: start;
    }

    .faq-img {
        width: 100%;
    }

    .faq-content {
        width: 100%;
    }
}

/* Project */

.project-section {
    padding: 80px 12%;
    background-color: #e9ffff;
    position: relative;
}

.project-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/project-bg.svg);
    background-repeat: no-repeat;
    background-position: center right;
    z-index: 1;
}

.project-section h2 {
    font-size: 46px;
    color: var(--text-prim);
    text-align: center;
}

.project-section .light::before {
    top: 10px;
}

.project-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.project-card {
    border-radius: 30px;
    background-color: var(--white);
    box-shadow: 0 4px 50px 5px rgba(27, 42, 64, .08);
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 47px 40px 42px;
}

.project-content span {
    font-size: 16px;
    color: var(--text-light);
    line-height: 16px;
}

.project-content h4 {
    color: var(--text-prim);
    font-size: 22px;
    margin-top: 8px;
    font-weight: 500;
}

.project-content i {
    font-size: 26px;
}

@media (max-width:767px) {
    .project-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*  Technologies */

.techno-section {
    padding: 80px 12%;
    position: relative;
}

.techno-section h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 500;
    color: var(--text-prim);
}

.techno-section .light::before {
    top: 8px;
}

.techno-section .marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    min-width: 100%;
    margin-top: 50px;
    
}

.techno-section .marquee-img {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 10px;
}

.techno-section .marquee-img img {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
     box-shadow: 1px 2px 10px rgba(27, 42, 64, .08); 
    padding: 15px 0px 15px 0px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.techno-section .marquee-img img:hover {
    transform: scale(1.1);
}

@media (max-width:575px) {
    .techno-section h2 {
        font-size: 42px;
    }
}

@media (max-width:480px) {
    .techno-section h2 {
        font-size: 34px;
    }
}

/* Testimonial */

.testi-section {
    background-color: #e9ffff;
    padding: 80px 12%;
    position: relative;
}

.testi-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/about-bg-1.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}

.testi-section h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 500;
    color: var(--text-prim);
}

.testi-section .light::before {
    top: 8px;
}

.testi-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background-color: var(--white);
    padding: 40px 50px 55px 50px;
    box-shadow: 0px 20px 20px -24px rgba(175, 229, 229, 1);
    border-radius: 30px;
}

.testi-icon {
    margin-bottom: 15px;
}

.testi-icon i {
    color: var(--text-light);
}

.testi-card h4 {
    color: var(--text-prim);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.testi-card p {
    color: var(--pera-text);
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
}

.testi-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-img img {
    height: 60px;
    width: 60px;
    object-fit: cover;
}

.testi-text h5 {
    font-size: 18px;
    color: var(--text-prim);
    font-weight: 500;
}

.testi-text span {
    color: var(--text-prim);
    font-weight: 400;
    font-size: 14px;
}

@media (max-width:1200px) {
    .testi-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .testi-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:575px) {
    .testi-section h2 {
        font-size: 40px;
    }
}

@media (max-width:480px) {
    .testi-section h2 {
        font-size: 36px;
    }
}

/* Footer */

.footer {
    padding: 80px 12%;
    background-color: var(--text-prim);
    padding-bottom: 2%;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-regular);
    font-size: 16px;
}

.footer ul li a:hover {
    color: var(--text-light);
    margin-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact .btn {
    background-color: var(--text-light);
    color: var(--white);
    border: transparent;
    padding: 17px 32px;
    cursor: pointer;
    transition: var(--transition-regular);
    font-size: 18px;
}

.footer-contact .btn:hover {
    background-color: var(--white);
    color: var(--text-prim);
}

.footer-contact .footer-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    transition: var(--transition-regular);
}

.footer-contact .footer-btn:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 50px;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer-copy .logo {
    color: var(--white);
}

.footer-copy p {
    color: var(--border-color);
    cursor: pointer;
}

.footer-copy p a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition-regular);
}

.footer-copy p a:hover {
    color: var(--white);
}

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icons i {
    color: var(--border-color);
    font-size: 20px;
    transition: var(--transition-regular);
    cursor: pointer;
}

.footer-icons i:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}

@media (max-width:1200px) {
    .footer-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:991px) {
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width:575px) {
    .footer-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .footer-copy {
        flex-direction: column;
        gap: 20px;
    }
}