.hero-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(135deg,#13d4e6 0%, #023b78 100%);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    max-width:450px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#fff;
    color:#0d6efd;
    font-weight:700;
    text-decoration:none;
    padding:14px 35px;
    border-radius:12px;
    transition:.4s;
}

.hero-btn:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}

.hero-image{
    position:relative;
    z-index:2;
}

.hero-image img{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

/* Background Network */
.network-bg{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size:40px 40px;
    opacity:.3;
}

/* Floating Dots */
.floating-dot{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
}

.dot1{
    width:120px;
    height:120px;
    top:40px;
    left:5%;
}

.dot2{
    width:70px;
    height:70px;
    right:12%;
    top:80px;
}

.dot3{
    width:150px;
    height:150px;
    bottom:-50px;
    right:20%;
}

/* Animation */
@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:70px 0;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    margin:auto auto 30px;
}

.hero-image{
    margin-top:40px;
}
}

@media(max-width:576px){

.hero-content h1{
    font-size:34px;
}

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



.btn-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 32px;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(13,110,253,.35);
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.btn-custom i{
    font-size:18px;
    transition:transform .35s ease;
}

.btn-custom:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(13,110,253,.45);
}

.btn-custom:hover i{
    transform:translateX(6px);
}

.btn-custom::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.18);
    transform:skewX(-25deg);
    transition:.6s;
}

.btn-custom:hover::before{
    left:120%;
}


.features-section{
background:linear-gradient(135deg,#fff1ea,#eef4ff);
position:relative;
}

.shape{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.6;
}

.shape1{
width:250px;
height:250px;
background:#ffb48b;
left:-100px;
top:-80px;
}

.shape2{
width:320px;
height:320px;
background:#8ab4ff;
right:-100px;
top:40px;
}

.shape3{
width:220px;
height:220px;
background:#d9d2ff;
bottom:-80px;
left:45%;
}

.feature-tag{
display:inline-block;
padding:8px 20px;
background:#fff;
border-radius:50px;
font-size:13px;
font-weight:600;
letter-spacing:1px;
color:#0d6efd;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-title{
font-size:40px;
font-weight:800;
color:#15357a;
margin:20px 0 15px;
}

.feature-subtitle{
color:#666;
max-width:650px;
margin:auto;
font-size:17px;
}

.robot-box{
position:relative;
}

.robot-box:before{
content:'';
position:absolute;
width:220px;
height:220px;
background:#ffffff;
border-radius:50%;
filter:blur(40px);
left:50%;
top:50%;
transform:translate(-50%,-50%);
}

.robot-img{
position:relative;
z-index:2;
/* max-width:250px; */
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

.feature-card{

background:rgba(255,255,255,.7);

backdrop-filter:blur(18px);

border-radius:18px;

padding:28px;

height:100%;

border:1px solid rgba(255,255,255,.6);

transition:.35s;

box-shadow:0 20px 40px rgba(22,53,139,.08);

}

.feature-card:hover{

transform:translateY(-12px);

background:#fff;

box-shadow:0 30px 60px rgba(13,110,253,.18);

}

.icon-circle{

width:60px;

height:60px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#0d6efd,#4fa6ff);

color:#fff;

font-size:26px;

margin-bottom:20px;

box-shadow:0 12px 25px rgba(13,110,253,.25);

}

.feature-card h5{

font-size:22px;

font-weight:700;

margin-bottom:12px;

color:#17347d;

}

.feature-card p{

color:#666;

font-size:15px;

line-height:1.7;

margin:0;

}

@media(max-width:991px){

.feature-title{

font-size:30px;

}

.robot-img{

/* max-width:180px; */

margin-bottom:30px;

}

}

@media(max-width:576px){

.feature-title{

font-size:30px;

}

.feature-card{

padding:22px;

}

}

/*==========================
    Benefits Section
==========================*/

.benefits-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#173b93;
    margin-bottom:15px;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:17px;
    line-height:1.7;
    margin-bottom:50px;
}

/*==========================
    Benefit Card
==========================*/

.benefit-card{

    background:#fff;

    border-radius:18px;

    padding:18px;

    box-shadow:0 10px 30px rgba(22,53,139,.12);

    transition:.35s;

    border-left:5px solid #2d73ff;

    position:relative;

}

.benefit-card:hover{

    transform:translateX(8px);

    box-shadow:0 18px 45px rgba(45,115,255,.18);

}

.benefit-icon{

    width:72px;

    height:72px;

    min-width:72px;

    border-radius:18px;

    background:linear-gradient(135deg,#2d73ff,#5aa8ff);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;

    margin-right:18px;

    box-shadow:0 10px 25px rgba(45,115,255,.35);

}

.benefit-content h5{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

}

.benefit-content p{

    color:#666;

    margin:0;

    line-height:1.7;

    font-size:15px;

}

/*==========================
      AI Image
==========================*/

.ai-image-wrapper{

    position:relative;

    min-height:650px;

}

.ai-image{

    max-width:90%;

    position:relative;

    z-index:2;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-12px);}

100%{transform:translateY(0);}

}

/*==========================
      Floating Icons
==========================*/

.floating-icon{

    position:absolute;

    width:60px;

    height:60px;

    border-radius:16px;

    background:#2d73ff;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    box-shadow:0 12px 30px rgba(45,115,255,.30);

    animation:updown 4s ease-in-out infinite;

    z-index:5;

}

