/* ==========================================
   CUBEON TECHNOLOGIES
   Modern One Page Theme
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#08111f;
    color:#ffffff;
    line-height:1.7;
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*======================
NAVBAR
=======================*/

.navbar{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    transition:.4s;
    padding:18px 0;

}

.navbar.sticky{

    background:#07101d;
    box-shadow:0 10px 30px rgba(0,0,0,.4);

}

.navbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    height:55px;

}

.menu{

    display:flex;
    gap:35px;

}

.menu a{

    color:#fff;
    font-weight:600;
    transition:.3s;

}

.menu a:hover{

    color:#29b6ff;

}

.btn-nav{

    background:#4F46E5;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    transition:.3s;

}

.btn-nav:hover{

    background:#06B6D4;

}

.menu-btn{

    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;

}

/*======================
HERO
=======================*/

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(135deg,#0F172A,#172554,#0C4A6E);

}

.hero::before{

    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#4F46E5;
    border-radius:50%;
    filter:blur(140px);
    opacity:.25;
    top:-220px;
    left:-150px;

}

.hero::after{

    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#06B6D4;
    border-radius:50%;
    filter:blur(140px);
    opacity:.20;
    right:-150px;
    bottom:-200px;

}

.overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;

}

.hero-content h1{

    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;

}

.hero-content p{

    font-size:18px;
    color:#d7d7d7;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.btn-primary{

    padding:15px 34px;
    border-radius:50px;
    background:#4F46E5;
    color:#fff;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);
    background:#06B6D4;

}

.btn-secondary{

    padding:15px 34px;
    border-radius:50px;
    border:2px solid #fff;
    color:#fff;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:#111827;

}

.hero-stats{

    display:flex;
    gap:50px;
    margin-top:55px;
    flex-wrap:wrap;

}

.hero-stats h2{

    font-size:36px;
    color:#06B6D4;

}

.hero-stats span{

    color:#ddd;

}

.hero-image{

    position:relative;
    height:650px;

}

.circle{

    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:linear-gradient(135deg,#4F46E5,#06B6D4);
    top:110px;
    left:60px;
    opacity:.85;
    animation:float 6s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}

}

.glass-card{

    position:absolute;
    width:240px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.glass-card i{

    font-size:46px;
    margin-bottom:20px;
    color:#06B6D4;

}

.glass-card h3{

    font-size:22px;

}

.glass-card:nth-child(2){

    top:40px;
    right:30px;

}

.glass-card.second{

    left:0;
    bottom:170px;

}

.glass-card.third{

    right:40px;
    bottom:40px;

}

/* Section Title */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    margin-bottom:15px;

}

.section-title p{

    color:#bfc9d8;
    max-width:700px;
    margin:auto;

}

section{

    padding:100px 0;

}
/*=========================================
ABOUT SECTION
=========================================*/

