
.about-btnn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:10px 20px;
    border-radius:50px;

    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;

    position:relative;
    overflow:hidden;
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.4);
    transition:0.4s ease;
}


.about-btnn:hover{
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 12px 35px rgba(42, 82, 152, 0.6);
}


.about-btnn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    color: #fff;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition:0.5s;
}

.about-btnn:hover::before{
    left:100%;
}




.technology-section{
    background:#fff;
    padding: 50px 0;
    position: relative;
}

.section-title h4{
    color: #4da6ff;
    font-size: 18px;
    margin-bottom: 10px;
}

.section-title h2{
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}


.tech-tabs{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 55px;
}

.tab-btn{
    border: none;
    background:white;
    color:black;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover{
     background-color: transparent;
    background-image: linear-gradient(170deg, #FF403E 0%, #FF6C26 100%);
    border-color: #FF6C26;
    color:white;
    transform: translateY(-3px);
}

.tab-btn.active{
   
    color:white;
   background-color: transparent;
    background-image: linear-gradient(170deg, #FF403E 0%, #FF6C26 100%);
    border-color: #FF6C26;
}

.tab-btn i{
    margin-right: 8px;
}

.tab-contents{
    display: none;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}

.tab-contents.active{
    display: grid;
}

.tech-box{
    background:#fff;
    border:1px solid #dfe5f1;
    border-radius:8px;
    padding:28px 20px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.tech-box:hover{
    border-color:#3f51ff;
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* IMAGE BOX */
.tech-box .tech-img{
    width:110px;
    height:110px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tech-box .tech-img img{
    width:100px;
    height:100px;
    object-fit:contain;
    transition:.4s;
}

.tech-box:hover .tech-img img{
    transform:scale(1.08);
}

/* TITLE */
.tech-box h5{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#061c5c;
    transition:.4s;
}

.tech-box:hover h5{
    color:#3f51ff;
}

@media(max-width:991px){

    .tab-contents{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:576px){

    .tab-contents{
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2{
        font-size: 30px;
    }

}




/* SMALL & COMPACT CONTACT SECTION */

.hs-contact-section{
    padding: 50px 0;
    background: linear-gradient(135deg, #09c0f9, #2563eb);
}

/* LEFT CONTENT */
.hs-contact-content .sub-title{
    color: #dff8ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-left: 50px;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.hs-contact-content .sub-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 38px;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
}

.hs-contact-content h2{
    color: #ffffff;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 16px;
}

.hs-contact-content h2 span{
    background: linear-gradient(to right, #dff8ff, #7cf3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hs-contact-content p{
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 24px;
    max-width: 390px;
}

/* INFO */
.contact-info-list .info-item{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-info-list .info-item .icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.contact-info-list .info-item .text span{
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
}

.contact-info-list .info-item .text h4{
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

/* FORM */
.hs-contact-form{
    background: rgba(255,255,255,0.08);
    border: 1px solid white;
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

/* INPUTS */
.hs-contact-form .input-group{
    margin-bottom: 16px;
}

.hs-contact-form input,
.hs-contact-form textarea{
    width: 100%;
    background: rgba(255,255,255,0.12);
    border: 1px solid  white;
    border-radius: 14px;
    padding: 0 18px;
    color: #ffffff !important;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    transition: .3s;
}

.hs-contact-form input{
    height: 52px;
}

.hs-contact-form textarea{
    height: 120px;
    resize: none;
    padding-top: 16px;
}

.hs-contact-form input::placeholder,
.hs-contact-form textarea::placeholder{
    color: rgba(255,255,255,0.75) !important;
}

/* FOCUS */
.hs-contact-form input:focus,
.hs-contact-form textarea:focus{
    border-color: #ffffff;
    background: rgba(255,255,255,0.16);
}




/* MOBILE */
@media(max-width:991px){

    .hs-contact-content{
        margin-bottom: 30px;
    }

    .hs-contact-content h2{
        font-size: 30px;
    }

}

@media(max-width:767px){

    .hs-contact-section{
        padding: 45px 0;
    }

    .hs-contact-form{
        padding: 20px;
    }

    .hs-contact-content h2{
        font-size: 26px;
    }

    .contact-info-list .info-item .text h4{
        font-size: 15px;
    }

}

.team-slider{
    padding-bottom: 20px;
}

.team-slider .swiper-slide{
    height: auto;
}

.team-card-single img{
    width: 100%;
    display: block;
}




.newsletter-section{
    padding: 50px 0px 0px 0px;
    background: #fff;
}

.newsletter-box{
    position: relative;
    overflow: hidden;
    border-radius:5px;
    padding: 50px 40px;
    background: linear-gradient(90deg,#1847e5 0%, #19c5df 100%);
}

/* Content */
.newsletter-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-content h2{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
}

.newsletter-content form{
    max-width: 760px;
    margin: auto;
    position: relative;
}

.newsletter-content input{
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 60px;
    padding: 0 230px 0 35px;
    font-size: 16px;
    color: #666;
}

.newsletter-content button{
    position: absolute;
    top: 7px;
    right: 7px;
    height: 46px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgb(9, 192, 249), rgb(37, 99, 235));
    color: #fff;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}



.newsletter-content button span{
    width: 34px;
    height: 34px;
    background: #fff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Rocket */
.rocket-img{
    position: absolute;
    right: 5px;
    top: -10px;
    z-index: 1;
}

.rocket-img img{
    width: 240px;
}

/* Shapes */
.shape{
    position: absolute;
    background: rgba(255,255,255,0.22);
    border-radius: 40px;
}

.shape.one{
    width: 110px;
    height: 24px;
    left: -10px;
    top: 50px;
    transform: rotate(-35deg);
}

.shape.two{
    width: 90px;
    height: 20px;
    left: 70px;
    bottom: 45px;
    transform: rotate(-35deg);
}

.dot{
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

.dot1{
    top: 30px;
    left: 55%;
}

.dot2{
    bottom: 28px;
    left: 48%;
}

.dot3{
    right: 90px;
    bottom: 25px;
}

/* Responsive */
@media(max-width:991px){

    .newsletter-content h2{
        font-size: 42px;
    }

    .rocket-img{
        opacity: .15;
    }
}

@media(max-width:767px){

    .newsletter-box{
        padding: 50px 20px;
    }

    .newsletter-content h2{
        font-size: 30px;
    }

    .newsletter-content input{
        height: 65px;
        padding: 0 20px;
    }

    .newsletter-content button{
        position: relative;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        top: 0;
        right: 0;
    }

    .rocket-img{
        display: none;
    }
}