@keyframes updown{

0%{transform:translateY(0);}

50%{transform:translateY(-12px);}

100%{transform:translateY(0);}

}

/* Icon Positions */

.icon1{
top:20px;
left:18%;
}

.icon2{
top:90px;
right:18%;
}

.icon3{
top:180px;
left:12%;
}

.icon4{
top:170px;
right:5%;
}

.icon5{
bottom:70px;
right:10%;
}

.icon6{
top:15px;
right:0;
}

.icon7{
bottom:120px;
left:12%;
}

.icon8{
bottom:200px;
right:0;
}

/*==========================
 Decorative Dots
==========================*/

.ai-image-wrapper::before{

content:"";

position:absolute;

width:220px;

height:220px;

background-image:radial-gradient(#2d73ff 2px,transparent 2px);

background-size:18px 18px;

opacity:.18;

left:0;

top:140px;

}

.ai-image-wrapper::after{

content:"";

position:absolute;

width:200px;

height:200px;

background-image:radial-gradient(#2d73ff 2px,transparent 2px);

background-size:18px 18px;

opacity:.18;

right:0;

bottom:60px;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.section-title{

font-size:34px;

}

.ai-image-wrapper{

min-height:auto;

margin-top:50px;

}

.ai-image{

max-width:75%;

}

.floating-icon{

width:52px;

height:52px;

font-size:20px;

}

}

@media(max-width:767px){

.section-title{

font-size:30px;

}

.section-subtitle{

font-size:15px;

}

.benefit-card{

padding:15px;

}

.benefit-icon{

width:60px;

height:60px;

min-width:60px;

font-size:26px;

}

.benefit-content h5{

font-size:18px;

}

.benefit-content p{

font-size:14px;

}

.ai-image{

max-width:100%;

}

.floating-icon{

display:none;

}

}



.app-screen-section{
    background:#f8fbff;
    position:relative;
}

.section-title{
    font-size:48px;
    font-weight:700;
    color:#0b2d89;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.phone-frame{
    transition:.4s;
    text-align:center;
}

.phone-frame img{
    max-width:100%;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,.25));
}

.owl-item.center .phone-frame{
    transform:scale(1.08);
}

.owl-item:not(.center){
    opacity:.8;
}

.custom-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:10px;
    background:#2c2c2c;
    color:#fff;
    font-size:22px;
    z-index:99;
}

.prev-btn{
    left:-20px;
}

.next-btn{
    right:-20px;
}

.custom-nav:hover{
    background:#0d6efd;
}

@media(max-width:767px){

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

    .custom-nav{
        width:45px;
        height:45px;
    }

}


.testimonial-card{
    background:#fff;
    border-radius:15px;
    padding:20px;
    border:1px solid #d8dff1;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    margin:10px;
}

.review-text{
    color:#5a5a5a;
    font-size:18px;
    line-height:1.4;
    margin-bottom:20px;
    min-height:110px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:95px!important;
    height:95px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.client-info h5{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111;
}

.client-info span{
    color:#555;
    font-size:16px;
}

.stars{
    margin-top:5px;
}

.stars i{
    color:#ff8400;
    font-size:18px;
}

@media(max-width:991px){
    .main-title{
        font-size:34px;
    }

    .review-text{
        font-size:17px;
        min-height:auto;
    }
}

.testimonial-slider .owl-nav {
    display: block !important;
    text-align: center;
    margin-top: 30px;
}

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: #071d7a !important;
    color: #fff !important;
    border-radius: 50% !important;
    margin: 0 5px;
    font-size: 22px !important;
}

.testimonial-slider .owl-nav button.owl-prev:hover,
.testimonial-slider .owl-nav button.owl-next:hover {
    background: #0a2eb0 !important;
}



.contact-section{
    background:linear-gradient(135deg,#eef5ff,#ffffff,#edf7ff);
    position:relative;
}

.contact-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.circle-1{
    width:250px;
    height:250px;
    background:#0d6efd;
    opacity:.15;
    top:-80px;
    left:-80px;
}

.circle-2{
    width:300px;
    height:300px;
    background:#5de0ff;
    opacity:.15;
    bottom:-100px;
    right:-100px;
}

.contact-tag{
    display:inline-block;
    background:#fff;
    padding:8px 20px;
    border-radius:40px;
    color:#0d6efd;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-title{
    font-size:35px;
    font-weight:700;
    color:#14213d;
}

.contact-text{
    color:#6c757d;
    line-height:1.8;
    margin:25px 0;
}

.contact-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.form-control{
    height:55px;
    border-radius:12px;
    border:none;
    background:#f7f9fc;
    padding-left:20px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    box-shadow:none;
    border:1px solid #0d6efd;
    background:#fff;
}

.info-box{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.icon-box{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#0d6efd,#3d8bfd);
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
    margin-right:18px;
}

.info-box h6{
    margin-bottom:5px;
    font-weight:700;
}

.info-box p{
    margin:0;
    color:#6c757d;
}

.contact-btn{
    background:linear-gradient(135deg,#0d6efd,#3d8bfd);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 15px 30px rgba(13,110,253,.35);
}

@media(max-width:991px){

.contact-title{
    font-size:36px;
}

.contact-card{
    padding:30px;
}

}
.owl-carousel, .owl-carousel .owl-item {
    padding: 20px 0;
}