*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#071018;
color:#fff;
overflow-x:hidden;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:18px 0;
z-index:999;
background:#071018;

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo img{

height:48px;

}

nav ul{

display:flex;
gap:35px;
list-style:none;

}

nav ul li a{

color:white;
text-decoration:none;
font-size:15px;
transition:.3s;

}

nav ul li a:hover{

color:#10d7d0;

}

.header-btn{

padding:14px 28px;
background:#10d7d0;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:600;

}

.hero{

padding-top:150px;
padding-bottom:60px;

}

.hero-grid{

display:grid;
grid-template-columns:1.1fr 1fr .8fr;
gap:45px;
align-items:center;

}

.hero-left h3{

font-size:60px;
color:#10d7d0;

}

.hero-left h1{

font-size:70px;
line-height:75px;

}

.hero-left h2{

font-size:48px;
margin:18px 0;
color:#10d7d0;

}

.hero-left p{

font-size:17px;
line-height:32px;
color:#c8d0d7;
margin-bottom:35px;

}

.hero-btns{

display:flex;
gap:18px;

}

.btn1{

background:#10d7d0;
padding:16px 34px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:600;

}

.btn2{

border:2px solid #fff;
padding:16px 34px;
border-radius:8px;
color:white;
text-decoration:none;

}

.hero-center{

text-align:center;

}

.hero-center img{

width:100%;
animation:float 5s infinite;

}

.hero-form{

background:white;
padding:30px;
border-radius:12px;

}

.hero-form h2{

color:#111;
margin-bottom:25px;

}

.hero-form input,

.hero-form textarea{

width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;

}

.hero-form textarea{

height:120px;
resize:none;

}

.hero-form button{

width:100%;
background:#10d7d0;
border:none;
padding:16px;
color:white;
border-radius:8px;
cursor:pointer;
font-size:16px;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}







/*==========================
PROCESS SECTION
==========================*/

.process{

    padding:50px 0;
    background:#08131d;

}

.section-title{

    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:70px;

}

.section-title span{

    display:inline-block;
    color:#16d6d0;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;

}

.section-title h2{

    font-size:48px;
    line-height:60px;
    font-weight:700;
    margin-bottom:18px;

}

.section-title p{

    color:#9aa8b6;
    line-height:30px;
    font-size:17px;

}

.process-wrapper{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

}

.process-card{

    width:260px;
    background:#0d1b26;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    position:relative;
    transition:.35s;
    cursor:pointer;
    overflow:hidden;

}

.process-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#16d6d0;
    transform:scaleX(0);
    transition:.35s;

}

.process-card:hover{

    transform:translateY(-12px);
    border-color:#16d6d0;
    box-shadow:0 20px 45px rgba(22,214,208,.15);

}

.process-card:hover::before{

    transform:scaleX(1);

}

.process-number{

    width:55px;
    height:55px;
    background:#16d6d0;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:18px;
    margin-bottom:22px;

}

.process-card img{

    width:95px;
    display:block;
    margin-bottom:25px;
    transition:.4s;

}

.process-card:hover img{

    transform:scale(1.08) rotate(-4deg);

}

.process-card h3{

    font-size:24px;
    margin-bottom:15px;

}

.process-card p{

    color:#9ba8b4;
    line-height:28px;
    font-size:15px;

}

.process-arrow{

    color:#16d6d0;
    font-size:38px;
    font-weight:700;
    animation:arrowMove 1.2s infinite;

}

@keyframes arrowMove{

0%{

transform:translateX(0);

}

50%{

transform:translateX(10px);

}

100%{

transform:translateX(0);

}

}

@media(max-width:1100px){

.process-wrapper{

    gap:25px;

}

.process-arrow{

    display:none;

}

}

@media(max-width:768px){

.process{

    padding:70px 0;

}

.section-title h2{

    font-size:34px;
    line-height:45px;

}

.process-card{

    width:100%;

}

}










/*=========================
SERVICES
==========================*/

.services{

    padding:50px 0;
    background:#07131c;
    overflow:hidden;

}

.marquee{

    width:100%;
    overflow:hidden;
    margin-top:60px;

}

.marquee-track{

    display:flex;
    width:max-content;
    animation:marquee 28s linear infinite;

}

.marquee:hover .marquee-track{

    animation-play-state:paused;

}

.service-box{

    width:260px;
    min-width:260px;

    margin-right:25px;

    padding:35px 25px;

    border-radius:18px;

    background:#0d1c28;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-box::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(22,214,208,.25),
        transparent
    );

    transition:.6s;

}

.service-box:hover::before{

    left:100%;

}

.service-box:hover{

    transform:translateY(-12px);

    border-color:#16d6d0;

    box-shadow:0 18px 40px rgba(22,214,208,.18);

}

