.main-header{
background:black;
color:white;
padding:10px 20px;
}

.logo-area{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
animation:slideDown 1s ease;
}

.logo{
width:80px;
height:auto;
}

.company-name{
font-size:28px;
font-weight:bold;
}

.menu ul{
display:flex;
justify-content:center;
gap:30px;
list-style:none;
padding:10px;
background:red;
}

.menu ul li{
position:relative;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
}

.dropdown-menu{
display:none;
position:absolute;
background:white;
color:black;
top:30px;
padding:10px;
box-shadow:0 0 10px #ccc;
}

.dropdown-menu li{
padding:6px;
}

.dropdown-menu a{
color:black;
}

.dropdown:hover .dropdown-menu{
display:block;
}

@keyframes rotateLogo{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

@keyframes slideDown{
0%{opacity:0;transform:translateY(-40px);}
100%{opacity:1;transform:translateY(0);}
}
/* buttons */

.top-buttons{
margin:20px;
}

.btn{
background:red;
color:white;
padding:10px 18px;
text-decoration:none;
border-radius:6px;
margin:5px;
display:inline-block;
}

/* table */

.product-table{
width:90%;
margin:auto;
border-collapse:collapse;
background:white;
}

.product-table th{
background:#222;
color:white;
padding:12px;
}

.product-table td{
padding:12px;
border-bottom:1px solid #ddd;
}

.finder{

background:#f3f3f3;

padding:40px;

text-align:center;

}

.finder-box{

background:white;

padding:30px;

border-radius:8px;

box-shadow:0 0 10px #ccc;

width:80%;

margin:auto;

}

.finder select,
.finder input{

padding:12px;

margin:10px;

width:220px;

border:1px solid #ccc;

border-radius:4px;

}

/* image thumbnail */

.thumb{
width:80px;
height:60px;
object-fit:cover;
border-radius:6px;
}
/* ELECTRIC POWER BACKGROUND */

.electric-bg{

background:linear-gradient(135deg,#0a0a0a,#2b0000,#000);

color:white;

position:relative;

overflow:hidden;

padding:60px 20px;

}

/* electric moving light */

.electric-bg::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:200%;
height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,0,0,0.35),
transparent
);

animation:electricMove 6s linear infinite;

}

/* animation */

@keyframes electricMove{

0%{
left:-100%;
}

100%{
left:100%;
}

}

/* glowing heading */

.electric-bg h2{

color:#ff2b2b;

font-size:32px;

text-shadow:
0 0 10px red,
0 0 20px red,
0 0 40px red;

}

/* text styling */

.electric-bg p{

color:#eee;

font-size:16px;

}

/* direction button glow */

.direction-btn{

background:red;

box-shadow:0 0 10px red;

}

.direction-btn:hover{

background:black;

box-shadow:0 0 25px red;

}
body{
margin:0;
font-family:Arial, sans-serif;
background:#f4f6f9;
}

/* HEADER */

.main-header{
background:black;
padding:15px 0;
border-bottom:3px solid red;
}

.header-container{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
}

.logo{
width:80px;
}

.company-name{
color:white;
font-size:32px;
font-weight:800;
text-transform:uppercase;
text-shadow:0 0 8px red;
}

.tagline{
color:#bbb;
font-size:13px;
text-align:center;
margin-top:3px;
}

/* MENU */

nav{
background:red;
position:relative;
z-index:1000;
}

nav ul{
display:flex;
justify-content:center;
list-style:none;
margin:0;
padding:10px;
gap:40px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

nav ul li{
position:relative;
}

/* DROPDOWN */

.dropdown-menu{
display:none;
position:absolute;
top:100%;
left:0;
background:white;
min-width:180px;
padding:8px 0;
border-radius:6px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.dropdown-menu li{
padding:8px 15px;
}

.dropdown-menu a{
color:black;
text-decoration:none;
}

nav ul li:hover .dropdown-menu{
display:block;
}

/* HERO */

.hero{
background-size:cover;
background-position:center;
padding:170px 20px;
text-align:center;
position:relative;
overflow:hidden;
animation:heroZoom 20s infinite alternate;
}

@keyframes heroZoom{
from{background-size:100%;}
to{background-size:110%;}
}

/* HERO LIGHT EFFECT */

.electric-light{
position:absolute;
top:0;
left:-100%;
width:200%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.3),transparent);
animation:lightMove 6s infinite;
}

@keyframes lightMove{
0%{left:-100%;}
100%{left:100%;}
}

/* HERO CONTENT */

.hero-title{
color:white;
font-size:52px;
font-weight:800;
text-shadow:0 0 20px red;
}

.hero-sub{
color:white;
font-size:22px;
margin-top:15px;
}

.hero-btn{
background:red;
color:white;
padding:14px 35px;
border:none;
border-radius:6px;
margin-top:25px;
font-size:17px;
cursor:pointer;
box-shadow:0 0 15px red;
}

.hero-btn:hover{
background:black;
}

/* FEATURED SECTION */

.featured-bg{
background:
linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
url("https://image2url.com/r2/default/images/1772750453187-6c09a4e7-8a4e-4631-b8b8-5ebfb3f8dbc5.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:60px 0;
}

/* TITLE */

.section-title{
text-align:center;
color:red;
font-size:30px;
margin-bottom:30px;
}

/* SLIDER */

.slider-wrapper{
position:relative;
width:90%;
margin:auto;
display:flex;
align-items:center;
}

.slider-container{
overflow:hidden;
width:100%;
}

.slider{
display:flex;
transition:transform 0.5s ease;
}

/* PRODUCT CARD */

.product-card{
min-width:220px;
padding:15px;
margin:10px;
border-radius:10px;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(4px);
box-shadow:0 0 10px #ccc;
text-align:center;
}

.product-card img{
width:180px;
height:120px;
object-fit:contain;
}

.price{
color:red;
font-weight:bold;
}

/* ARROWS */

.arrow{
background:red;
color:white;
border:none;
font-size:22px;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
}

.arrow:hover{
background:black;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 12px rgba(0,0,0,0.3);
animation:pulse 2s infinite;
}

.whatsapp-float img{
width:35px;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.1);}
100%{transform:scale(1);}
}

/* MAP SECTION */

.map-box{
max-width:900px;
margin:auto;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 20px rgba(255,0,0,0.4);
}

.location-section{
background:white;
padding:50px;
text-align:center;
margin-top:50px;
}

.direction-btn{
background:red;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.direction-btn:hover{
background:black;
}

/* BOOK SERVICE POPUP */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-box{
background:white;
padding:25px;
border-radius:10px;
width:320px;
text-align:center;
animation:popupShow 0.3s ease;
}

@keyframes popupShow{
from{transform:scale(0.8); opacity:0;}
to{transform:scale(1); opacity:1;}
}

.popup-box input,
.popup-box textarea{
width:100%;
padding:10px;
margin:8px 0;
border-radius:5px;
border:1px solid #ccc;
}

.popup-box button{
background:red;
color:white;
border:none;
padding:10px;
margin:5px;
cursor:pointer;
border-radius:5px;
}

.popup-box button:hover{
background:black;
}
