*{
    box-sizing: border-box;
}
body{
font-family:'Poppins',sans-serif;
margin:0;
background:#0f172a;
color:white;
padding-top: 80px;
}



header{
display:flex;
justify-content:space-between;
align-items:center;
padding: 10px  20px;
background: rgba(2,6,26,0.6);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.1);
transition: 0.4s;
position: fixed;
top: 0;
left: 0;
height: 70px;
width: 100%;
z-index: 1000;
}

header.scrolled{
background: rgba(2,6,26,0.6);
box-shadow:0 5px 20px rgba(0,0,0,0.6);
}

.logo{
display: flex;
align-items: center;
font-size:22px;
font-weight:600;
color: #22c55e;
margin-top: 12px;
}
.logo img{
    height: 200px;
    width: auto;
}
.logo span{
    color: #3cffb3;
    font-size: 22px;
    font-weight: bold;
}

nav{
display:flex;
justify-content:flex-end;
align-items:center;
gap:15px;
/*flex-wrap:wrap;*/
}

nav a{
color:white;
text-decoration:none;
margin: 0 18px;
font-size: 17px;
font-weight: 500;
position: relative;
padding: 5px 0;
transition: 0.3s;
letter-spacing: 0.5px;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#22c55e;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
    color: #22c55e;
}

/*.hero{
    margin-top: 80px;
height:80vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(45deg,#020617,#0f172a);
}

.hero h1{
font-size:45px;
}*/

.btn{
background:#38bdf8;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
color:black;
}

.section{
padding:60px 20px;
text-align:center;
}

.cards{
display:flex;
justify-content:center;

gap:30px;
flex-wrap:wrap;
}

.card{
text-align: left;  
background:#1e293b;
padding:30px;
width:250px;
border-radius:10px;
transition: 0.4s;
cursor:pointer;
}
.card h2{
   font-size: 20px; 
}
.card h3{
    text-align: left;
    color: white;
    font-size: 15px;
    font-weight: 700px;
    text-transform: uppercase;
}

   
.card:hover{
    transform: translateY(-10px);
    background: #38bdf8;
    color: black;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);

}

footer{
background:#020617;
text-align:center;
padding:20px;
}

.whatsapp-container{
position: fixed;
bottom: 40px;
right: 25px;
z-index: 1000;
}

.whatsapp-btn{
display:flex;
align-items:center;
background:#25D366;
padding:8px 12px;
border-radius:50px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:0.3s;
}

.whatsapp-btn img{
width:28px;
height:28px;
}

.whatsapp-text{
color:white;
font-size:14px;
margin-left:8px;
opacity:0;
max-width:0;
overflow:hidden;
transition:0.3s;
white-space:nowrap;
}

.whatsapp-btn:hover .whatsapp-text{
opacity:1;
max-width:200px;
}

/*label design*/
form label{
display:block;
margin-top:15px;
margin-bottom:5px;
font-weight:bold;
color:#38bdf8;
}

form input, form textarea{
width:100%;
padding:12px;
border:none;
border-radius:6px;
font-size:14px;
}
form input:focus,form textarea:focus{
    outline: none;
    box-shadow: 0 0 5px #38bdf8;
}

.contact-container{

width:400px;
margin:120px auto;
background:#1e293b;
padding:30px;
border-radius:10px;
box-shadow:0 0 20px rgba(0,0,0,0.5);

}

.contact-container h2{
text-align:center;
margin-bottom:20px;
}

.contact-container label{

display:block;
margin-top:10px;
font-size:14px;
color:#38bdf8;

}

.contact-container input,
.contact-container textarea{

width:100%;
padding:10px;
margin-top:5px;
border-radius:5px;
border:none;

}

.contact-container textarea{
height:100px;
}
.contact-container input:focus,
.contact-container textarea:focus{
    outline:none;
    box-shadow:0 0 8px #38bdf8;
    border:1px solid #38bdf8;
}
.contact-container{
    transition: 0.3s;
}
.contact-container:hover{
    transform: translateY(-5px);
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
}

.btn{

width:100%;
padding:12px;
margin-top:20px;
background:#38bdf8;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;

}

.btn:hover{

background:#0ea5e9;

}
.hero{
margin-top: 10px;
position:relative;
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
padding: 60px 20px;

}
.hero h1{
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-content{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
position: relative;
z-index: 1;
}

.hero-btn{
    transition: 0.3s;
/*display:inline-block;
margin-top:15px;*/
color:white;
padding:14px 30px;
background:#22c55e;
text-decoration:none;
border-radius:6px;
font-weight: 600;
font-size: 16px;
}
.hero-btn:hover{
    background: #16a34a;
    transform: scale(1.05);
}
.hero::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.2);
}
.reviews{
padding:60px 20px;
text-align:center;
background:#0f172a;
color:white;
}

.reviews h2{
margin-bottom:30px;
font-size:32px;
}

.review-slider{
max-width:700px;
margin:auto;
/*overflow:hidden;*/
}

