/* =========================
   SAFE EYE SOLUTIONS
   PREMIUM V4
========================= */

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

:root{

--primary:#1d4ed8;
--secondary:#38bdf8;
--dark:#050b16;
--dark2:#0b1322;
--glass:rgba(255,255,255,.06);
--border:rgba(255,255,255,.08);
--white:#ffffff;
--text:#cfd8e3;

}

body{

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

background:linear-gradient(180deg,#050b16,#091523,#050b16);

color:white;

overflow-x:hidden;

}

body::before{

content:"";

position:fixed;

width:700px;

height:700px;

background:#2563eb33;

border-radius:50%;

filter:blur(180px);

top:-300px;

right:-250px;

z-index:-1;

}

body::after{

content:"";

position:fixed;

width:650px;

height:650px;

background:#38bdf822;

border-radius:50%;

filter:blur(180px);

bottom:-250px;

left:-250px;

z-index:-1;

}

.container{

width:90%;

max-width:1250px;

margin:auto;

}

a{

text-decoration:none;

color:white;

}

img{

width:100%;

display:block;

}

section{

padding:110px 0;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-family:'Space Grotesk',sans-serif;

font-size:48px;

margin-bottom:18px;

}

.section-title p{

color:var(--text);

font-size:18px;

line-height:1.8;

}

header{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(5,10,20,.65);

backdrop-filter:blur(16px);

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

z-index:9999;

transition:.4s;

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{

font-family:'Space Grotesk',sans-serif;

font-size:32px;

font-weight:700;

letter-spacing:2px;

}
.logo-image{
    height:110px;
    width:auto;
    display:block;
}

.logo span{

color:var(--secondary);

}

nav{

display:flex;

gap:35px;

}

nav a{

font-weight:600;

opacity:.9;

transition:.3s;

}

nav a:hover{

color:var(--secondary);

}

#menu-btn{

display:none;

font-size:28px;

cursor:pointer;

}

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

    background:
    linear-gradient(
        rgba(5,10,20,.78),
        rgba(5,10,20,.90)
    ),
    url("images/IMG_9953.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

padding:120px 20px;

}

.hero-tag{

display:inline-block;

padding:12px 24px;

border-radius:40px;

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

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

margin-bottom:28px;

letter-spacing:2px;

font-size:14px;

}

.hero h1{

font-family:'Space Grotesk',sans-serif;

font-size:78px;

line-height:1.05;

margin-bottom:30px;

}

.hero h1 span{

color:var(--secondary);

}

.hero p{

font-size:22px;

line-height:1.8;

color:var(--text);

max-width:760px;
  

margin:auto;

}
/* ===========================
BUTTONS
=========================== */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:45px;

flex-wrap:wrap;

}

.btn{

padding:18px 38px;

border-radius:60px;

font-weight:700;

transition:.35s;

display:inline-block;

}

.primary{

background:linear-gradient(135deg,#2563eb,#38bdf8);

box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.primary:hover{

transform:translateY(-6px);

box-shadow:0 25px 45px rgba(37,99,235,.45);

}

.secondary{

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

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

backdrop-filter:blur(16px);

}

.secondary:hover{

transform:translateY(-6px);

border-color:#38bdf8;

}

/* ===========================
STATS
=========================== */

.hero-stats{

display:flex;

justify-content:center;

gap:70px;

margin-top:70px;

flex-wrap:wrap;

}

.hero-stats h2{

font-family:'Space Grotesk';

font-size:52px;

color:#38bdf8;

}

.hero-stats p{

font-size:15px;

color:#cfd8e3;

}

/* ===========================
FEATURES
=========================== */

.features{

display:grid;

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

gap:28px;

}

.feature-card{

background:var(--glass);

border:1px solid var(--border);

border-radius:24px;

padding:40px 30px;

text-align:center;

backdrop-filter:blur(18px);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-12px);

border-color:#38bdf8;

box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.feature-card i{

font-size:48px;

margin-bottom:25px;

color:#38bdf8;

}

.feature-card h3{

font-family:'Space Grotesk';

margin-bottom:15px;

font-size:24px;

}

.feature-card p{

line-height:1.8;

color:#cfd8e3;

}

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

.services-grid{

display:grid;

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

gap:30px;

}

.service-card{

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

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

padding:35px;

border-radius:24px;

transition:.35s;

backdrop-filter:blur(16px);

}

.service-card:hover{

transform:translateY(-12px);

border-color:#38bdf8;

}

.service-card i{

font-size:42px;

margin-bottom:20px;

color:#38bdf8;

}

.service-card h3{

font-family:'Space Grotesk';

margin-bottom:15px;

font-size:24px;

}

.service-card p{

line-height:1.8;

color:#cfd8e3;

}

/* ===========================
BRANDS
=========================== */

.brand-grid{

display:grid;

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

gap:25px;

}

.brand-card{

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

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

padding:45px;

border-radius:22px;

text-align:center;

font-size:30px;

font-family:'Space Grotesk';

transition:.35s;

}

.brand-card:hover{

background:#2563eb;

transform:translateY(-10px);

}

/* ===========================
GALLERY
=========================== */

.gallery-grid{

display:grid;

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

gap:22px;

}

.gallery-item{

overflow:hidden;

border-radius:22px;

}

.gallery-item img{

height:260px;

object-fit:cover;

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.12);

}

/* ===========================
COUNTERS
=========================== */

.counter-grid{

display:grid;

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

gap:30px;

}

.counter-box{

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

padding:45px;

text-align:center;

border-radius:22px;

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

}

.counter-box h2{

font-size:56px;

font-family:'Space Grotesk';

color:#38bdf8;

margin-bottom:15px;

}
/* ===========================
TESTIMONIALS
=========================== */

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:22px;
backdrop-filter:blur(16px);
transition:.35s;
}

