
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050816;
color:white;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 70px;
height:140px;
background:rgba(0,0,0,0.62);
backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,0.05);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
justify-content:flex-start;
min-width:420px;
}

.logo img{
height:180px;
width:auto;
display:block;
object-fit:contain;
transform:scale(1.35);
filter:
drop-shadow(0 0 16px rgba(124,58,237,0.55))
drop-shadow(0 0 28px rgba(0,212,255,0.45));
transition:0.35s ease;
}

.logo img:hover{
transform:scale(1.42);
}

nav{
display:flex;
gap:28px;
}

nav a{
text-decoration:none;
color:white;
font-weight:600;
}

nav a:hover{
color:#00d4ff;
}

.hero{
height:100vh;
position:relative;
background:url('https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=2070');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.overlay{
position:absolute;
inset:0;
background:rgba(5,8,22,0.75);
}

.hero-content{
position:relative;
max-width:1000px;
}

.tag{
color:#00d4ff;
font-weight:800;
letter-spacing:3px;
margin-bottom:20px;
}

.center{
text-align:center;
}

.hero h1{
font-size:88px;
line-height:1;
margin-bottom:25px;
}

.hero p{
font-size:22px;
line-height:1.7;
opacity:0.9;
}

.buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
padding:18px 34px;
border-radius:999px;
font-weight:700;
text-decoration:none;
transition:0.3s;
}

.primary{
background:linear-gradient(to right,#8b5cf6,#00d4ff);
color:white;
}

.secondary{
border:1px solid rgba(255,255,255,0.2);
color:white;
}

.btn:hover{
transform:translateY(-5px);
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
background:#0b1120;
}

.stats div{
padding:45px;
text-align:center;
border-right:1px solid rgba(255,255,255,0.08);
}

.stats h2{
font-size:52px;
color:#00d4ff;
margin-bottom:10px;
}

.section{
padding:120px 70px;
}

.section h2{
font-size:64px;
margin-bottom:60px;
text-align:center;
}

.grid,.case-grid,.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.card,.case,.member{
background:#111827;
border-radius:28px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.08);
transition:0.3s;
}

.card:hover,.case:hover,.member:hover{
transform:translateY(-8px);
}

.card{
padding:40px;
}

.card h3{
font-size:30px;
margin-bottom:20px;
}

.case img,.member img{
width:100%;
height:280px;
object-fit:cover;
}

.case h3,.member h3{
padding:25px 25px 10px;
font-size:28px;
}

.case p,.member p{
padding:0 25px 25px;
}

.dark{
background:#0b1120;
}

.jobs{
display:flex;
flex-direction:column;
gap:24px;
max-width:1100px;
margin:auto;
}

.job{
display:flex;
justify-content:space-between;
align-items:center;
padding:35px 40px;
background:#111827;
border-radius:28px;
border:1px solid rgba(255,255,255,0.08);
}

.job h3{
font-size:32px;
}

.job a{
text-decoration:none;
color:#00d4ff;
font-weight:800;
font-size:20px;
}

.contact{
background:linear-gradient(to right,#111827,#1e1b4b);
}

.contact-box{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

input,textarea{
padding:18px;
border:none;
border-radius:18px;
background:rgba(255,255,255,0.08);
color:white;
font-size:16px;
}

textarea{
height:150px;
resize:none;
}

button{
padding:18px;
border:none;
border-radius:999px;
background:linear-gradient(to right,#8b5cf6,#00d4ff);
color:white;
font-size:18px;
font-weight:700;
cursor:pointer;
}

.info{
text-align:center;
}

footer{
padding:40px;
text-align:center;
background:#020617;
}

@media(max-width:900px){

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

header{
padding:20px;
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.logo img{
height:95px;
transform:none;
}

.stats,.grid,.case-grid,.team-grid{
grid-template-columns:1fr;
}

.section{
padding:90px 24px;
}

.section h2{
font-size:42px;
}

.job{
flex-direction:column;
align-items:flex-start;
gap:15px;
}
}


.hero{
padding-top:120px;
}

@media(max-width:900px){

header{
height:auto;
padding:18px 20px;
}

.logo{
min-width:auto;
}

.logo img{
height:90px;
transform:none;
}

.hero{
padding-top:160px;
}
}


nav{
display:flex;
align-items:center;
gap:42px;
padding-right:20px;
}

nav a{
font-size:26px;
font-weight:800;
letter-spacing:0.3px;
position:relative;
transition:0.3s ease;
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:0%;
height:3px;
background:linear-gradient(to right,#8b5cf6,#00d4ff);
transition:0.3s ease;
border-radius:10px;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
transform:translateY(-2px);
text-shadow:0 0 12px rgba(0,212,255,0.45);
}

header{
padding-left:55px;
padding-right:55px;
}

@media(max-width:1200px){

nav{
gap:24px;
}

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

@media(max-width:900px){

nav{
justify-content:center;
gap:16px;
padding-right:0;
}

nav a{
font-size:16px;
}
}

.site-footer{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:35px;
padding:70px;
background:#020617;
border-top:1px solid rgba(255,255,255,0.08);
text-align:left;
}

.site-footer h3{
font-size:28px;
margin-bottom:14px;
background:linear-gradient(to right,#8b5cf6,#00d4ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.site-footer h4{
font-size:18px;
margin-bottom:16px;
color:#ffffff;
}

.site-footer a{
display:block;
color:#b8c0d8;
text-decoration:none;
margin-bottom:10px;
}

.site-footer a:hover{
color:#00d4ff;
}

@media(max-width:900px){
.site-footer{
grid-template-columns:1fr;
padding:45px 24px;
}
}


/* Novaryn Media new premium logo adjustments */
.logo{
display:flex;
align-items:center;
justify-content:flex-start;
min-width:360px;
overflow:visible;
}

.logo img{
height:118px;
width:auto;
object-fit:contain;
border-radius:18px;
filter:
drop-shadow(0 0 18px rgba(0,212,255,0.35))
drop-shadow(0 0 28px rgba(124,58,237,0.25));
}

header{
height:128px;
background:linear-gradient(90deg, rgba(3,6,17,0.96), rgba(14,15,28,0.94));
border-bottom:1px solid rgba(0,212,255,0.16);
}

nav a{
font-size:22px;
font-weight:800;
}

.hero{
padding-top:128px;
}

@media(max-width:900px){
.logo{
min-width:auto;
}
.logo img{
height:82px;
}
header{
height:auto;
}
nav a{
font-size:16px;
}
.hero{
padding-top:160px;
}
}


/* Bigger Novaryn logo */
.logo{
min-width:520px !important;
padding-left:10px;
}

.logo img{
height:165px !important;
width:auto;
object-fit:contain;
transform:scale(1.18);
filter:
drop-shadow(0 0 22px rgba(0,212,255,0.42))
drop-shadow(0 0 36px rgba(124,58,237,0.34));
}

header{
height:155px !important;
padding-top:12px;
padding-bottom:12px;
}

.hero{
padding-top:155px !important;
}

@media(max-width:900px){

.logo{
min-width:auto !important;
}

.logo img{
height:105px !important;
transform:none;
}

header{
height:auto !important;
}

.hero{
padding-top:175px !important;
}
}
