/* ===========================================
   AQUA GRAPHIC
   Main Stylesheet
   Version : 1.0
===========================================*/

:root{

--primary:#0057ff;
--secondary:#00bfff;
--dark:#071120;
--dark2:#0e1830;
--white:#ffffff;
--gray:#bfc7d5;
--border:rgba(255,255,255,.08);

--radius:18px;

--transition:.35s;

--shadow:

0 10px 35px rgba(0,87,255,.18);

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Vazirmatn',sans-serif;

background:var(--dark);

color:#fff;

overflow-x:hidden;

line-height:1.9;

}

body::before{

content:"";

position:fixed;

left:-200px;

top:-200px;

width:600px;

height:600px;

background:

radial-gradient(circle,
rgba(0,87,255,.28),
transparent 70%);

filter:blur(60px);

z-index:-2;

}

body::after{

content:"";

position:fixed;

right:-250px;

bottom:-250px;

width:700px;

height:700px;

background:

radial-gradient(circle,
rgba(0,191,255,.18),
transparent 70%);

filter:blur(90px);

z-index:-2;

}

a{

text-decoration:none;

color:inherit;

}

img{

max-width:100%;

display:block;

}

.container{

width:min(92%,1400px);

margin:auto;

}

.loading-screen{

position:fixed;

inset:0;

background:#050b17;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-logo{

font-size:40px;

font-weight:900;

letter-spacing:4px;

color:#fff;

animation:pulse 1.2s infinite;

}

@keyframes pulse{

0%{

opacity:.3;

transform:scale(.9);

}

50%{

opacity:1;

transform:scale(1);

}

100%{

opacity:.3;

transform:scale(.9);

}

}

/*=================================================
                HEADER
==================================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

padding:22px 0;

z-index:999;

backdrop-filter:blur(18px);

background:rgba(8,20,43,.45);

border-bottom:1px solid rgba(255,255,255,.06);

transition:.4s;

}

header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo a{

font-size:30px;

font-weight:900;

letter-spacing:3px;

color:#fff;

transition:.35s;

}

.logo a:hover{

color:var(--secondary);

}

nav ul{

display:flex;

align-items:center;

gap:38px;

list-style:none;

}

nav ul li a{

font-size:16px;

font-weight:600;

color:#fff;

position:relative;

transition:.3s;

}

nav ul li a::after{

content:"";

position:absolute;

right:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.35s;

}

nav ul li a:hover{

color:var(--secondary);

}

nav ul li a:hover::after{

width:100%;

}

.order-btn{

padding:14px 34px;

border-radius:50px;

background:linear-gradient(135deg,#0057ff,#00c8ff);

color:#fff;

font-weight:700;

transition:.35s;

box-shadow:0 15px 40px rgba(0,87,255,.35);

}

.order-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 50px rgba(0,87,255,.55);

}

/*=================================================
                HERO
==================================================*/

.hero{

height:100vh;

display:flex;

align-items:center;

justify-content:center;

position:relative;

overflow:hidden;

background:

linear-gradient(rgba(7,17,32,.65),

rgba(7,17,32,.85)),

url("../images/hero.jpg") center center;

background-size:cover;

}

.hero::before{

content:"";

position:absolute;

width:900px;

height:900px;

border-radius:50%;

background:rgba(0,87,255,.18);

filter:blur(120px);

top:-250px;

right:-250px;

animation:floatGlow 10s infinite linear;

}

.hero::after{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:rgba(0,200,255,.15);

filter:blur(100px);

bottom:-220px;

left:-220px;

animation:floatGlow2 12s infinite linear;

}

.hero-content{

position:relative;

z-index:3;

text-align:center;

}

.hero h1{

font-size:76px;

font-weight:900;

margin-bottom:18px;

line-height:1.3;

}

.hero p{

font-size:22px;

color:var(--gray);

max-width:850px;

margin:auto;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:22px;

flex-wrap:wrap;

}