.service-box img{

    width:120px;

    margin-bottom:25px;

    transition:.4s;

}

.service-box:hover img{

    transform:scale(1.12) rotate(6deg);

}

.service-box h4{

    color:#fff;

    font-size:22px;

    font-weight:600;

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.service-box{

    width:220px;

    min-width:220px;

    padding:28px 20px;

}

.service-box h4{

    font-size:18px;

}

}













/*=========================
CLIENTS
==========================*/

.clients{

    padding:50px 0;

    background:#08141d;

}

.clientSlider{

    margin-top:60px;

    padding-bottom:60px;

}

.client-card{

    background:#0f1d29;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

    position:relative;

}

.client-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:#18d8d0;

    transform:scaleX(0);

    transition:.35s;

}

.client-card:hover::after{

    transform:scaleX(1);

}

.client-card:hover{

    transform:translateY(-12px);

    border-color:#18d8d0;

    box-shadow:0 18px 40px rgba(24,216,208,.18);

}

.client-card img{

    width:90px;

    
    object-fit:cover;

    

    margin-bottom:22px;

    transition:.4s;

}

.client-card:hover img{

    transform:scale(1.08) rotate(5deg);

}

.client-card h4{

    font-size:22px;

    margin-bottom:8px;

    color:#fff;

}

.client-card span{

    color:#8fa2b2;

    font-size:15px;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#4a5c69;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#18d8d0;

}

@media(max-width:768px){

.client-card{

    padding:30px 20px;

}

.client-card h4{

    font-size:20px;

}

}




/*=========================
WHY CHOOSE US
==========================*/

.why-us{

    padding:60px 0;

    background:#08131d;

    overflow:hidden;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.sub-title{

    color:#18d8d0;

    font-weight:600;

    letter-spacing:1px;

    display:inline-block;

    margin-bottom:15px;

}

.why-content h2{

    font-size:48px;

    line-height:60px;

    margin-bottom:25px;

}

.why-content>p{

    color:#9fb1bc;

    line-height:30px;

    margin-bottom:40px;

}

.feature-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:20px;

    background:#0f1d28;

    border:1px solid rgba(255,255,255,.08);

    padding:20px;

    border-radius:16px;

    transition:.35s;

}

.feature-item:hover{

    transform:translateX(12px);

    border-color:#18d8d0;

    box-shadow:0 15px 35px rgba(24,216,208,.18);

}

.icon{

    width:65px;

    height:65px;

    background:#18d8d0;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.icon img{

    width:34px;

}

.feature-item h4{

    font-size:22px;

    margin-bottom:6px;

}

.feature-item p{

    color:#96a8b3;

    font-size:15px;

}

.why-image{

    position:relative;

    text-align:center;

}

.why-image img{

    width:100%;

    max-width:520px;

    animation:floatImage 5s ease-in-out infinite;

    position:relative;

    z-index:2;

}

.circle{

    position:absolute;

    border-radius:50%;

    background:rgba(24,216,208,.15);

    animation:zoomCircle 6s infinite;

}

.circle.one{

    width:180px;

    height:180px;

    top:40px;

    left:20px;

}

.circle.two{

    width:120px;

    height:120px;

    bottom:20px;

    right:50px;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

@keyframes zoomCircle{

0%{

transform:scale(.8);

opacity:.5;

}

50%{

transform:scale(1.2);

opacity:1;

}

100%{

transform:scale(.8);

opacity:.5;

}

}

@media(max-width:991px){

.why-grid{

grid-template-columns:1fr;

}

.why-image{

order:-1;

}

}

@media(max-width:768px){

.why-us{

padding:80px 0;

}

.why-content h2{

font-size:34px;

line-height:46px;

}

.feature-item{

padding:18px;

}

.feature-item h4{

font-size:19px;

}

}

/*=========================
CTA SECTION
==========================*/

.cta-section{

    padding:60px 0;

    background:#071018;

    overflow:hidden;

}

.cta-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

    background:#0d1c28;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:70px;

    position:relative;

}

.cta-content span{

    color:#18d8d0;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

}

.cta-content h2{

    font-size:52px;

    line-height:64px;

    margin:18px 0;

}