.testimonial-card:hover{
transform:translateY(-10px);
border-color:#38bdf8;
}

.testimonial-card h4{
margin-top:18px;
color:#38bdf8;
font-family:'Space Grotesk';
}

/* ===========================
FAQ
=========================== */

.faq{
display:flex;
flex-direction:column;
gap:22px;
}

.faq-item{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:28px;
border-radius:18px;
}

.faq-item h3{
margin-bottom:12px;
font-family:'Space Grotesk';
}

.faq-item p{
color:#cfd8e3;
line-height:1.8;
}

/* ===========================
CONTACT
=========================== */

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-bottom:40px;
}

.contact-card{
background:rgba(255,255,255,.05);
padding:35px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
text-align:center;
}

.contact-card h3{
margin-bottom:15px;
font-family:'Space Grotesk';
color:#38bdf8;
}

.contact-card p{
line-height:1.8;
}

.map-box{
margin-top:40px;
overflow:hidden;
border-radius:22px;
}

.map-box iframe{
width:100%;
height:420px;
border:none;
}

/* ===========================
FOOTER
=========================== */

footer{
padding:70px 20px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
background:#040812;
}

footer h2{
font-family:'Space Grotesk';
margin-bottom:18px;
font-size:34px;
}

footer p{
color:#aeb8c8;
margin:10px 0;
}

/* ===========================
FLOATING BUTTONS
=========================== */

.floating-whatsapp,
.floating-call{
position:fixed;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
z-index:999;
box-shadow:0 15px 35px rgba(0,0,0,.35);
transition:.3s;
}

.floating-whatsapp{
background:#25D366;
right:20px;
bottom:20px;
}

.floating-call{
background:#2563eb;
left:20px;
bottom:20px;
}

.floating-whatsapp:hover,
.floating-call:hover{
transform:scale(1.1);
}
.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
margin-top:50px;
margin-bottom:40px;
}

.review-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:38px;
    margin-bottom:45px;
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.08);
    transition:.45s ease;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#38bdf8;
    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        0 0 35px rgba(56,189,248,.18);
}

.stars{
    font-size:28px;
    color:#FFD700;
    letter-spacing:4px;
    margin-bottom:22px;
}

.review-card p{
    font-size:18px;
    line-height:1.9;
    color:#d7dbe4;
    margin:25px 0;
}

.review-card h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-top:25px;
}
.reviews-button{
text-align:center;
margin-top:50px;
}
.location-note{

margin-top:35px;

padding:22px;

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

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

border-radius:18px;

}

.location-note h4{

margin-bottom:12px;

font-size:20px;

font-family:'Space Grotesk',sans-serif;

}

.location-note p{

line-height:1.8;

color:#d7d7d7;

}

.contact-card{

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

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

padding:40px;

border-radius:28px;

backdrop-filter:blur(20px);

}

.contact-card h3{

margin-bottom:25px;

font-size:30px;

font-family:'Space Grotesk',sans-serif;

}

.feature-item{

padding:18px;

margin-bottom:15px;

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

border-radius:14px;

transition:.35s;

}

.feature-item:hover{

background:#0b5ed7;

transform:translateX(10px);

}
/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

nav{
display:none;
}

#menu-btn{
display:block;
}

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

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

.hero-stats{
gap:35px;
}

.brand-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.hero{
padding:120px 20px;
}

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

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

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn{
width:100%;
max-width:320px;
text-align:center;
}

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

section{
padding:80px 0;
}

.counter-box h2{
font-size:42px;
}

}

/* ===========================
SCROLL ANIMATION
=========================== */

.reveal{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