.about{

    background:#0B1220;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.about-image::after{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:20px;
    background:linear-gradient(135deg,#4F46E5,#06B6D4);
    right:-20px;
    bottom:-20px;
    z-index:-1;

}

.about-content h3{

    font-size:36px;
    margin-bottom:20px;
    color:#fff;

}

.about-content p{

    color:#c9d3df;
    margin-bottom:20px;
    font-size:17px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;

}

.feature{

    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    padding:16px 20px;
    border-radius:12px;
    transition:.35s;

}

.feature:hover{

    transform:translateY(-5px);
    background:#111d31;

}

.feature i{

    color:#06B6D4;
    font-size:22px;

}

.feature span{

    color:#fff;
    font-weight:500;

}

/*=========================================
STATISTICS
=========================================*/

.stats{

    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:linear-gradient(135deg,#101d33,#132544);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;

}

.stat-box::before{

    content:"";
    position:absolute;
    width:100%;
    height:5px;
    left:0;
    top:0;
    background:linear-gradient(90deg,#4F46E5,#06B6D4);

}

.stat-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 40px rgba(0,0,0,.35);

}

.stat-box h2{

    font-size:46px;
    color:#06B6D4;
    margin-bottom:10px;

}

.stat-box p{

    color:#d7d7d7;
    font-size:17px;

}

/*=========================================
COMMON ANIMATIONS
=========================================*/

.about,
.stats,
.services,
.why-us,
.contact{

    position:relative;

}

.fade-up{

    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

/* Decorative Glow */

.about::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#4F46E5;
    border-radius:50%;
    filter:blur(180px);
    opacity:.12;
    top:50px;
    left:-150px;

}

.about::after{

    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#06B6D4;
    border-radius:50%;
    filter:blur(160px);
    opacity:.10;
    right:-100px;
    bottom:20px;

}
/*=========================================
SERVICES SECTION
=========================================*/

.services{

    background:#08111f;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.service-card{

    background:#101b30;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#4F46E5,#06B6D4);

    transition:.5s;

}

.service-card:hover::before{

    left:0;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.4);

    background:#14233d;

}

.service-card .icon{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#4F46E5,#06B6D4);

    margin-bottom:25px;

}

.service-card i{

    font-size:38px;
    color:#fff;

}

.service-card h3{

    font-size:26px;
    margin-bottom:18px;

}

.service-card p{

    color:#cbd5e1;

    line-height:1.8;

}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-us{

    background:#0b1220;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.why-card{

    background:#101d33;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.why-card:hover{

    transform:translateY(-10px);

    background:#17284a;

}

.why-card i{

    font-size:42px;

    color:#06B6D4;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#cbd5e1;

}

/*=========================================
CTA
=========================================*/

.cta{

    background:linear-gradient(135deg,#4F46E5,#06B6D4);

    text-align:center;

    padding:90px 20px;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    font-size:18px;

    color:#eef7ff;

}

.cta .btn-primary{

    background:#fff;

    color:#111827;

}

.cta .btn-primary:hover{

    background:#08111f;

    color:#fff;

}
/*=========================================
CONTACT SECTION
=========================================*/

.contact{

    background:#08111f;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.contact-card{

    background:#101b30;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);

}

.contact-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.contact-card i{

    font-size:42px;
    color:#06B6D4;
    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;
    font-size:22px;

}

.contact-card a{

    color:#dbeafe;
    word-break:break-word;
    transition:.3s;

}

.contact-card a:hover{

    color:#06B6D4;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#050b16;
    padding:70px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:40px;

}

.footer-grid h3{

    margin-bottom:20px;
    color:#fff;

}

.footer-grid p,
.footer-grid li{

    color:#b8c4d9;
    margin-bottom:12px;
    line-height:1.8;

}

.footer-grid ul{

    padding:0;

}

.footer-grid a{

    color:#b8c4d9;
    transition:.3s;

}

.footer-grid a:hover{

    color:#06B6D4;

}

.footer-grid img{

    height:60px;
    margin-bottom:20px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#8fa4bf;
    font-size:15px;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#4F46E5;
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#08111f;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero-image{

height:500px;
margin-top:50px;

}

.about-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

.about-features{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.navbar{

padding:15px 0;

}

.menu{

position:absolute;
top:80px;
left:0;
width:100%;
background:#08111f;
flex-direction:column;
display:none;
padding:25px;

}

.menu.active{

display:flex;

}

.menu li{

padding:12px 0;

}

.menu-btn{

display:block;

}

.btn-nav{

display:none;

}

.hero{

padding-top:120px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:17px;

}

.hero-stats{

justify-content:center;

}

.section-title h2{

font-size:34px;

}

.about-content h3{

font-size:30px;

}

.cta h2{

font-size:34px;

}

.footer-grid{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.hero-content h1{

font-size:32px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;
text-align:center;

}

.hero-image{

display:none;

}

.section-title h2{

font-size:28px;

}

.cta{

padding:70px 20px;

}

.cta h2{

font-size:28px;

}

}