.btn-primary{

padding:18px 46px;

border-radius:50px;

background:linear-gradient(135deg,#0057ff,#00c8ff);

font-weight:700;

transition:.35s;

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

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

padding:18px 46px;

border-radius:50px;

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

backdrop-filter:blur(18px);

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

transition:.35s;

}

.btn-secondary:hover{

background:#fff;

color:#111;

}

@keyframes floatGlow{

0%{

transform:translateY(0) rotate(0);

}

50%{

transform:translateY(40px) rotate(180deg);

}

100%{

transform:translateY(0) rotate(360deg);

}

}

@keyframes floatGlow2{

0%{

transform:translateX(0);

}

50%{

transform:translateX(-40px);

}

100%{

transform:translateX(0);

}

}

/*=================================================
                SERVICES
==================================================*/

.section{

padding:120px 0;

position:relative;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:48px;

font-weight:900;

margin-bottom:18px;

}

.section-title p{

color:var(--gray);

max-width:700px;

margin:auto;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.service-card{

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

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

backdrop-filter:blur(20px);

border-radius:22px;

padding:35px;

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);

transition:.8s;

}

.service-card:hover::before{

left:100%;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 60px rgba(0,87,255,.25);

border-color:rgba(0,191,255,.3);

}

.service-icon{

width:80px;

height:80px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

background:linear-gradient(135deg,#0057ff,#00c8ff);

margin-bottom:25px;

}

.service-card h3{

font-size:24px;

margin-bottom:15px;

}

.service-card p{

color:var(--gray);

line-height:1.9;

}

/*=================================================
              HERO V2
==================================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(7,17,32,.78),
        rgba(7,17,32,.90)
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:5;
    text-align:center;
    max-width:1000px;
}

.hero-subtitle{

display:inline-block;

padding:12px 26px;

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

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

border-radius:50px;

margin-bottom:30px;

backdrop-filter:blur(20px);

font-weight:700;

letter-spacing:3px;

}

.hero h1{

font-size:82px;

font-weight:900;

line-height:1.25;

margin-bottom:25px;

}

.hero p{

font-size:22px;

color:#d6dce7;

line-height:2;

max-width:850px;

margin:auto;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-bottom:80px;

}

.hero-stats{

display:flex;

justify-content:center;

gap:80px;

flex-wrap:wrap;

}

.hero-stats div{

text-align:center;

}

.hero-stats h2{

font-size:52px;

color:#00c8ff;

margin-bottom:8px;

}

.hero-stats span{

color:#c7d2e5;

font-size:18px;

}

.hero-glow{

position:absolute;

border-radius:50%;

filter:blur(120px);

z-index:1;

}

.hero-glow-1{

width:450px;

height:450px;

background:#0057ff55;

top:-100px;

right:-120px;

animation:glowMove1 12s linear infinite;

}

.hero-glow-2{

width:350px;

height:350px;

background:#00c8ff44;

bottom:-80px;

left:-100px;

animation:glowMove2 10s linear infinite;

}

@keyframes glowMove1{

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

}

@keyframes glowMove2{

0%{transform:translateX(0);}
50%{transform:translateX(-60px);}
100%{transform:translateX(0);}

}

/*=================================================
              MOBILE MENU
==================================================*/

.menu-toggle{

display:none;

width:48px;

height:48px;

background:transparent;

border:none;

cursor:pointer;

position:relative;

z-index:1001;

}

.menu-toggle span{

display:block;

width:28px;

height:3px;

background:#fff;

margin:6px auto;

border-radius:20px;

transition:.35s;

}

.menu-toggle span:nth-child(1){top:15px;}
.menu-toggle span:nth-child(2){top:23px;}
.menu-toggle span:nth-child(3){top:31px;}

.menu-toggle.active span:nth-child(1){
    top:23px;
    transform:translateX(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    top:23px;
    transform:translateX(-50%) rotate(-45deg);
}

header.scrolled{
    padding:14px 0;
    background:rgba(8,20,43,.88);
    box-shadow:0 10px 40px rgba(0,0,0,.25);
}

.back-to-top{
    position:fixed;
    bottom:28px;
    left:28px;
    width:56px;
    height:56px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#0057ff,#00c8ff);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:999;
    box-shadow:0 18px 40px rgba(0,87,255,.35);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    transform:translateY(-4px);
}

@media (max-width: 992px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:rgba(7,17,32,.96);
        backdrop-filter:blur(30px);
        padding:120px 32px 40px;
        transition:.4s;
        z-index:1000;
        border-left:1px solid rgba(255,255,255,.08);
    }

    nav.active{
        right:0;
    }

    nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
    }

    nav ul li a{
        font-size:18px;
    }

    .order-btn{
        display:none;
    }

    body.menu-open{
        overflow:hidden;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-stats{
        gap:32px;
    }

    .hero-stats h2{
        font-size:38px;
    }

    .section-title h2{
        font-size:38px;
    }
}

@media (max-width: 576px){

    .hero{
        padding-top:110px;
    }

    .hero h1{
        font-size:38px;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-stats{
        flex-direction:column;
        gap:22px;
    }

    .section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:32px;
    }
}

/*=================================================
           MOBILE MENU
==================================================*/

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

}

header.scrolled{

padding:12px 0;

background:rgba(7,17,32,.95);

}

@media(max-width:991px){

.menu-toggle{

display:block;

}

.navbar{

position:fixed;

top:0;

right:-100%;

width:300px;

height:100vh;

background:#08142B;

transition:.4s;

padding-top:120px;

}

.navbar.active{

right:0 !important;

}

.navbar ul{

flex-direction:column;

gap:30px;

}

.order-btn{

display:none;

}

}

.menu-toggle.active span:nth-child(1){

transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

opacity:0;

}

.menu-toggle.active span:nth-child(3){

transform:translateY(-9px) rotate(-45deg);

}

/*=================================================
                ABOUT
==================================================*/

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:25px;

box-shadow:0 25px 70px rgba(0,87,255,.25);

transition:.4s;

}