.review{
display:none;
background:#1e293b;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

.review p{
font-size:16px;
margin-bottom:10px;
}

.review h4{
color:#25D366;
}

.counter-section{
display:flex;
justify-content:center;
gap:40px;
padding:60px 20px;
background:#0f172a;
color:white;
text-align:center;
flex-wrap:wrap;
}

.counter-box{
background:#1e293b;
padding:30px;
border-radius:10px;
width:180px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.counter-box h2{
font-size:36px;
color:#25D366;
margin-bottom:10px;
}

.counter-box p{
font-size:16px;
}

.floating-buttons{
position:fixed;
right: 35px;
bottom:100px;
display:flex;
flex-direction:column;
gap:10px;
z-index:1000;
}

.call-btn{
background:#2563eb;
color:white;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:0.3s;
}

.call-btn:hover{
transform:scale(1.1);
}

.footer{
background: :linear-gradient(180deg, #0f172a,#020617);
color:white;
padding: 20px 20px 5px;
border-top:1px solidrgba(56,189,248,0.4);
}
.footer h3{
    color: #22c55e;
    margin-bottom: 15px;
}
.footer a{
    color: #cbd5f5;
    text-decoration: none;

}
.footer a:hover{
    color: 25d366;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;
max-width:1100px;
margin:auto;
}

.footer-box{
flex:1;
min-width:220px;
}

.footer-box h3{
margin-bottom:15px;
color:#25D366;
}

.footer-box a{
display:block;
color:white;
text-decoration:none;
margin-bottom:8px;
transition:0.3s;
}

.footer-box a:hover{
color:#25D366;
}

/*.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.1);
margin-top:30px;
padding-top:15px;
font-size:14px;
}*/
.footer-links{
text-align:center;
margin-top:10px;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 8px;
}

.footer-links a:hover{
color:#00ffd5;
}
.follow-us{
text-align:center;
margin-top:20px;
}

.follow-us h3{
color:#00ffd5;
margin-bottom:10px;
}

.social-icons a{
color:white;
text-decoration:none;
margin:0 15px;
font-size:16px;
}

.social-icons a i{
margin-right:6px;
}

.social-icons a:hover{
color:#00ffd5;
}

.copyright{
margin-top:15px;
color:#aaa;
font-size:14px;
}


.feedback-section{
padding:60px 20px;
text-align:center;
background:linear-gradient(180deg,#0f172a,#020617);
}

.feedback-section h2{
margin-bottom:30px;
color:white;
}

.feedback-form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.feedback-form input,
.feedback-form textarea{
padding:12px;
border:none;
border-radius:6px;
background:#111827;
color:white;
}

.feedback-form textarea{
height:120px;
resize:none;
}

.feedback-form button{
padding:12px;
background:#25D366;
border:none;
border-radius:6px;
color:white;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.feedback-form button:hover{
background:#1ea952;
}

.trust{
padding:50px 20px;
background:#0f172a;
}

.about-section{
padding:10px 20px;
text-align:center;
background:#0f172a;
}

.about-section h2{
font-size:32px;
margin-bottom:20px;
}

.about-text{
max-width:800px;
margin:auto;
font-size:18px;
color:#d1d5db;
line-height:1.6;
}

.about-features{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:70px;
}

.about img{
    max-width: 300px;
}

.feature-box{
background:#2563eb;
padding:20px;
width:220px;
border-radius:8px;
transform: translateY(-8px);
transition:0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-box:hover{
transform:translateY(-5px);
background:#2563eb;
}

.monitoring-info{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
padding:50px 20px;
margin-top: 82px;
}

.monitor-box{
background:#1e293b;
padding:25px;
width:250px;
border-radius:10px;
text-align:center;
transition:0.3s;
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.monitor-box:hover{
transform:translateY(-5px);
background:#2563eb;
}

.monitoring-process{
text-align:center;
padding:60px 20px;
}

.process-container{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.process-box{
background:#1e293b;
padding:20px;
width:250px;
border-radius:8px;
}

.monitor-cta{
text-align:center;
padding:60px 20px;
}

.cta-btn{
background:#22c55e;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:white;
}

.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.store{
padding:80px 20;
background:#0f172a;
color:white;
text-align:center;
}


.section-title{
font-size:36px;
margin-bottom:10px;
}

.section-subtitle{
color:#cbd5f5;
margin-bottom:50px;
}

.store-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.store-card{
   
background:#111;
padding: 20px;
border-radius:12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.4);
transition:0.3s;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.store-card:hover{
transform:translateY(-5px);

}

.store-card img{
width: 70%;
object-fit: contain;
height: 180px;
display: block;
margin: auto;


}
.store-card a{
    margin-top: auto;
}

.store-card p{
    min-height: 60px;
}

.buy-btn{
display:inline-block;
padding:10px 18px;
margin-top:10px;
background:linear-gradient(45deg,#00c6ff,#0072ff);
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.buy-btn:hover{
background:linear-gradient(45deg,#0072ff,#00c6ff);
transform:scale(1.05);
}

.store-info{
padding:20px;
}

.store-info h3{
margin-bottom:10px;
}


.terms-section{
    padding: 20px;
    max-width: 800px;
    color: white;
    margin-top: 40px auto;
    align-items: center;
    text-align: left;
}
.terms-section h2{
    text-align: center;
    margin-bottom: 20px;
}
.terms-section h3{
    margin-top: 20px;

}
.terms-section ul{
    margin-left: 20px;
}

.privacy-section{
    padding: 20px;
    max-width: 800px;
    color: white;
    margin-top: 40px auto;
    align-items: center;
    text-align: left;
}
.privacy-section h2{
    text-align: center;
    margin-bottom: 20px;
}
.privacy-section h3{
    margin-top: 20px;

}
.privacy-section ul{
    margin-left: 20px;
}

/* mobile responsive*/ 

@media (max-width:768px){

.menu-toggle{
    display: block;

}

.nav-menu{
    display: none;
    flex-direction: column;
    background: #020617;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
}
.nav-menu.active{
    display: flex;
}


.hero h1{
    font-size:28px;
}

.hero button{
    padding:10px 20px;
}

.logo img{
    width: auto;
    height: 110px;

}

.hero{
    height:70vh;
}

.store-card img{
    max-width:150px;
}

}
