/* ===========================================================
   V90 GLOBAL
   Premium IT Services Website
=========================================================== */

:root{

--primary:#ff7a00;
--primary-dark:#d66300;

--secondary:#1ea7ff;

--bg:#070b14;
--bg2:#0d1324;
--bg3:#11192d;

--glass:rgba(255,255,255,.05);

--glass2:rgba(255,255,255,.08);

--border:rgba(255,255,255,.12);

--white:#ffffff;

--text:#c7d2e5;

--heading:#ffffff;

--shadow:0 20px 60px rgba(0,0,0,.45);

--radius:18px;

--transition:.35s;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:var(--bg);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);

margin:auto;

}

section{

padding:120px 0;

position:relative;

}

h1,h2,h3,h4{

color:var(--heading);

font-weight:800;

line-height:1.15;

}

p{

margin-top:20px;

color:var(--text);

font-size:17px;

}

.section-title{

max-width:700px;

margin:auto auto 70px;

text-align:center;

}

.section-title span{

display:inline-block;

color:var(--primary);

font-weight:700;

letter-spacing:2px;

font-size:13px;

margin-bottom:15px;

text-transform:uppercase;

}

.section-title h2{

font-size:48px;

margin-bottom:20px;

}

.section-title p{

font-size:18px;

}

/* ================================
BACKGROUND
================================ */

.background-grid{

position:fixed;

inset:0;

background-image:

linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

background-size:60px 60px;

z-index:-5;

}

.gradient-one{

position:fixed;

width:700px;

height:700px;

background:#ff7a0020;

filter:blur(120px);

top:-300px;

right:-250px;

z-index:-4;

border-radius:50%;

}

.gradient-two{

position:fixed;

width:650px;

height:650px;

background:#0095ff18;

filter:blur(140px);

bottom:-250px;

left:-250px;

z-index:-4;

border-radius:50%;

}

/* ================================
HEADER
================================ */

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

backdrop-filter:blur(18px);

background:rgba(7,11,20,.72);

border-bottom:1px solid rgba(255,255,255,.05);

}

header .container{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:30px;

font-weight:900;

letter-spacing:.5px;

}

.logo-orange{

color:var(--primary);

}

.logo-white{

color:white;

}

nav ul{

display:flex;

gap:45px;

}

nav a{

color:#dbe5f7;

font-weight:600;

transition:var(--transition);

}

nav a:hover{

color:var(--primary);

}

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 32px;

border-radius:50px;

background:linear-gradient(135deg,#ff7a00,#ff9500);

color:white;

font-weight:700;

transition:.35s;

box-shadow:0 10px 35px rgba(255,122,0,.35);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 18px 40px rgba(255,122,0,.45);

}

.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 32px;

border-radius:50px;

border:1px solid rgba(255,255,255,.15);

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

transition:.35s;

font-weight:700;

}

.btn-secondary:hover{

background:rgba(255,255,255,.12);

transform:translateY(-4px);

}

/* Mobile menu */

.menu-button{

display:none;

width:36px;

cursor:pointer;

}

.menu-button span{

display:block;

height:3px;

margin:7px 0;

background:white;

border-radius:4px;

transition:.3s;

}

/* ===========================================================
   HERO SECTION
=========================================================== */

.hero{

padding-top:180px;
padding-bottom:140px;

}

.hero-grid{

display:grid;
grid-template-columns:1.1fr .9fr;
gap:80px;
align-items:center;

}

.badge{

display:inline-flex;
align-items:center;
gap:10px;

padding:10px 18px;

background:rgba(255,122,0,.10);

border:1px solid rgba(255,122,0,.25);

border-radius:100px;

color:#ffb66b;

font-size:13px;

font-weight:700;

letter-spacing:1px;

margin-bottom:30px;

backdrop-filter:blur(20px);

}

.hero h1{

font-size:72px;

line-height:1.05;

margin-bottom:30px;

}

.hero h1 span{

color:var(--primary);

}