.about-image img:hover{

transform:scale(1.03);

}

.section-tag{

display:inline-block;

padding:10px 20px;

background:rgba(0,200,255,.15);

color:#00c8ff;

border-radius:40px;

margin-bottom:20px;

font-weight:700;

}

.about-content h2{

font-size:48px;

margin-bottom:25px;

line-height:1.5;

}

.about-content p{

color:#c8d3e5;

margin-bottom:20px;

line-height:2;

}

/*=================================================
                STATISTICS
==================================================*/

.stats-section{

padding:120px 0;

background:linear-gradient(180deg,#08142B,#06101F);

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-box{

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

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

padding:45px 20px;

border-radius:22px;

text-align:center;

transition:.35s;

backdrop-filter:blur(20px);

}

.stat-box:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,87,255,.25);

}

.stat-box h2{

font-size:56px;

color:#00c8ff;

margin-bottom:15px;

font-weight:900;

}

.stat-box p{

color:#d6dce7;

font-size:18px;

}

/*======================================
PORTFOLIO
======================================*/

.portfolio-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:60px;

}

.portfolio-item{

position:relative;

overflow:hidden;

border-radius:22px;

cursor:pointer;

}

.portfolio-item img{

width:100%;

display:block;

transition:.6s;

}

.portfolio-overlay{

position:absolute;

inset:0;

background:linear-gradient(to top,rgba(0,0,0,.85),transparent);

display:flex;

flex-direction:column;

justify-content:flex-end;

padding:30px;

opacity:0;

transition:.4s;

}

.portfolio-overlay h3{

color:#fff;

font-size:28px;

margin-bottom:10px;

}

.portfolio-overlay span{

color:#00c8ff;

}

.portfolio-item:hover img{

transform:scale(1.12);

}

.portfolio-item:hover .portfolio-overlay{

opacity:1;

}

/*======================================
WHY US
======================================*/

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.why-card{

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

padding:40px 30px;

border-radius:22px;

text-align:center;

transition:.4s;

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

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,200,255,.2);

}

.why-card i{

font-size:52px;

color:#00c8ff;

margin-bottom:25px;

}

.why-card h3{

font-size:28px;

margin-bottom:15px;

}

.why-card p{

color:#cfd7e5;

line-height:2;

}

/*======================================
CLIENTS
======================================*/

.clients-slider{

overflow:hidden;

position:relative;

margin-top:60px;

}

.clients-track{

display:flex;

width:max-content;

animation:clientsMove 30s linear infinite;

}

.clients-track img{

width:170px;

height:90px;

object-fit:contain;

margin:0 40px;

opacity:.7;

transition:.35s;

filter:grayscale(100%);

}

.clients-track img:hover{

opacity:1;

filter:none;

transform:scale(1.08);

}

.clients-slider:hover .clients-track{

animation-play-state:paused;

}

@keyframes clientsMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/*======================================
ORDER FORM
======================================*/

.order-form{

max-width:950px;

margin:auto;

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.form-group{

display:flex;

flex-direction:column;

}

.form-group label{

margin-bottom:10px;

font-weight:700;

}

.form-group input,
.form-group select,
.form-group textarea{

padding:16px;

background:#101826;

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

color:#fff;

border-radius:14px;

font-size:16px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

outline:none;

border-color:#00c8ff;

box-shadow:0 0 20px rgba(0,200,255,.25);

}

.full-width{

grid-column:1/3;

}