*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#050816;
}

/* Navigation */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(5,8,22,.80);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;

}

.logo{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:28px;
    font-weight:700;

}

.logo img{

   width: auto;
    height: 55px;

}

.nav-links{

    display:flex;
    gap:35px;

    list-style:none;

}

.nav-links li a{

    text-decoration:none;

    color:#d9d9d9;

    font-size:16px;

    transition:.3s;

    position:relative;

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#00d4ff;

    transition:.4s;

}

.nav-links li a:hover{

    color:#00d4ff;

}

.nav-links li a:hover::after{

    width:100%;

}

.quote-btn{

    text-decoration:none;

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    background:linear-gradient(90deg,#00c6ff,#0072ff);

    transition:.4s;

    font-weight:600;

}

.quote-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,198,255,.45);

}

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/* Mobile */

@media(max-width:992px){

.nav-links{

    position:absolute;

    top:85px;
    left:-100%;

    width:100%;

    background:#08101d;

    flex-direction:column;

    text-align:center;

    padding:40px 0;

    transition:.4s;

}

.nav-links.active{

    left:0;

}

.quote-btn{

    display:none;

}

.menu-btn{

    display:block;

}

}

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding:140px 8% 80px;

    background:
    radial-gradient(circle at top left,#0b3d91 0%,transparent 35%),
    radial-gradient(circle at bottom right,#00d4ff33 0%,transparent 35%),
    #050816;

    color:#fff;

    overflow:hidden;

}

.hero-content{

    flex:1;

    max-width:650px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:25px;

    color:#00d4ff;

    font-weight:600;

}

.hero h1{

    font-size:65px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero h1 span{

    background:linear-gradient(90deg,#00d4ff,#4facfe,#00f2fe);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero p{

    color:#bfc8d6;

    line-height:1.8;

    font-size:19px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn-primary{

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:linear-gradient(90deg,#00c6ff,#0072ff);

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,212,255,.35);

}

.btn-secondary{

    padding:16px 35px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    transition:.3s;

}

.btn-secondary:hover{

    background:#00d4ff;

    color:#000;

}

.hero-stats{

    display:flex;

    gap:60px;

}

.hero-stats h2{

    font-size:40px;

    color:#00d4ff;

}

.hero-stats span{

    color:#9da9bb;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.glass-card{

    width:500px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:30px;

    animation:float 5s ease-in-out infinite;

}

.card-header{

    display:flex;

    gap:8px;

    margin-bottom:25px;

}

.card-header span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.card-header span:nth-child(1){

    background:#ff5f56;

}

.card-header span:nth-child(2){

    background:#ffbd2e;

}

.card-header span:nth-child(3){

    background:#27c93f;

}

.dashboard{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.dashboard-item{

    background:#0f1729;

    padding:20px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.dashboard-item:hover{

    transform:translateY(-5px);

    border-color:#00d4ff;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:992px){

.hero{

flex-direction:column;

text-align:center;

padding-top:50px;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-stats{

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.glass-card{

width:100%;

max-width:450px;

}

}

.services{

    padding:50px 8%;

    background:#07111f;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:auto auto 70px;

}

.section-title span{

    color:#00d4ff;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    color:#fff;

    font-size:48px;

    margin:15px 0;

}

.section-title p{

    color:#9ba7bb;

    line-height:1.8;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#0c1628;

    padding:40px 35px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg,#00d4ff,#4facfe);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#00d4ff;

    box-shadow:0 20px 40px rgba(0,212,255,.15);

}

.icon{

    width:75px;

    height:75px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:#00d4ff;

    margin-bottom:25px;

    background:rgba(0,212,255,.08);

}

.service-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#9ba7bb;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#00d4ff;

    text-decoration:none;

    font-weight:600;

}

.service-card a i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

@media(max-width:768px){

.section-title h2{

font-size:36px;

}

.services{

padding:70px 6%;

}

}
.why-us{

    padding:50px 8%;
    background:#050816;

}

.container{

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:70px;
    align-items:center;

}

.section-tag{

    display:inline-block;
    color:#00d4ff;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;

}

.why-left h2{

    font-size:50px;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;

}

.why-left h2 span{

    color:#00d4ff;

}

.why-left p{

    color:#a9b6c7;
    line-height:1.9;
    margin-bottom:35px;
    font-size:18px;

}

.primary-btn{

    display:inline-block;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,212,255,.35);

}

.why-right{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.feature-card{

    background:#0d1425;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);
    border-color:#00d4ff;
    box-shadow:0 20px 35px rgba(0,212,255,.15);

}

.feature-icon{

    width:65px;
    height:65px;
    border-radius:16px;
    background:rgba(0,212,255,.08);
    color:#00d4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;

}

.feature-card h3{

    color:#fff;
    margin-bottom:12px;
    font-size:22px;

}

.feature-card p{

    color:#9ba7bb;
    line-height:1.8;

}

@media(max-width:992px){

.container{

grid-template-columns:1fr;

}

.why-right{

grid-template-columns:1fr;

}

.why-left h2{

font-size:38px;

}

}
.portfolio{

    padding:50px 8%;
    background:#07111f;

}

.section-header{

    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;

}

.section-header span{

    color:#00d4ff;
    font-weight:700;
    letter-spacing:2px;

}

.section-header h2{

    color:#fff;
    font-size:50px;
    margin:15px 0;

}

.section-header p{

    color:#9ba7bb;
    line-height:1.8;

}

.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;

}

.project-card{

    background:#0c1628;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;

}

.project-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,212,255,.15);
    border-color:#00d4ff;

}

.project-image{

    position:relative;
    overflow:hidden;

}

.project-image img{

    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.4s;

}

.project-card:hover .overlay{

    opacity:1;

}

.overlay a{

    padding:14px 30px;
    background:#00d4ff;
    color:#000;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;

}

.project-content{

    padding:30px;

}

.category{

    display:inline-block;
    background:rgba(0,212,255,.12);
    color:#00d4ff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:18px;
    font-size:14px;

}

.project-content h3{

    color:#fff;
    font-size:28px;
    margin-bottom:15px;

}

.project-content p{

    color:#9ba7bb;
    line-height:1.8;
    margin-bottom:25px;

}

.tech{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

}

.tech span{

    padding:8px 15px;
    border-radius:30px;
    background:#162339;
    color:#00d4ff;
    font-size:14px;

}

.media-recognition{

    padding:50px 8%;
    background:#050816;

}

.media-recognition .section-title{

    max-width:800px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;

}

.media-recognition .section-title span{

    color:#00d4ff;
    font-weight:700;
    letter-spacing:2px;

}

.media-recognition .section-title h2{

    color:#fff;
    font-size:52px;
    margin:20px 0;

}

.media-recognition .section-title p{

    color:#a6b1c2;
    line-height:1.8;

}

.media-container{

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;

}

.video-box{

    position:relative;
    overflow:hidden;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 60px rgba(0,212,255,.10);

}

.video-box iframe{

    width:100%;
    height:500px;
    border:0;

}

.media-content{

    color:#fff;

}

.badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(0,212,255,.12);

    color:#00d4ff;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.media-content h3{

    font-size:40px;
    margin-bottom:20px;

}

.media-content p{

    color:#9ba7bb;
    line-height:1.8;

}

.summary{

    margin:35px 0;

    background:#0c1628;

    border-left:4px solid #00d4ff;

    padding:25px;

    border-radius:15px;

}

.summary h4{

    color:#00d4ff;

    margin-bottom:15px;

}

.media-stats{

    display:flex;

    gap:40px;

    margin:35px 0;

}

.media-stats h2{

    color:#00d4ff;
    margin-bottom:8px;

}

.media-stats span{

    color:#8d99ad;
    font-size:15px;

}

.watch-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#fff;

    padding:18px 35px;

    border-radius:50px;

    background:linear-gradient(135deg,#00c6ff,#0072ff);

    transition:.3s;

}

.watch-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,212,255,.30);

}

@media(max-width:992px){

.media-container{

grid-template-columns:1fr;

}

.video-box iframe{

height:300px;

}

.media-content{

text-align:center;

}

.media-stats{

justify-content:center;
flex-wrap:wrap;

}

}

/* ===========================
   AIWEAPX TOAST
=========================== */

#toast-container{

    position:fixed;

    top:25px;

    right:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:99999;

}