.cta-content p{

    color:#9aa9b5;

    line-height:30px;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn{

    background:#18d8d0;

    color:#fff;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(24,216,208,.35);

}

.call-btn{

    border:2px solid #18d8d0;

    color:#18d8d0;

    text-decoration:none;

    padding:16px 34px;

    border-radius:10px;

    transition:.35s;

}

.call-btn:hover{

    background:#18d8d0;

    color:#fff;

}

.cta-image{

    position:relative;

    text-align:center;

}

.cta-image img{

    max-width:420px;

    width:100%;

    position:relative;

    z-index:2;

    animation:rocketFloat 5s ease-in-out infinite;

}

.glow{

    position:absolute;

    border-radius:50%;

    background:rgba(24,216,208,.18);

    animation:pulseGlow 4s infinite;

}

.glow.one{

    width:220px;

    height:220px;

    top:20px;

    left:40px;

}

.glow.two{

    width:120px;

    height:120px;

    right:20px;

    bottom:30px;

}

@keyframes rocketFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}

@keyframes pulseGlow{

0%{

transform:scale(.8);

opacity:.5;

}

50%{

transform:scale(1.15);

opacity:1;

}

100%{

transform:scale(.8);

opacity:.5;

}

}

@media(max-width:991px){

.cta-wrapper{

grid-template-columns:1fr;

padding:50px 35px;

text-align:center;

}

.cta-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.cta-section{

padding:80px 0;

}

.cta-content h2{

font-size:36px;

line-height:48px;

}

.cta-wrapper{

padding:35px 25px;

}

}



/*=========================
FOOTER
==========================*/

.footer{

    background:#050d14;

    padding-top:90px;

    position:relative;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-box p{

    color:#96a8b5;

    line-height:30px;

    margin-bottom:30px;

}

.footer-box h3{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#9baab6;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#18d8d0;

    padding-left:8px;

}

.contact-list li{

    color:#9baab6;

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.contact-list i{

    color:#18d8d0;

    margin-top:4px;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0f1c28;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.social-links a:hover{

    background:#18d8d0;

    transform:translateY(-6px) rotate(360deg);

}

.footer-bottom{

    margin-top:70px;

    padding:22px 0;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    color:#8fa0ac;

    font-size:15px;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer{

padding-top:70px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.footer-logo{

width:160px;

}

.footer-box h3{

font-size:20px;

}

}


/*=========================
SUCCESS POPUP
=========================*/
/*======================
SUCCESS POPUP
=======================*/

.popup{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999999;

}

.popup.show{

opacity:1;

visibility:visible;

}

.popup-content{

width:380px;

background:#fff;

border-radius:18px;

padding:35px;

text-align:center;

transform:scale(.8);

transition:.35s;

}

.popup.show .popup-content{

transform:scale(1);

}

.popup-icon{

width:80px;

height:80px;

background:#18d8d0;

color:#fff;

font-size:40px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto;

margin-bottom:20px;

}

.popup-content h2{

margin-bottom:10px;

color:#111;

}

.popup-content p{

color:#666;

margin-bottom:25px;

line-height:28px;

}

.popup-content button{

background:#18d8d0;

color:#fff;

border:none;

padding:14px 35px;

border-radius:8px;

cursor:pointer;

font-size:16px;

}





.package-section{
    padding:90px 0;
    background:#07162e;
}

.package-card{
    background:#0d1b36;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.package-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:40px;
    padding-bottom:30px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.package-top h3{
    font-size:34px;
    color:#fff;
    margin-bottom:10px;
}

.package-top p{
    color:#b9c3d2;
}

.price-box{
    background:linear-gradient(135deg, #025d5a, #10d7d0);
    padding:25px 40px;
    border-radius:18px;
    text-align:center;
    color:#fff;
}

.price-box h2{
    font-size:42px;
    margin-bottom:8px;
}

.package-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.package-box{
    background:#132544;
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:16px;
    transition:.4s;
}

.package-box:hover{
    transform:translateY(-8px);
    border-color:#16d6d0;
    box-shadow:0 15px 35px rgb(22 214 208 / 40%);
}

.package-box h4{
    color:#fff;
    margin-bottom:20px;
}

.package-box ul{
    list-style:none;
    margin:0;
    padding:0;
}

.package-box ul li{
    color:#d5deea;
    padding:12px 0;
    border-bottom:1px dashed rgba(255,255,255,.08);
}

.package-bottom{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.info-box{
    background:#132544;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:16px;
    transition:.4s;
}

.info-box:hover{
    background:#ff7a00;
    border-color:#ff7a00;
}

.info-box h5{
    margin-bottom:10px;
    font-size:20px;
}

.package-btn{
    display:block;
    width:260px;
    margin:auto;
    text-align:center;
    background:linear-gradient(135deg, #025d5a, #10d7d0);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    padding:16px 20px;
    border-radius:50px;
    transition:.4s;
}

.package-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(255,122,0,.35);
}

@media(max-width:991px){

.package-top{
    flex-direction:column;
    text-align:center;
}

.package-grid{
    grid-template-columns:1fr;
}

.package-bottom{
    grid-template-columns:1fr;
}

.package-btn{
    width:100%;
}

}