.hero p{

font-size:20px;

max-width:620px;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

flex-wrap:wrap;

}

/* ========================================= */

.hero-stats{

display:flex;

gap:60px;

}

.hero-stats h2{

font-size:42px;

color:var(--primary);

margin-bottom:8px;

}

.hero-stats span{

font-size:14px;

letter-spacing:1px;

text-transform:uppercase;

opacity:.8;

}

/* ===========================================================
   HERO GLASS PANEL
=========================================================== */

.glass-card{

background:var(--glass);

border:1px solid var(--border);

border-radius:30px;

padding:35px;

backdrop-filter:blur(30px);

box-shadow:var(--shadow);

position:relative;

overflow:hidden;

}

.glass-card::before{

content:"";

position:absolute;

width:420px;

height:420px;

background:radial-gradient(circle,
rgba(255,122,0,.25),
transparent 70%);

top:-180px;

right:-180px;

pointer-events:none;

}

.glass-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.status{

display:flex;

align-items:center;

gap:10px;

font-weight:700;

}

.online-dot{

width:10px;

height:10px;

border-radius:50%;

background:#00ff7a;

box-shadow:0 0 15px #00ff7a;

animation:pulse 2s infinite;

}

/* ========================================= */

.dashboard{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.dashboard-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:28px;

border-radius:20px;

transition:.35s;

}

.dashboard-card:hover{

transform:translateY(-8px);

border-color:rgba(255,122,0,.45);

}

.dashboard-card h4{

font-size:15px;

margin-bottom:15px;

font-weight:600;

}

.dashboard-card h2{

font-size:30px;

color:var(--primary);

margin-bottom:10px;

}

.dashboard-card p{

margin:0;

font-size:14px;

}

/* ===========================================================
   ABOUT
=========================================================== */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-card{

position:relative;

height:520px;

border-radius:30px;

background:linear-gradient(135deg,
#10182d,
#0a0f1c);

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

display:flex;

justify-content:center;

align-items:center;

box-shadow:var(--shadow);

}

.circle{

position:absolute;

border-radius:50%;

filter:blur(50px);

}

.circle.one{

width:250px;

height:250px;

background:#ff7a0030;

top:-80px;

right:-80px;

}

.circle.two{

width:220px;

height:220px;

background:#00a6ff20;

bottom:-60px;

left:-60px;

}

.server-stack{

width:300px;

display:flex;

flex-direction:column;

gap:18px;

}

.server{

height:65px;

border-radius:14px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.12);

box-shadow:0 8px 25px rgba(0,0,0,.25);

}

.about-content .feature{

display:flex;

gap:25px;

margin-bottom:40px;

align-items:flex-start;

}

.icon{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

border-radius:18px;

background:rgba(255,122,0,.10);

border:1px solid rgba(255,122,0,.20);

flex-shrink:0;

}

.feature h3{

margin-bottom:10px;

font-size:24px;

}

/* ===========================================================
   SERVICES
=========================================================== */

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.service-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:45px;

border-radius:24px;

transition:.35s;

position:relative;

overflow:hidden;

backdrop-filter:blur(18px);

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:linear-gradient(90deg,
var(--primary),
#ffb347);

transform:scaleX(0);

transition:.35s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-12px);

border-color:rgba(255,122,0,.35);

box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.service-icon{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

background:rgba(255,122,0,.10);

border-radius:20px;

margin-bottom:25px;

}

.service-card h3{

margin-bottom:18px;

font-size:26px;

}

.service-card p{

margin-bottom:25px;

}

.service-card a{

color:var(--primary);

font-weight:700;

}

.service-card a:hover{

letter-spacing:1px;

}


/* ===========================================================
   WHY CHOOSE US
=========================================================== */

.why-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;

}

.why-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:40px;

border-radius:24px;

transition:.35s;

backdrop-filter:blur(20px);

position:relative;

overflow:hidden;

}

