/* ===========================
   UR SETUP Premium Style
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cairo',sans-serif;
scroll-behavior:smooth;
}

:root{

--bg:#050505;
--card:#101010;
--text:#ffffff;
--gray:#b7b7b7;
--border:#222;
--accent:#ffffff;

}

body{

background:var(--bg);
color:var(--text);
overflow-x:hidden;

}

body::-webkit-scrollbar{

width:8px;

}

body::-webkit-scrollbar-thumb{

background:#fff;
border-radius:30px;

}

a{

text-decoration:none;

}

img{

max-width:100%;
display:block;

}

/* ================= Header ================= */

header{

position:fixed;

top:0;
right:0;
left:0;

height:85px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 8%;

background:rgba(0,0,0,.65);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;

}

.logo{

font-size:34px;

font-weight:800;

letter-spacing:3px;

}

.logo span{

font-weight:300;

}

nav{

display:flex;

gap:35px;

}

nav a{

color:white;

font-size:17px;

transition:.3s;

}

nav a:hover{

opacity:.65;

}

.shop-btn{

padding:14px 30px;

border:1px solid white;

border-radius:40px;

color:white;

transition:.35s;

}

.shop-btn:hover{

background:white;

color:black;

}

/* ================= Hero ================= */

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

padding:120px 8%;

gap:60px;

background:

radial-gradient(circle at top,#1b1b1b 0%,#050505 70%);

}

.hero h5{

font-size:18px;

letter-spacing:3px;

color:#aaa;

margin-bottom:15px;

}

.hero h1{

font-size:72px;

line-height:1.2;

margin-bottom:25px;

}

.hero p{

font-size:20px;

color:var(--gray);

line-height:2;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.primary-btn{

background:white;

color:black;

padding:18px 42px;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.primary-btn:hover{

transform:translateY(-5px);

}

.secondary-btn{

border:1px solid white;

padding:18px 42px;

border-radius:50px;

color:white;

transition:.3s;

}

.secondary-btn:hover{

background:white;

color:black;

}

.hero-image{

display:flex;

justify-content:center;

}

.hero-image img{

width:90%;

animation:float 5s ease-in-out infinite;

filter:drop-shadow(0 30px 60px rgba(255,255,255,.08));

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}

}

/* ================= Features ================= */

.features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

padding:80px 8%;

}

.feature{

background:var(--card);

padding:35px;

border-radius:22px;

text-align:center;

border:1px solid var(--border);

transition:.35s;

}

.feature:hover{

transform:translateY(-8px);

border-color:white;

}

.feature i{

font-size:42px;

margin-bottom:20px;

}

.feature h3{

font-size:24px;

margin-bottom:12px;

}

.feature p{

color:#aaa;

line-height:1.8;

}

/* ===========================
   PRODUCTS
=========================== */

.products{

padding:120px 8%;

}

.section-title{

font-size:52px;
text-align:center;
margin-bottom:60px;
font-weight:800;

}

.products-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.product-card{

background:#101010;
border:1px solid #222;
border-radius:25px;
overflow:hidden;
transition:.4s;

}

.product-card:hover{

transform:translateY(-10px);
border-color:#fff;
box-shadow:0 25px 50px rgba(255,255,255,.08);

}

.product-card img{

width:100%;
height:320px;
object-fit:cover;
transition:.5s;

}

.product-card:hover img{

transform:scale(1.06);

}

.product-content{

padding:30px;

}

.product-content h3{

font-size:28px;
margin-bottom:15px;

}

.product-content p{

color:#b5b5b5;
line-height:1.9;
margin-bottom:25px;

}

.product-content a{

display:inline-block;
padding:14px 35px;
border:1px solid white;
border-radius:40px;
color:white;
transition:.3s;

}

.product-content a:hover{

background:white;
color:black;

}

/* ===========================
ABOUT
=========================== */

.about{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
padding:120px 8%;

}

.about span{

letter-spacing:3px;
color:#888;
font-size:15px;

}

.about h2{

font-size:52px;
margin:20px 0;

}

.about p{

font-size:19px;
line-height:2;
color:#bbb;

}

.about-image img{

border-radius:25px;

}

/* ===========================
MISSION
=========================== */

.mission{

padding:120px 12%;
text-align:center;

}

.mission h2{

font-size:50px;
margin-bottom:25px;

}

.mission p{

font-size:20px;
line-height:2;
color:#bdbdbd;
max-width:900px;
margin:auto;

}

/* ===========================
SOCIAL
=========================== */

.social-section{

padding:120px 8%;
text-align:center;

}

.social-section h2{

font-size:50px;
margin-bottom:20px;

}

.social-section p{

color:#aaa;
margin-bottom:40px;

}

.social-buttons{

display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;

}

.social-buttons a{

padding:16px 38px;
border:1px solid white;
border-radius:50px;
color:white;
transition:.35s;

}

.social-buttons a:hover{

background:white;
color:black;

}

/* ===========================
FOOTER
=========================== */

footer{

padding:45px;
text-align:center;
border-top:1px solid #1e1e1e;

}

.footer-logo{

font-size:34px;
font-weight:800;
margin-bottom:15px;

}

footer p{

color:#888;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;
text-align:center;

}

.hero-buttons{

justify-content:center;

}

.features{

grid-template-columns:repeat(2,1fr);

}

.about{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

nav{

display:none;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.section-title,
.about h2,
.mission h2,
.social-section h2{

font-size:36px;

}

.features{

grid-template-columns:1fr;

}

.products-grid{

grid-template-columns:1fr;

}

.social-buttons{

flex-direction:column;

}

}

.feature,
.product-card,
.about,
.mission,
.social-section{

opacity:0;
transform:translateY(60px);
transition:1s;

}

.show{

opacity:1;
transform:translateY(0);

}

#topButton:hover{

transform:scale(1.1);

}

.logo img{

height:65px;
width:auto;
display:block;

}

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

padding:120px 8%;

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.85)),
url("PNRURSETUP.png");

background-size:cover;
background-position:center;

}