.toast{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:15px;

    width:340px;

    padding:18px;

    border-radius:14px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 12px 35px rgba(0,0,0,.35);

    backdrop-filter:blur(14px);

    overflow:hidden;

    color:#fff;

    animation:toastIn .35s ease;

}

.toast-icon{

    font-size:22px;

    flex-shrink:0;

    margin-top:2px;

}

.toast-content{

    flex:1;

}

.toast-title{

    font-weight:700;

    font-size:15px;

    margin-bottom:4px;

}

.toast-message{

    font-size:13px;

    color:#CBD5E1;

    line-height:1.5;

}

.toast-close{

    cursor:pointer;

    font-size:18px;

    color:#94A3B8;

    transition:.3s;

}

.toast-close:hover{

    color:white;

}

.toast-progress{

    position:absolute;

    left:0;

    bottom:0;

    height:4px;

    width:100%;

    animation:progress linear forwards;

}

/* Success */

.toast.success{

    border-left:4px solid #22C55E;

}

.toast.success .toast-icon{

    color:#22C55E;

}

.toast.success .toast-progress{

    background:#22C55E;

}

/* Error */

.toast.error{

    border-left:4px solid #EF4444;

}

.toast.error .toast-icon{

    color:#EF4444;

}

.toast.error .toast-progress{

    background:#EF4444;

}

/* Info */

.toast.info{

    border-left:4px solid #0EA5E9;

}

.toast.info .toast-icon{

    color:#0EA5E9;

}

.toast.info .toast-progress{

    background:#0EA5E9;

}

/* Warning */

.toast.warning{

    border-left:4px solid #F59E0B;

}

.toast.warning .toast-icon{

    color:#F59E0B;

}

.toast.warning .toast-progress{

    background:#F59E0B;

}

@keyframes toastIn{

    from{

        opacity:0;

        transform:translateX(80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes toastOut{

    to{

        opacity:0;

        transform:translateX(120px);

    }

}

@keyframes progress{

    from{

        width:100%;

    }

    to{

        width:0%;

    }

}