*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fbff;
color:#111;
overflow-x:hidden;
}

/* HEADER */

header{
position:sticky;
top:0;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 5%;
box-shadow:0 2px 18px rgba(0,0,0,0.08);
z-index:1000;
backdrop-filter:blur(12px);
}

/* LEFT */

.header-left{
display:flex;
align-items:center;
gap:18px;
}

/* NAVIGATION */

nav{
display:flex;
align-items:center;
gap:30px;
height:100%;
}

nav a{
text-decoration:none;
font-weight:bold;
color:#081d58;
transition:0.3s;
display:flex;
align-items:center;
height:44px;
}

/* SEARCH */

.search-box{
display:flex;
align-items:center;
background:#f1f5ff;
padding:10px 16px;
border-radius:12px;
gap:10px;
width:260px;
height:44px;
}

.search-box input{
border:none;
outline:none;
background:transparent;
width:100%;
font-size:15px;
}

/* RIGHT BUTTON */

.top-btn{
display:flex;
align-items:center;
justify-content:center;
height:44px;
padding:0 22px;
background:#ff7300;
color:white;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

.header-left{
display:flex;
align-items:center;
gap:18px;
}

.logo{
height:55px;
}

.menu-btn{
font-size:28px;
cursor:pointer;
color:#081d58;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
font-weight:bold;
color:#081d58;
transition:0.3s;
}

nav a:hover{
color:#ff7300;
}

.top-btn{
background:#ff7300;
color:white;
padding:12px 20px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.top-btn:hover{
background:#e66400;
}

/* SIDEBAR */

.sidebar{
position:fixed;
left:-320px;
top:0;
width:300px;
height:100%;
background:#081d58;
z-index:3000;
transition:0.4s;
padding-top:20px;
overflow-y:auto;
}

.sidebar.active{
left:0;
}

.sidebar-top{
display:flex;
justify-content:space-between;
align-items:center;
padding:0 24px 24px;
color:white;
}

.sidebar-top i{
font-size:28px;
cursor:pointer;
}

.sidebar a{
display:block;
padding:18px 24px;
text-decoration:none;
color:white;
border-bottom:1px solid rgba(255,255,255,0.08);
transition:0.3s;
}

.sidebar a:hover{
background:#ff7300;
}

/* HERO */

.hero{
min-height:92vh;
background:linear-gradient(135deg,#041744,#0a2f85);
display:flex;
align-items:center;
padding:0 8%;
position:relative;
overflow:hidden;
}

.hero-overlay{
position:absolute;
width:500px;
height:500px;
background:#ff7300;
opacity:0.12;
border-radius:50%;
right:-120px;
top:-120px;
}

.hero-content{
position:relative;
max-width:720px;
color:white;
z-index:2;
}

.hero-content span{
letter-spacing:2px;
font-weight:bold;
color:#ff7300;
}

.hero-content h1{
font-size:72px;
line-height:1.05;
margin:20px 0;
}

.hero-content p{
font-size:21px;
line-height:1.8;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.hero-primary,
.hero-secondary{
padding:16px 26px;
border-radius:12px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.hero-primary{
background:#ff7300;
color:white;
}

.hero-primary:hover{
background:#e66400;
}

.hero-secondary{
border:2px solid white;
color:white;
}

.hero-secondary:hover{
background:white;
color:#081d58;
}

/* INTRO SECTION */

.intro-section{
padding:90px 6% 40px;
text-align:center;
}

.intro-section h2{
font-size:52px;
margin-bottom:18px;
color:#081d58;
}

.intro-section p{
font-size:20px;
max-width:850px;
margin:auto;
line-height:1.8;
color:#444;
}

/* CATEGORY SECTION */

.section{
padding:70px 6%;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:48px;
color:#081d58;
}

/* CATEGORY GRID */

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
}

/* CATEGORY CARD */

.category-card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 6px 22px rgba(0,0,0,0.08);
transition:0.3s;
border-top:5px solid #ff7300;
}

.category-card:hover{
transform:translateY(-10px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.category-icon{
width:70px;
height:70px;
border-radius:50%;
background:#081d58;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:bold;
margin-bottom:24px;
}

.category-card h3{
font-size:30px;
margin-bottom:15px;
color:#081d58;
}

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

.category-card a{
display:inline-block;
padding:14px 22px;
background:#ff7300;
color:white;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:0.3s;
}

.category-card a:hover{
background:#e66400;
}

/* CONTACT SECTION */

.contact-section{
padding:100px 6%;
background:#081d58;
}

.contact-box{
max-width:720px;
margin:auto;
background:white;
padding:50px;
border-radius:24px;
text-align:center;
}

.contact-box h2{
font-size:44px;
margin-bottom:25px;
color:#081d58;
}

.contact-box p{
font-size:20px;
margin-bottom:14px;
}

.contact-btn{
display:inline-block;
margin-top:20px;
padding:15px 24px;
background:#ff7300;
color:white;
text-decoration:none;
border-radius:12px;
font-weight:bold;
transition:0.3s;
}

.contact-btn:hover{
background:#e66400;
}

/* FOOTER */

footer{
background:#041233;
color:white;
text-align:center;
padding:24px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
height:auto;
padding:120px 6%;
}

.hero-content h1{
font-size:44px;
}

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

nav{
display:none;
}

.top-btn{
display:none;
}

.intro-section h2,
.section-title h2,
.contact-box h2{
font-size:34px;
}

.category-card h3{
font-size:24px;
}

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

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

.hero-primary,
.hero-secondary{
width:100%;
text-align:center;
}

}

.floating-whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.25);
z-index:5000;
}
button:active,
a:active{
transform:scale(0.97);
}
.footer-links{
margin-bottom:12px;
}

.footer-links a{
color:white;
margin:0 12px;
text-decoration:none;
}
.category-card{
display:flex;
flex-direction:column;
justify-content:space-between;
}
.product-image{
width:100%;
aspect-ratio:1/1;
border-radius:18px;
overflow:hidden;
margin-bottom:20px;
background:#f1f5ff;
}

.product-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
.search-box{
display:flex;
align-items:center;
background:#f1f5ff;
padding:10px 16px;
border-radius:12px;
gap:10px;
width:260px;
}

.search-box input{
border:none;
outline:none;
background:transparent;
width:100%;
font-size:15px;
}

.search-box i{
color:#081d58;
}

@media(max-width:900px){

.search-box{
display:none;
}

}
.category-main-icon{
width:85px;
height:85px;
border-radius:22px;
background:#f1f5ff;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
font-size:34px;
color:#081d58;
transition:0.3s;
}

.category-card:hover .category-main-icon{
background:#081d58;
color:white;
transform:scale(1.08);
}
.category-card a{
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.dropdown{
position:relative;
display:flex;
align-items:center;
}

.dropbtn{
background:none;
border:none;
font-size:18px;
font-weight:700;
color:#081d58;
cursor:pointer;
display:flex;
align-items:center;
gap:8px;
}

.dropdown-content{
position:absolute;
top:55px;
left:0;
background:white;
min-width:260px;
border-radius:16px;
box-shadow:0 10px 35px rgba(0,0,0,0.12);
padding:10px 0;
opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.3s;
z-index:999;
}

.dropdown-content a{
display:block;
padding:14px 22px;
text-decoration:none;
color:#081d58;
font-weight:600;
transition:0.3s;
}

.dropdown-content a:hover{
background:#f1f5ff;
padding-left:28px;
}

.dropdown:hover .dropdown-content{
opacity:1;
visibility:visible;
transform:translateY(0);
}