*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(135deg,#050816,#0f172a,#111827);
    overflow-x:hidden;
}

html{scroll-behavior: smooth;}
body::before{
    content:"";
    position:fixed;
    width:350px;
    height:350px;
    background:#00D4FF;
    filter:blur(180px);
    top:-150px;
    left:-150px;
    opacity:.4;
}

body::after{
    content:"";
    position:fixed;
    width:350px;
    height:350px;
    background:#6C63FF;
    filter:blur(180px);
    bottom:-150px;
    right:-150px;
    opacity:.4;
}

/* Header */

header{
    width:100%;
    padding:25px 0;

}

nav{

    width:90%;
    max-width:1250px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 40px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.35);
    z-index: 1000;
}

/* Logo */

.logo{

    font-size:34px;
    font-weight:800;
    color:#fff;

}

.logo span{

    color:#00D4FF;

}

/* Navigation */

.nav-links{

    display:flex;
    list-style:none;
    gap:35px;

}



.nav-links li a{

    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:500;

    position:relative;

    transition:.4s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    width:0%;

    height:3px;

    left:0;

    bottom:-8px;

    border-radius:20px;

    background:linear-gradient(to right,#00D4FF,#6C63FF);

    transition:.4s;

}

.nav-links li a:hover{

    color:#00D4FF;

}

.nav-links a:hover::after{

    width:100%;

}

/* Button */






.nav-btn a{

    text-decoration:none;

    color:#fff;

    padding:14px 30px;

    border-radius:40px;

    background:linear-gradient(135deg,#00D4FF,#4F7CFF,#6C63FF);

    background-size:250%;

    transition:.5s;

    font-weight:600;

}

.nav-btn a:hover{

    background-position:right;

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(0,212,255,.45);
    color: black;

}

/* Menu Icon */

.menu{
   display: none;
    color:#fff;

    font-size:28px;

    cursor:pointer;}

.menu span{
  display:block;
width:40px;
margin: 3px;
height:4px;
background:#00D4FF;
border-radius:5px;
transition:.4s;
}

.nav-links li a{text-decoration:none;
color:#fff;
font-size:17px;
font-weight:500;
transition:.3s;
position:relative;}

.nav-links li a::after{
    content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#00e5ff;
transition:.4s;

}

.menu.active span:nth-child(1){
 transform: rotate(45deg) translate(7px,6px);
}

.menu.active span:nth-child(2){
opacity: 0;
}

.menu.active span:nth-child(3){
transform: rotate(-45deg) translate(7px,-6px);
}

/*hero section*/

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100vh;
    padding:0 8%;
    background:#0b1220;
}

.hero-content{
    width:50%;
}

.tag{display: inline-block;
     font-weight: 700;
     padding:.25em .4em;
    background: rgba(0, 255, 255, .08);
    border: 1px solid #00E5FF;
    border-radius:.25rem;
    color: #00E5FF;
    margin-bottom: 25px;}

.hero-content H1{font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: white;}

.hero-content .span{
    background: linear-gradient(90deg, #00E5FF, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.hero-content p{font-size: 18px;
    line-height: 1.8;
    color: #b5bfd4;
    margin-bottom: 40px;}

.btn{display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background: linear-gradient(90deg, #00e5ff, #3b82f6);
    color: #fff;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);}



.hero-image{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero-image img{
    width:520px;
    position:relative;
    z-index:2;

    /* Floating Animation */
    animation: float 4s ease-in-out infinite;
}

.glow{
    width:380px;
    height:380px;
    position:absolute;
    background:#16c7ff;
    border-radius:50%;
    filter:blur(120px);
    opacity:.45;

    animation: glow 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes glow{

    0%{
        transform:scale(1);
        opacity:.35;
    }

    50%{
        transform:scale(1.08);
        opacity:.6;
    }

    100%{
        transform:scale(1);
        opacity:.35;
    }

}

.hero-image img{
    width:520px;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating{
    0%{
        transform:translateY(0px) rotate(0deg);
    }
    25%{
        transform:translateY(-12px) rotate(-1deg);
    }
    50%{
        transform:translateY(-25px) rotate(0deg);
    }
    75%{
        transform:translateY(-12px) rotate(1deg);
    }
    100%{
        transform:translateY(0px) rotate(0deg);
    }
}



/* About Section */

.about{
    width:100%;
    min-height:100vh;
    background:#08111f;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    gap:60px;
}



.about-img{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-img img{
    width:430PX;
    height:500PX;
    border-radius: 10PX 70PX 60PX 20PX;
    animation: float 5s ease-in-out infinite;
}

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    color:#25c9ff;
    border:1px solid #25c9ff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:50px;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.about-content h2 span{
    color:#25c9ff;
}

.about-content p{
    color:#c7d0da;
    line-height:30px;
    font-size:17px;
    margin-bottom:35px;
}

.about-boxes{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.box{
    background:#111c2f;
    padding:25px;
    border-radius:12px;
    text-align:center;
    flex:1;
    transition:.4s;
}

.box:hover{
    transform:translateY(-8px);
    border:1px solid #25c9ff;
}

.box h3{
    color:#25c9ff;
    font-size:34px;
}

.box p{
    color:#fff;
    margin-top:8px;
}

.about-btn{
    display:inline-block;
    padding:15px 35px;
    background:#25c9ff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#08a6e5;
}

/* Floating Image */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}


/*WHY CHOOS US*/

.why-us{
    background:#08121f;
    padding:100px 8%;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.subtitle{
    display:inline-block;
    color:#19c8ff;
    border:1px solid #19c8ff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:48px;
    color:#fff;
    margin:20px 0;
}

.section-header h2 span{
    color:#19c8ff;
}

.section-header p{
    color:#b8c4d3;
    line-height:28px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.why-card{
    background:#101b2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 30px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:#19c8ff;
    transition:.5s;
}

.why-card:hover::before{
    left:0;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#19c8ff;
    box-shadow:0 15px 35px rgba(25,200,255,.15);
}

.icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(25,200,255,.12);
    color:#19c8ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:25px;
    transition:.4s;
}

.why-card:hover .icon{
    background:#19c8ff;
    color:#08121f;
    transform:rotate(10deg) scale(1.08);
}

.why-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#b8c4d3;
    line-height:28px;
}


/*PROCESS SECTION*/


.process{
    padding:100px 8%;
    background:#08111f;
}

.title{
    text-align:center;
    margin-bottom:80px;
}

.title span{
    display:inline-block;
    color:#19c8ff;
    border:1px solid #19c8ff;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;
}

.title h2{
    color:#fff;
    font-size:48px;
    margin:25px 0 15px;
}

.title h2 b{
    color:#19c8ff;
}

.title p{
    color:#b8c5d3;
    max-width:700px;
    margin:auto;
    line-height:28px;
}

/* Timeline */

.timeline{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#19c8ff;
    box-shadow:0 0 20px #19c8ff;
}

.step{
    position:relative;
    width:50%;
    padding:20px 40px;
}

.step:nth-child(odd){
    left:0;
}

.step:nth-child(even){
    left:50%;
}

.step::after{
    content:"";
    position:absolute;
    width:22px;
    height:22px;
    background:#19c8ff;
    border-radius:50%;
    top:45px;
    box-shadow:0 0 20px #19c8ff;
}

.step:nth-child(odd)::after{
    right:-11px;
}

.step:nth-child(even)::after{
    left:-11px;
}

.card{
    background:#111b2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#19c8ff;
    box-shadow:0 15px 35px rgba(25,200,255,.2);
}

.number{
    width:70px;
    height:70px;
    background:#19c8ff;
    color:#08111f;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.card p{
    color:#b8c5d3;
    line-height:28px;
}

/*banner*/
.banner{
    width:90%;
    max-width:1200px;
    margin:80px auto;
    background:linear-gradient(135deg,#0d1729,#13233d);
    border-radius:25px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
}

/* Glow Effect */

.banner::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#16c8ff;
    border-radius:50%;
    right:-120px;
    top:-120px;
    filter:blur(120px);
    opacity:.25;
}

/* Left Content */

.left{
    flex:1;
    z-index:2;
}

.tag{
    display:inline-block;
    background:#16c8ff20;
    color:#16c8ff;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:1px;
}

.left h1{
    color:#fff;
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.left h1 span{
    color:#16c8ff;
}

.left p{
    color:#b6c2d2;
    line-height:1.8;
    margin-bottom:35px;
    max-width:520px;
}

/* Buttons */

.buttons{
    display:flex;
    gap:20px;
}

.btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.35s;
    font-weight:600;
}

.primary{
    background:#16c8ff;
    color:#08111f;
}

.primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(22,200,255,.4);
}

.secondary{
    border:2px solid #16c8ff;
    color:#fff;
}

.secondary:hover{
    background:#16c8ff;
    color:#08111f;
}

/* Right Side */

.right{
    flex:1;
    display:flex;
    justify-content:center;
}

.circle{
    width:280px;
    height:280px;
    border-radius:50%;
    background:linear-gradient(135deg,#33d6ff,#007bff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:75px;
    font-weight:bold;
    box-shadow:0 0 50px rgba(22,200,255,.5);
    animation:float 4s ease-in-out infinite;
}




/*ourvalues*/

.core-values{
    padding:100px 8%;
    background:#08111f;
}

.title{
    text-align:center;
    margin-bottom:80px;
}

.title span{
    display:inline-block;
    padding:8px 22px;
    border:1px solid #18c8ff;
    border-radius:30px;
    color:#18c8ff;
    font-size:14px;
    letter-spacing:1px;
}

.title h2{
    color:#fff;
    font-size:48px;
    margin:20px 0;
}

.title h2 b{
    color:#18c8ff;
}

.title p{
    color:#b8c5d3;
    max-width:700px;
    margin:auto;
    line-height:30px;
}

/* Layout */

.values-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 280px 1fr;
    align-items:center;
    gap:40px;
}

.column{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.value-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#101b2d;
    border:1px solid rgba(255,255,255,.08);
    padding:20px;
    border-radius:15px;
    transition:.4s;
}

.value-box:hover{
    transform:translateX(10px);
    border-color:#18c8ff;
    box-shadow:0 12px 30px rgba(24,200,255,.18);
}

.right .value-box:hover{
    transform:translateX(-10px);
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#18c8ff;
    color:#08111f;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.text h3{
    color:#fff;
    margin-bottom:6px;
    font-size:20px;
}

.text p{
    color:#b8c5d3;
    line-height:24px;
    font-size:14px;
}

/* Center Circle */

.center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle{
    width:220px;
    height:220px;
    border-radius:50%;
    background:linear-gradient(135deg,#18c8ff,#0a6dff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    font-weight:700;
    text-align:center;
    box-shadow:0 0 35px rgba(24,200,255,.35);
    animation:pulse 3s infinite;
}

@keyframes pulse{

0%,100%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

}

/*contact-us*/

.contact{
    padding:100px 8%;
    background:#08111f;
}

.contact-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

/* Left Side */

.contact-tag{
    display:inline-block;
    padding:8px 22px;
    border:1px solid #19c8ff;
    color:#19c8ff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.contact-left h2{
    font-size:48px;
    color:#fff;
    line-height:1.3;
    margin-bottom:20px;
}

.contact-left h2 span{
    color:#19c8ff;
}

.contact-left p{
    color:#b8c5d3;
    line-height:30px;
    margin-bottom:40px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
    background:#101b2d;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.info:hover{
    transform:translateX(10px);
    border-color:#19c8ff;
}

.li{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#19c8ff;
    color:#08111f;
    display:flex;

    align-items:center;
    font-size:10px;
}

.info h4{
    color:#fff;
    margin-bottom:5px;
}

.contact-right{transition:.4s;}

.contact-right:hover{
    transform: translateY(-10px);
    border-color: #19c8ff;
    box-shadow: 0 15px 35px rgba(25, 200, 255, .2);
  }

.info p{
    margin:0;
    color:#b8c5d3;}

.info a{margin:0;
    color:#b8c5d3;
     text-decoration: none;}

/* Right Side */

.contact-right{
    background:#101b2d;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.contact-right h3{
    color:#fff;
    font-size:28px;
    margin-bottom:30px;
}

.input-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-right input,
.contact-right textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    background:#08111f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    outline:none;
    color:#fff;
    transition:.3s;
}

.contact-right input:focus,
.contact-right textarea:focus{
    border-color:#19c8ff;
    box-shadow:0 0 15px rgba(25,200,255,.25);
}

.contact-right textarea{
    resize:none;
}

.contact-right button{
    width:100%;
    padding:16px;
    background:#19c8ff;
    color:#08111f;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-right button:hover{
    background:#0fb4ea;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(25,200,255,.25);
}


/*footer*/

.footer{
    background-image:linear-gradient(to top, #08111f, #01384a);
    border-top:2px solid #00bfff;
    padding:70px 8% 20px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:40px;
}

.logo{
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
    font-weight:700;
}

.logo span{
    color:#00bfff;
}

.footer-box h3{
    color:#fff;
    margin-bottom:20px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#00bfff;
    border-radius:20px;
}

.footer-box p{
    color:#bfc6d2;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#bfc6d2;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#00bfff;
    padding-left:8px;
}

.footer-box i{
    color:#00bfff;
    margin-right:10px;
}

/* Social Icons */

.social{
    margin-top:25px;
}

.social a{
    width:42px;
    height:42px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#18222f;
    color:#00bfff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social a:hover{
    background:#00bfff;
    color:#fff;
    transform:translateY(-5px);
}

/* Footer Bottom */

.footer-bottom{
    max-width:1300px;
    margin:50px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:#9ea9b7;
}

.top-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#00bfff;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.top-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,191,255,.4);
}


.top-btn{
    width:45px;
    height:45px;
    background:#00c6ff;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position: fixed;
    text-decoration:none;
    transition:.3s;
}

.top-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,198,255,.4);
}

.menu{
  display: none;}



/*SERVICE-page*/

.sec-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100vh;
    padding:0 8%;
    background:#0b1220;
}

.hero-content-1{
    width:50%;
}

.tag-1{display: inline-block;
     font-weight: 700;
     padding:.25em .4em;
    background: rgba(0, 255, 255, .08);
    border: 1px solid #00E5FF;
    border-radius:.25rem;
    color: #00E5FF;
    margin-bottom: 25px;}

.hero-content-1 H1{font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: white;}

.hero-content-1 .span{
    background: linear-gradient(90deg, #00E5FF, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

.hero-content-1 p{font-size: 18px;
    line-height: 1.8;
    color: #b5bfd4;
    margin-bottom: 40px;}

.hero-image-1{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;}

.hero-image-1 img{
    width:520px;
    position:relative;
    z-index:2;

    /* Floating Animation */
    animation: float 4s ease-in-out infinite;
}

.glow-1{
    width:380px;
    height:380px;
    position:absolute;
    background:#16c7ff;
    border-radius:50%;
    filter:blur(120px);
    opacity:.45;

    animation: glow 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes glow-1{

    0%{
        transform:scale(1);
        opacity:.35;
    }

    50%{
        transform:scale(1.08);
        opacity:.6;
    }

    100%{
        transform:scale(1);
        opacity:.35;
    }

}

.hero-image-1 img{
    width:520px;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating{
    0%{
        transform:translateY(0px) rotate(0deg);
    }
    25%{
        transform:translateY(-12px) rotate(-1deg);
    }
    50%{
        transform:translateY(-25px) rotate(0deg);
    }
    75%{
        transform:translateY(-12px) rotate(1deg);
    }
    100%{
        transform:translateY(0px) rotate(0deg);
    }
}

.services{
    padding:100px 8%;
    background:#070d1d;
}

.services-header{
    text-align:center;
    margin-bottom:60px;
}

.services-header span{
    color:#00d9ff;
    font-weight:600;
    letter-spacing:2px;
}

.services-header h2{
    color:#fff;
    font-size:45px;
    margin:15px 0;
    font-weight: 600;
}

.services-header .SPAN{COLOR:#564de7;}
.services-header p{
    color:#a7b3cf;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.service-card{
    position:relative;
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    transition:.5s;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#00d9ff,#5b5cff);
}

.service-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 45px rgba(0,217,255,.25);
}

.icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#00d9ff,#5b5cff);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    margin-bottom:25px;
    transition:.5s;
}

.service-card:hover .icon{
    transform:rotateY(360deg);
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.service-card p{
    color:#b5bfd8;
    line-height:1.7;
    margin-bottom:20px;
}

.service-card ul{
    list-style:none;
    margin-bottom:25px;
}

.service-card ul li{
    color:#dbe4ff;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.service-card h4{
    color:#00d9ff;
    font-size:38px;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#00d9ff,#5b5cff);
    transition:.4s;
}

.service-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,217,255,.4);
}

.badge{
    position:absolute;
    top:20px;
    right:-40px;
    transform:rotate(45deg);
    background:#00d9ff;
    color:#000;
    padding:8px 45px;
    font-size:13px;
    font-weight:700;
}





/*other-service*/

/*========== WEBSITE SHOWCASE ==========*/

.website-showcase{
    padding:100px 8%;
    background:#081320;
}

.website-header{
    text-align:center;
    margin-bottom:70px;
}

.website-header h2{
    font-size:55px;
    color:#fff;
    margin-bottom:15px;
}

.website-header h2 span{
    color:#19b8ff;
}

.website-header p{
    max-width:700px;
    margin:auto;
    color:#bfc8d8;
    line-height:1.8;
}

.website-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
}

.website-card{
    display:flex;
    align-items:center;
    gap:20px;
    padding:30px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    transition:.4s;
}

.website-card:hover{
    transform:translateY(-10px);
    border-color:#19b8ff;
    box-shadow:0 0 30px rgba(25,184,255,.3);
}

.website-icon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    background:#19b8ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.website-content h3{
    color:#fff;
    margin-bottom:10px;
    font-size:24px;
}

.website-content p{
    color:#cfd6df;
    line-height:1.7;
}


.scroll-top{

position:relative;

right:30px;
bottom:30px;

width:55px;
height:55px;

background:#fff;

color:#fff;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:22px;

text-decoration:none;

cursor:pointer;

opacity:0;
visibility:hidden;

transform:translateY(30px);

transition:.4s;

box-shadow:0 0 25px rgba(25,184,255,.5);

z-index:999;

}

.scroll-top:hover{

transform:translateY(-8px);

background:white;

box-shadow:0 0 35px rgba(25,184,255,.8);

}

.scroll-top.active{

opacity:1;
visibility:visible;
transform:translateY(0);

}


/*contact page*/

.top-btn{ width: 50px;
      height: 50px;
      border-radius: 50%;
      display: inline-flex;
      align-content: center;
      justify-content: center;
    background: linear-gradient(90deg, #00e5ff, #3b82f6);
      color: #fff;
      font-size: 30px;
      position: fixed;
      right: 10px;
      bottom: 10px;
      text-decoration:none;}


/* ================================
   MOBILE RESPONSIVE NAVBAR
================================ */

@media (max-width: 991px){

    nav{
        width:92%;
        padding:15px 22px;
        position:relative;
    }

    .logo{
        font-size:28px;
    }

    /* Hide desktop button */
    .nav-btn{
        display:none;
    }

    /* Hamburger */
    .menu{
        display:block;
        cursor:pointer;
        z-index:1001;
    }

    /* Mobile menu */
    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;

        margin-top:12px;

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:0;

        padding:0;

        background:rgba(8,19,32,.97);
        backdrop-filter:blur(20px);

        border:1px solid rgba(255,255,255,.12);
        border-radius:15px;

        overflow:hidden;

        opacity:0;
        visibility:hidden;
        transform:translateY(-15px);

        transition:.35s ease;

        z-index:999;
    }

    /* When JS adds active */
    .nav-links.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links li{
        display:block;
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        width:100%;
        padding:16px 20px;
        font-size:16px;
    }

    .nav-links li a:hover{
        background:rgba(0,212,255,.08);
    }

}


/* ================================
   TABLET
================================ */

@media (max-width: 768px){

    .hero{
        min-height:auto;
        padding:100px 6% 70px;

        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .hero-content{
        width:100%;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-image{
        width:100%;
    }

    .hero-image img{
        width:min(90%,450px);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 480px){

    header{
        padding:15px 0;
    }

    nav{
        width:94%;
        padding:13px 17px;
        border-radius:14px;
    }

    .logo{
        font-size:25px;
    }

    .menu span{
        width:32px;
        height:3px;
        margin:5px 0;
    }

    .hero{
        padding:70px 20px 50px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.15;
    }

    .hero-content p{
        font-size:15px;
    }

    .tag{
        font-size:12px;
    }

    .hero-image img{
        width:100%;
        max-width:350px;
    }

 .about{display: block;}

.why-container{display: block; width: 100%; padding:15px; }
.why-card{margin:15px; width:100%;}
.about-img img{width:300px; height: 400px;}
.step{display:inline-flex; padding:5px; }
}






