.fadeInUp{
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp{
    from{
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.wow{
    visibility: hidden;
}

.wow.fadeInUp{
    visibility: visible;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


.owl-carousel {
    display: block !important;
    z-index: 1;
}
.why-choose-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.why-choose-two__sliding-text-list{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;
    margin:0;
    padding:0;
    list-style:none;
    animation: marqueeMove 20s linear infinite;
}

.why-choose-two__sliding-text-list li{
    flex-shrink:0;
}



@keyframes marqueeMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}


.contact-map-section{
    padding:100px 0;
    background:#f8faff;
}

.map-heading{
    text-align:center;
    margin-bottom:50px;
}

.map-heading span{
    color:#0d6efd;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.map-heading h2{
    font-size:42px;
    margin:15px 0;
    font-weight:700;
    color:#0f172a;
}

.map-heading p{
    color:#64748b;
    max-width:600px;
    margin:auto;
}

.map-wrapper{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.10);
}

.map-wrapper iframe{
    width:100%;
    height:550px;
    border:none;
    display:block;
    filter:grayscale(15%);
}

.location-card{
    position:absolute;
    top:40px;
    left:40px;
    width:320px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    z-index:2;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.location-card .icon{
    width:65px;
    height:65px;
    background:#0f61c1;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
}

.location-card h4{
    font-size:24px;
    margin-bottom:10px;
    color:#0f172a;
}

.location-card p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:20px;
}

.location-card a{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.location-card a:hover{
    color:#084298;
}

@media(max-width:768px){

    .location-card{
        position:relative;
        width:100%;
        left:auto;
        top:auto;
        border-radius:0;
        box-shadow:none;
    }

    .map-wrapper iframe{
        height:400px;
    }
}


body{
    background:#f5f7fb;
    font-family:Poppins,sans-serif;
}

.contact-page{
    overflow:hidden;
}

/* HERO */

.contact-hero{
    position:relative;
    padding:100px 0 180px;
    overflow:hidden;

    background:linear-gradient(135deg, #063479, #0671b7, #063479);

    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.contact-hero h1{
    color:#fff;
    font-size:70px;
    font-weight:700;
}

.contact-hero p{
    color:#fff;
    font-size:18px;
    max-width:700px;
    margin:auto;
}

.info-card h5 {
    font-size: 19px;
    margin: 4px 0px;
    font-weight: 700;
}

/* GLOW */

.glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.glow1{
    width:300px;
    height:300px;
    background:#4da3ff;
    left:-100px;
    top:0;
}

.glow2{
    width:300px;
    height:300px;
    background:#001fff;
    right:-100px;
    top:150px;
}

/* PARTICLES */

.particles span{
    position:absolute;
    width:15px;
    height:15px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    animation:float 8s linear infinite;
}

.particles span:nth-child(1){left:10%;top:90%;}
.particles span:nth-child(2){left:25%;top:95%;}
.particles span:nth-child(3){left:45%;top:92%;}
.particles span:nth-child(4){left:70%;top:90%;}
.particles span:nth-child(5){left:90%;top:95%;}

@keyframes float{
from{
transform:translateY(0);
opacity:1;
}
to{
transform:translateY(-700px);
opacity:0;
}
}

/* WAVE */

.wave{
    position:absolute;
    bottom:-1px;
    width:100%;
    height:170px;
    background:#f5f7fb;
    clip-path:ellipse(60% 75% at 50% 100%);
}

/* CARDS */

.contact-cards{
    margin-top:-65px;
    position:relative;
    z-index:10;
}

.contact-cards .info-card{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:25px;
    display:flex;
    gap:15px;
    align-items:flex-start;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.contact-cards .info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,94,255,.15);
}

.contact-cards .icon-box{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#eef4ff;
    color:#0f61c1;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    transition:.6s;
}

.contact-cards .info-card:hover .icon-box{
    background:#0f61c1;
    color:#fff;
    transform:rotate(360deg);
}

.feature-box div h6 {
    font-size: 18px;
    font-weight: 700;
    margin: 3px 0px;
}

/* FORM */

.contact-wrapper{
    background:#fff;
    margin-top:40px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-left{
    padding:60px 40px;
    border-right:1px solid #eee;
}

.subtitle{
    color:#0f61c1;
    font-weight:700;
}

.contact-left h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.contact-left h2 span{
    display:block;
    color:#0f61c1;
}

.feature-box{
    display:flex;
    gap:15px;
    background:#fff;
    padding:20px;
    margin-top:20px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.feature-box:hover{
    transform:translateX(10px);
}

.feature-box i{
    width:55px;
    height:55px;
    background:#eef4ff;
    color:#0f61c1;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-form{
    padding:60px;
}

.form-control,
.form-select{
    height:45px;
    border-radius:12px;
    border:2px solid #edf1f7;
}

textarea.form-control{
    height:auto;
}

.form-control:focus,
.form-select:focus{
    border-color:#0f61c1;
    box-shadow:0 0 20px rgba(0,94,255,.15);
}

.btn-send{
    background:#0f61c1;
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:12px;
    font-weight:600;
    transition:.4s;
}

.btn-send:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,94,255,.35);
}

/* MOBILE */

@media(max-width:991px){

.contact-left{
border-right:none;
border-bottom:1px solid #eee;
}

.contact-form{
padding:30px;
}

.contact-hero h1{
font-size:48px;
}

}


/* Services Css  */


.services-section{
    background:#f8f9fc;
}

.service-card{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:80px 30px 35px;
    text-align:center;
    margin:50px 15px 15px;
    min-height:340px;

    border:1px solid #edf2f7;
    box-shadow:0 15px 50px rgba(0,0,0,.06);

    transition:.4s;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* Top Gradient Shape */

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:120px;

    background:linear-gradient(
        135deg,
        #4f46e5,
        #06b6d4
    );

    clip-path:polygon(
        0 0,
        100% 0,
        100% 70%,
        50% 100%,
        0 70%
    );
}


.service-number{
    position:absolute;
    right:25px;
    top:20px;
    font-size:80px;
    font-weight:800;
    color:#edf0f7;
    line-height:1;
    z-index:1;
}

.service-card .icon-box{
   position:absolute;
    top:12px;
    left:50%;
    transform:translateX(-50%);

    width:70px;
    height:70px;
    border-radius:20px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:2;
}

.service-card .icon-box img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.service-details__left h3 {
    margin: 13px 0px;
    color: #3c3b3b;
}

.service-details__left h4 {
    margin: 13px 0px;
    color: #3c3b3b;
        font-size: 22px;
}

.service-card:hover .icon-box i,
.service-card.active .icon-box i{
    color:#063479;
}

/* Title */

.service-card h3{
    margin-top:30px;
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

/* Description */

.service-card p{
    color:#64748b;
    line-height:28px;
    margin-bottom:25px;
}


.read-btn{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(135deg, #063479, #0671b7);
    color:#ffffff;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    position:relative;
    z-index:2;
    transition:.3s;
        margin-top: 15px;
}

/* Wave Effect */

.service-card::before{
    content: "";
    position: absolute;
    left: 310px;
    bottom: -87px;
    width: 31%;
    height: 163px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    opacity: 0;
    transition: .4s;
}

.service-card::after{
        content: "";
    position: absolute;
    right: -73px;
    bottom: -30px;
    width: 121px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    opacity: 0;
    transition: .4s;
}

/* Hover + Active */

.service-card:hover,
.service-card.active{
    background:linear-gradient(135deg,#063479,#0671b7);
    transform:translateY(-8px);
}

.service-card:hover::before,
.service-card.active::before,
.service-card:hover::after,
.service-card.active::after{
    opacity:1;
}

.service-card:hover h3 a,
.service-card.active h3 a,
.service-card:hover p a,
.service-card.active p a{
    color:#fff;
}

.service-card:hover .service-number,
.service-card.active .service-number{
    color:rgba(255,255,255,.15);
}

.service-card:hover .icon-box,
.service-card.active .icon-box{
    background:#fff;
}

.service-card:hover .read-btn,
.service-card.active .read-btn{
    background:#fff;
    color:#111;
}

.service-card .icon-box a i {
    font-size: 30px;
}

.service-one__icon img{
    width:45px !important;
    margin:auto;
}



.tech-stack-modern{
    padding:70px 0;
    background:#f8fafc;
}

.section-header{
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.sub-title{
    color:#4f46e5;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-header h2{
    font-size:52px;
    font-weight:800;
    margin:15px 0;
}

.section-header p{
    color:#64748b;
}

.tech-card{
    background:#fff;
    border-radius:30px;
    padding:35px;
    height:100%;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    transition:.4s;
}

.tech-card:hover{
    transform:translateY(-10px);
}

.programming{
    border-top:5px solid #0f61c1;
}

.backend{
    border-top:5px solid #0f61c1;
}

.database{
    border-top:5px solid #0f61c1;
}

.card-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.card-top i{
    font-size:28px;
        color: #0f61c1;
}

.card-top h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.tech-item{
    background:#0f61c11c;
    border-radius:18px;
    padding:18px;
    text-align:center;
    transition:.3s;
}

.tech-item:hover{
    background:#0f61c11c;
    transform:translateY(-5px);
}

.tech-item img{
    width:50px;
    height:50px;
    margin-bottom:10px;
}

.tech-item span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#111827;
}

@media(max-width:767px){

    .section-header h2{
        font-size:34px;
    }

    .tech-grid{
        grid-template-columns:1fr 1fr;
    }

}




.app-cta-section{
    padding:60px 0;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    position:relative;
    overflow:hidden;
}

.app-cta-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(59,130,246,.12);
    border-radius:50%;
    top:-200px;
    left:-200px;
}

.app-cta-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(14,165,233,.12);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.app-content{
    position:relative;
    z-index:2;
}

.app-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    margin-bottom:25px;
}

.app-content h2{
    color:#fff;
    font-size:54px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.app-content h2 span{
    color:#38bdf8;
}

.app-content p{
    color:#cbd5e1;
    font-size:17px;
    line-height:30px;
    margin-bottom:35px;
}

.app-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 28px;
    background:#fff;
    border-radius:15px;
    text-decoration:none;
    transition:.4s;
    color:#111;
}

.store-btn i{
    font-size:32px;
}

.store-btn small{
    display:block;
    font-size:11px;
    letter-spacing:1px;
}

.store-btn strong{
    display:block;
    font-size:17px;
}

.store-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* IMAGE */

.app-image-wrap{
    position:relative;
    text-align:center;
}

.main-app-img{
    max-width:100%;
    position:relative;
    z-index:2;
    animation:float 4s ease-in-out infinite;
}

.shape{
    position:absolute;
    border-radius:50%;
}

.shape1{
    width:280px;
    height:280px;
    background:#3b82f6;
    opacity:.15;
    top:20%;
    left:10%;
}

.shape2{
    width:180px;
    height:180px;
    background:#06b6d4;
    opacity:.20;
    bottom:10%;
    right:10%;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}

@media(max-width:991px){

    .app-content{
        text-align:center;
        margin-bottom:50px;
    }

    .app-btns{
        justify-content:center;
    }

    .app-content h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .app-content h2{
        font-size:30px;
    }

    .store-btn{
        width:100%;
        justify-content:center;
    }
}



.main-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu__list > li {
    position: relative;
    display: inline-block;
}

.main-menu__list > li > a {
    display: block;
    padding: 15px 20px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
    z-index: 999;
    border-radius: 10px;
}

.sub-menu li {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #222;
    text-decoration: none;
    transition: all .3s ease;
}

.sub-menu li a:hover {
    background: #0f61c1;
    color: #fff;
    padding-left: 25px;
}

.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.project-faq {
    margin-top: 50px;
}

.project-faq h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.project-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.project-faq .accordion-button {
    font-weight: 600;
    padding: 18px 22px;
    background: #fff;
}

.project-faq .accordion-button:not(.collapsed) {
    background: #0f61c1;
    color: #fff;
}

.project-faq .accordion-body {
    padding: 20px;
    line-height: 1.8;
}