:root{--primary:#1B0057;--secondary:#F4B400}*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif}
.top-bar{background:#111827;color:#fff;padding:10px;text-align:center}
.navbar{display:flex;align-items:center;padding:20px 5%}
.logo img{height:70px}

.logo{
margin-right:auto;
}

.nav-links{
display:flex;
gap:20px;
}
.nav-links a{text-decoration:none;color:#333}


.quote-btn{
background:#F4B400;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:#000;
font-weight:700;
transition:.3s;
margin-left:25px;
}
.quote-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.hero{background:linear-gradient(135deg,#1B0057,#3214a1);color:#fff;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;padding:80px 8%}
.badge{background:rgba(255,255,255,.15);padding:10px 15px;border-radius:30px}
.hero h1

{font-size:56px;margin:20px 0

}



.hero-buttons{display:flex;gap:15px;margin-top:20px}
.btn-primary,.btn-secondary{padding:12px 24px;border-radius:30px;text-decoration:none}
.btn-primary{background:#F4B400;color:#000}.btn-secondary{border:2px solid #fff;color:#fff}
.hero-gallery{display:grid;grid-template-columns:1fr 1fr;gap:15px}
.hero-gallery img{width:100%;height:220px;object-fit:cover;border-radius:20px}
@media(max-width:900px){.hero{grid-template-columns:1fr}.nav-links{display:none}.hero h1{font-size:36px}}

/* ABOUT PAGE */

.page-hero{
background:linear-gradient(
135deg,
rgba(27,0,87,.95),
rgba(38,15,122,.90)
);
padding:80px 20px;
text-align:center;
color:white;
}

.page-hero h1{
font-size:48px;
margin-bottom:15px;
}

.page-hero p{
font-size:18px;
max-width:700px;
margin:auto;
}

.content-section{
max-width:1100px;
margin:auto;
padding:50px 20px;
}
.content-section h2{
color:#1B0057;
margin-bottom:30px;
font-size:42px;
text-align:center;
}

.content-section p{
line-height:1.9;
margin-bottom:20px;
color:#555;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1200px;
margin:auto;
padding:0 20px 100px;
}

.cards .card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.cards .card h3{
color:#1B0057;
margin-bottom:15px;
}

@media(max-width:991px){

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

.page-hero h1{
font-size:40px;
}

}

/* CTA SECTION */

.cta{
background:linear-gradient(
135deg,
#F4B400,
#ffcb2c
);
padding:50px 20px;
text-align:center;
}

.cta h2{
font-size:42px;
color:#111827;
margin-bottom:20px;
}

.cta p{
font-size:18px;
margin-bottom:30px;
color:#333;
}

.cta a{
display:inline-block;
background:#1B0057;
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

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

/* FOOTER */

footer{
background:#111827;
color:white;
padding:60px 20px;
text-align:center;
}

footer h3{
font-size:32px;
margin-bottom:15px;
color:#F4B400;
}

footer p{
margin:10px 0;
font-size:16px;
}

/* CONTACT INFO IN FOOTER */

footer .footer-contact{
margin-top:20px;
}

footer .footer-contact p{
margin:8px 0;
}
/* PRODUCTS PAGE */

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.product-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
width:100%;
height:220px;
object-fit:contain;
padding:10px;
background:white;
}
.product-card h3{
padding:20px 20px 10px;
color:#1B0057;
}

.product-card p{
padding:0 20px 20px;
line-height:1.7;
color:#555;
}

.product-card a{
display:block;
margin:0 20px 20px;
padding:12px;
text-align:center;
background:#F4B400;
color:black;
text-decoration:none;
font-weight:700;
border-radius:50px;
}

@media(max-width:991px){

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

}

/* PROJECTS PAGE */

.project-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:40px;
}

.project-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.project-card:hover{
transform:translateY(-10px);
}

.project-card img{
width:100%;
height:280px;
object-fit:cover;
}

.project-content{
padding:25px;
}

.project-content h3{
color:#1B0057;
margin-bottom:10px;
}

.project-content p{
line-height:1.7;
color:#555;
}

@media(max-width:991px){

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

}

/* CONTACT PAGE */

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.contact-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
text-align:center;

border-top:5px solid #f4b400;
transition:all .3s ease;

}


.contact-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.contact-card h3{
color:#1B0057;
margin-bottom:15px;
font-size:30px;
font-weight:700;
}

.contact-card p{
font-size:18px;
line-height:1.8;
color:#555;
}

.hours-card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
text-align:center;
max-width:600px;
margin:auto;
}

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

.social-buttons a{
background:#F4B400;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
color:black;
font-weight:700;
}

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

.contact-form input,
.contact-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.contact-form button{
background:#1B0057;
color:white;
border:none;
padding:15px;
border-radius:50px;
cursor:pointer;
font-size:16px;
font-weight:700;
}

.map-container iframe{
width:100%;
height:450px;
border:none;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@media(max-width:991px){

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

}

/* QUOTATION BUTTONS */

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

.quotation-buttons button{
background:#1B0057;
color:white;
border:none;
padding:16px 30px;
border-radius:50px;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.quotation-buttons button:hover{
transform:translateY(-5px);
}

.quotation-buttons button:first-child{
background:#25D366;
}

.quotation-buttons button:last-child{
background:#1B0057;
}

/* QUOTATION PAGE */

.quotation-card{
max-width:1000px;
margin:auto;
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.quotation-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.quotation-form input,
.quotation-form select{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.quotation-form textarea{
grid-column:1/3;
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
min-height:160px;
}

.quotation-buttons{
grid-column:1/3;
display:flex;
justify-content:center;
gap:20px;
margin-top:10px;
}

@media(max-width:991px){

.quotation-form{
grid-template-columns:1fr;
}

.quotation-form textarea{
grid-column:auto;
}

.quotation-buttons{
grid-column:auto;
flex-direction:column;
}

}




.whatsapp-float:hover{
transform:scale(1.1);
}

.nav-links a.active{
color:#F4B400;
font-weight:700;
}

.product-card,
.project-card{
opacity:1;
transform:none;
transition:.3s;
}


.card.show,
.product-card.show,
.project-card.show{

opacity:1;
transform:translateY(0);

}

.menu-toggle{
display:none;
font-size:32px;
cursor:pointer;
color:#1B0057;
}

@media(max-width:991px){

.navbar{
position:relative;
}

.menu-toggle{
display:block;
}

.nav-links{
display:none;
position:absolute;
top:100px;
left:0;
width:100%;
background:white;
flex-direction:column;
padding:20px;
box-shadow:0 10px 20px rgba(0,0,0,.1);
z-index:1000;
}

.nav-links.show{
display:flex;
}

.nav-links a{
padding:12px 0;
border-bottom:1px solid #eee;
}



.nav-links a{
padding:12px 0;
border-bottom:1px solid #eee;
}



}



.stats{
max-width:1400px;
margin:-60px auto 80px;
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
padding:0 20px;
}

.stat-box{
background:white;
padding:30px;
text-align:center;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-box h2{
font-size:42px;
color:#1B0057;
margin-bottom:10px;
}

@media(max-width:991px){

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

}

/* TESTIMONIALS */

.testimonials-section{
padding:50px 20px;
background:#f8f9fc;
}

.section-title{
text-align:center;
font-size:42px;
color:#1B0057;
margin-bottom:20px;
}

.testimonials-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stars{
font-size:24px;
color:#F4B400;
margin-bottom:15px;
}

.testimonial-card p{
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.testimonial-card h4{
color:#1B0057;
}

@media(max-width:991px){

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

}

/* SERVICES PREVIEW */

.services-preview{
padding:50px 20px;
background:white;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:0 auto 20px;
color:#666;
}

.services-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.service-card{
background:white;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-icon{
font-size:50px;
margin-bottom:20px;
}

.service-card h3{
color:#1B0057;
margin-bottom:15px;
}

.service-card p{
line-height:1.8;
margin-bottom:20px;
color:#555;
}

.service-card a{
text-decoration:none;
font-weight:700;
color:#F4B400;
}

@media(max-width:991px){

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

}

/* FEATURED PRODUCTS */



}
/* PREMIUM FOOTER */

.main-footer{
background:#081226;
color:white;
margin-top:50px;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:1.3fr 1fr 1fr 1.3fr 1.3fr;

gap:40px;
}

.footer-column h3{
color:#F4B400;
margin-bottom:20px;
font-size:28px;
}

.footer-column p{
line-height:1.8;
color:#ddd;
margin-bottom:10px;
}

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

.footer-column a:hover{
color:#F4B400;
}


@media(max-width:991px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}

.final-cta{
background:linear-gradient(135deg,#1B0057,#3513a8);
padding:80px 20px;
text-align:center;
color:white;
}


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

.cta-buttons a{
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.cta-buttons a:first-child{
background:#F4B400;
color:#000;
}

.cta-buttons a:last-child{
background:white;
color:#1B0057;
}

.final-cta h2{
font-size:42px;
margin-bottom:20px;
}

.final-cta p{
max-width:700px;
margin:0 auto 30px;
font-size:18px;
}
.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}


.cta-buttons a:last-child{
background:#fff;
color:#1B0057;
}

/* FINAL CTA */

.footer-bottom{
text-align:center;
padding:15px 0;
margin-top:20px;
border-top:1px solid rgba(255,255,255,.1);
font-size:14px;
color:#bbb;
}

@media(max-width:991px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}

.back-to-top{
position:fixed;
bottom:190px;
right:25px;
width:50px;
height:50px;
background:#1B0057;
color:white;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
box-shadow:0 10px 20px rgba(0,0,0,.2);
z-index:999;
transition:.3s;
}

.back-to-top:hover{
transform:translateY(-5px);
}

.nav-links a{
text-decoration:none;
color:#333;
transition:.3s;
}

.nav-links a:hover{
color:#F4B400;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

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

.card h3{
color:#1B0057;
margin-bottom:15px;
font-size:24px;
}

.card p{
line-height:1.8;
color:#555;
}

.hardware-banner{
background:url('images/hardware-banner.jpg') center center/cover no-repeat;
height:350px;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.hardware-overlay{
background:rgba(0,0,0,0.55);
width:100%;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}

.hardware-overlay h2{
font-size:48px;
margin-bottom:20px;
}

.hardware-overlay p{
font-size:20px;
max-width:700px;
margin-bottom:30px;
}

.banner-btn{
background:#F4B400;
color:#000;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}




.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:70px;
height:70px;
background:#25D366;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:34px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:9999;
animation: whatsappPulse 2s infinite;
}




.stat-box a{
text-decoration:none;
color:inherit;
display:block;
}

.stat-box:hover{
transform:translateY(-5px);
transition:.3s;
}

.contact-subtitle{
text-align:center;
max-width:700px;
margin:0 auto 40px;
font-size:18px;
color:#666;
}

@keyframes whatsappPulse {

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
transform:scale(1.25);
box-shadow:0 0 0 30px rgba(37,211,102,0);
}

100%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media (max-width:768px){

.hardware-banner{
height:500px;
}

.hardware-overlay h2{
font-size:28px;
line-height:1.2;
}

.hardware-overlay p{
font-size:16px;
line-height:1.5;
max-width:90%;
}

.banner-btn{
padding:12px 25px;
font-size:16px;
}


}

@media(max-width:768px){

.hardware-banner{
height:400px;
}

.hardware-overlay h2{
font-size:28px;
line-height:1.2;
margin-bottom:15px;
}

.hardware-overlay p{
font-size:16px;
line-height:1.5;
max-width:90%;
margin-bottom:20px;
}

.banner-btn{
padding:12px 25px;
font-size:16px;
}

}

.project-gallery{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.project-gallery img{
width:100%;
height:280px;
object-fit:cover;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.project-gallery img:hover{
transform:scale(1.03);
}

@media(max-width:991px){

.project-gallery{
grid-template-columns:1fr;
}

}


.project-gallery{
margin-bottom:70px;
}





.whatsapp-float i{
color:#ffffff;
font-size:42px;
line-height:1;
}



