@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
}

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

.nav-link.active {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin-left: 30px;
}

.primary-text{
    color: #05B4FF;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card {
    background-color: #fff;
    border: 10px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to bottom, #989898, #fff);
    padding: 20px;
    text-align: center;
    word-break: keep-all;
    box-shadow: 0 0 15px #878787;
    color: #A5A5A5;
    width: 180px;
    overflow: hidden;
    margin-top: -30px;
    cursor: pointer;
}

.service-card.active{
    border-image-source: linear-gradient(to bottom, #05B4FF, #fff);
    width: 200px;
    z-index: 1;
}

.service-card.active h4{
    color: #05B4FF;
}

.service-card.active img{
    filter: unset;
}

.service-card h4{
    font-size: 16px;
    font-weight: 600;
}

.service-card img{
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(1);
}

.about-section{
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about-shade {
    position: absolute;
    left: -360px;
    top: 1800px;
    width: 60%;
}

.about-shade-2{
    position: absolute;
    right: -360px;
    top: 1300px;
    width: 60%;
}

.about-content-container{
    padding: 40px;
    box-shadow: -6px -1px 15px #999898;
    border-radius: 20px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.about-section .container{
    position: relative;
}

/* .about-section p{
    font-size: 20px;
    width: 85%;
} */

.about-image{
    position: absolute;
    width: 250px;
    right: 0;
    margin-top: -100px;
    z-index: 2;
}

.contact-section{
    margin-bottom: 50px;
}

.contact-section .container{
    position: relative;
}

.contact-img{
    position: relative;
}

.form-container{
    position: absolute;
    padding: 15px 35px;
    width: 100%;
    top: 0;
    left: 0;
}

.form-control{
    background-color: #3B3B3B;
    border: none;
    color: #fff;
    padding: 15px 25px;
    margin-bottom: 20px;
}

.form-control::placeholder{
    color: #fff;
}

.primary-btn{
    background-color: #05B4FF;
    color: #fff;
    font-weight: bold;
    width: 38%;
    padding: 15px 0;
}

.primary-btn:hover{
    background-color: #05B4FF;
    color: #fff;
    font-weight: bold;
    width: 38%;
    padding: 15px 0;
}

/* .hero-store-icons{
    position: absolute;
    top: 470px;
    left: 71px;
} */

.hero-store-icons img{
    width: 200px;
}

.hero-store-icons img:first-of-type{
    margin-left: -18px;
}

footer{
    position: relative;
    background-color: #292929;
    width: 100%;
    padding: 30px 0;
    padding-top: 50px;
}

.footer-link-denoter{
    color: #05B4FF;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
}

.swiper-3d .swiper-slide-shadow{
    background: none;
}

.showcase-feature-card img{
    position: relative;
    display: block;
    margin: 0 auto;
    width: 70%;
}

.showcase-content{
    position: absolute;
    width: 100%;
    padding: 0 170px;
    padding-bottom: 50px;
    margin: 0 auto;
    bottom: 0;
    right: 0;
}

.showcase-content h3{
    font-size: 30px;
    margin-bottom: 20px;
}

.showcase-content p{
    font-size: 16px;
}

.bi-facebook:hover{
    color: #3b5998;
}

.fa-x-twitter:hover{
    color: #fff;
}

.bi-instagram:hover{
    color: #962fbf;
}

.bi-youtube:hover{
    color: #c4302b;
}

.logo{
    height: 55px;
}

.socila-circle-cont{
    color: #fff;
    background-color: #05B4FF;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.showcase-content img{
    display: block;
    width: 30px;
    filter: brightness(1);
}

.social-icons-container {
    position: absolute;
    top: 30%;
    left: 6%;
}

.digital-card-btn{
    position: absolute;
    top: 7.5%;
    left: 22%;
}

.digital-card-btn img{
    width: 110px;
}

.social-icons-container img{
    width: 200px;
}

@media screen and (min-width: 1400px){
    textarea.form-control{
        height: 235px;
    }

    .form-container{
        padding: 10px 47px;
        width: 93%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px){
    textarea.form-control{
        height: 182px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px){
    .digital-card-btn img{
        width: 90px;
    }

    textarea.form-control{
        height: 112px;
    }

    .section-title{
        font-size: 35px;
    }

    .about-section{
        margin-top: 160px;
    }

    .about-shade{
        left: -230px;
    }

    .showcase-content{
        padding: 0 140px;
        padding-bottom: 10px;
    }

    .showcase-content h3{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .social-icons-container img{
        width: 155px;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px){
    textarea.form-control{
        height: 152px;
    }
    .primary-btn {
        padding: 5px 0;
    }
}

@media screen and (max-width: 768px){
    .contact-img{
        display: none;
    }

    .about-image{
        display: none;
    }

    .form-container{
        background-color: #292929;
        border-radius: 20px;
        position: relative;
    }

    .about-section p{
        width: 100%;
    }

    .primary-btn{
        padding: 7px;
    }

    textarea.form-control{
        height: 150px;
    }

    .service-card{
        width: 170px;
        padding: 15px 0;
    }

    .service-card img{
        width: 28px;
        height: 28px;
    }

    .service-card h4{
        font-size: 10px;
    }

    .service-card.active{
        width: 190px;
    }

    .showcase-content h3{
        font-size: 20px;
    }

    .showcase-content p{
        font-size: 14px;
    }

    .about-shade, .about-shade-2{
        display: none;
    }

    .showcase-content {
        padding: 0px 92px;
        padding-bottom: 10px;
    }

    .social-icons-container img{
        width: 100px;
    }

    .digital-card-btn img{
        width: 65px;
    }
}

@media screen and (max-width: 500px) {
    body{
        overflow-x: hidden;
    }
    .logo {
        height: 50px;
    }

    .nav-link {
        margin-left: 0;
    }

    .serv-card-cont{
        display: none;
    }

    .form-container{
        position: relative;
    }

    .showcase-content{
        padding: 0 95px;
        padding-bottom: 20px;
    }

    .about-section p{
        font-size: 16px;
    }

    .form-container{
        padding: 25px;
    }

    .about-section{
        margin: 50px 0;
    }

    .section-title{
        font-size: 22px;
        margin-bottom: 25px;
    }

    .digital-card-btn img{
        width: 80px;
    }
}

@media screen and (max-width: 500px){
    .showcase-content p {
        font-size: 12px;
    }

    .showcase-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .showcase-feature-card img{
        width: 80%;
    }

    .showcase-content img {
        width: 20px;
    }

    .hero-store-icons img{
        width: 160px;
    }

    .social-icons-container img{
        width: 90px;
        margin-top: -15px;
    }

    .social-icons-container h4{
        font-size: 13px;
    }

    .social-icons-container{
        top: 28%;
    }

    .digital-card-btn{
        top: -2.5%;
        left: 17%;
    }
}