.why-card:hover{

transform:translateY(-10px);

border-color:rgba(255,122,0,.35);

box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.number{

font-size:60px;

font-weight:900;

color:rgba(255,122,0,.18);

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:26px;

}

/* ===========================================================
   STATS
=========================================================== */

.stats{

padding:90px 0;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-card{

text-align:center;

padding:45px;

background:rgba(255,255,255,.05);

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:60px;

color:var(--primary);

margin-bottom:10px;

}

.stat-card p{

margin:0;

font-weight:600;

}

/* ===========================================================
   TIMELINE
=========================================================== */

.timeline{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.timeline-item{

text-align:center;

padding:35px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

transition:.35s;

position:relative;

}

.timeline-item:hover{

transform:translateY(-8px);

}

.timeline-number{

width:70px;

height:70px;

margin:auto auto 25px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#ff7a00,#ff9900);

font-size:26px;

font-weight:800;

color:#fff;

}

.timeline-item h3{

margin-bottom:18px;

}

/* ===========================================================
   PARTNERS
=========================================================== */

.partners-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:50px;

}

.partner-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:35px;

text-align:center;

font-size:20px;

font-weight:700;

transition:.35s;

}

.partner-card:hover{

background:rgba(255,122,0,.08);

border-color:rgba(255,122,0,.30);

transform:translateY(-6px);

}

/* ===========================================================
   TESTIMONIALS
=========================================================== */

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

padding:40px;

border-radius:24px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-8px);

}

.stars{

font-size:22px;

color:#FFD54A;

margin-bottom:25px;

}

.client{

display:flex;

align-items:center;

gap:18px;

margin-top:30px;

}

.avatar{

width:60px;

height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-weight:800;

background:linear-gradient(135deg,#ff7a00,#ff9900);

color:white;

}

.client span{

display:block;

font-size:14px;

opacity:.8;

}

/* ===========================================================
   FAQ
=========================================================== */

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

margin-bottom:20px;

border-radius:18px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

background:rgba(255,255,255,.05);

}

.faq-question{

width:100%;

background:none;

border:none;

padding:28px;

color:white;

font-size:18px;

font-weight:700;

display:flex;

justify-content:space-between;

cursor:pointer;

}

.faq-answer{

display:none;

padding:0 28px 28px;

}

/* ===========================================================
   CTA
=========================================================== */

.cta-box{

padding:90px;

text-align:center;

border-radius:35px;

background:linear-gradient(135deg,#ff7a00,#ff9900);

color:white;

}

.cta-box h2{

font-size:52px;

margin-bottom:25px;

}

.cta-box p{

color:white;

max-width:700px;

margin:auto auto 40px;

}

.cta-box .btn-primary{

background:white;

color:#ff7a00;

}

/* ===========================================================
   CONTACT
=========================================================== */

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:start;

}

.contact-card{

padding:22px;

margin-top:20px;

background:rgba(255,255,255,.05);

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

}

.contact-form{

background:rgba(255,255,255,.05);

padding:45px;

border-radius:24px;

border:1px solid rgba(255,255,255,.08);

}

.contact-form input,

.contact-form textarea{

width:100%;

margin-bottom:20px;

padding:18px;

background:#11192d;

border:1px solid rgba(255,255,255,.08);

border-radius:14px;

color:white;

font-family:inherit;

font-size:16px;

}

.contact-form textarea{

resize:vertical;

}

/* ===========================================================
   FOOTER
=========================================================== */

footer{

padding:90px 0 40px;

background:#05070d;

margin-top:100px;

border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

margin-bottom:60px;

}

.footer-grid h3{

font-size:30px;

margin-bottom:20px;

}

.footer-grid h4{

margin-bottom:20px;

}

.footer-grid li{

margin-bottom:12px;

opacity:.85;

cursor:pointer;

transition:.3s;

}

.footer-grid li:hover{

color:var(--primary);

padding-left:8px;

}

.copyright{

text-align:center;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

opacity:.7;

}


