*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,sans-serif;
}

body{
background:#f4f6fa;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.center{
text-align:center;
}

/* TOP BAR */

.topbar{
background:#1f1b4d;
color:white;
padding:8px 0;
font-size:14px;
}

.topbar-inner{
display:flex;
justify-content:flex-end;
}

/* HEADER */

.header{
background:#2E2A63;
position:sticky;
top:0;
z-index:999;
transition:.3s;
}

/* SHRINK HEADER */

.header.shrink{
padding:2px 0;
}

.header.shrink .logo img{
height:45px;
}

/* NAV GRID */

.nav-container{
display:grid;
grid-template-columns:1fr auto 1fr;
align-items:center;
padding:12px 0;
position:relative;
}

/* LEFT NAV */

.main-nav-left{
display:flex;
gap:30px;
justify-content:flex-end;
padding-right:60px;
}

/* RIGHT NAV */

.main-nav-right{
display:flex;
gap:30px;
justify-content:flex-start;
padding-left:60px;
}

/* NAV LINKS */

.main-nav-left a,
.main-nav-right a{
color:white;
text-decoration:none;
font-weight:500;
font-size:16px;
}

/* LOGO */

.logo{
text-align:center;
}

.logo img{
height:90px;
transition:.3s;
display:block;
}

/* MOBILE TOGGLE */

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* HERO */

.slider{
position:relative;
height:520px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s;
}

.slide.active{
opacity:1;
}

.slide-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right,rgba(0,0,0,.7),transparent);
}

.slide-content{
position:absolute;
bottom:120px;
left:8%;
color:white;
}

.slide-content h1,
.slide-content h2{
font-size:42px;
}

/* SLIDER BUTTONS */

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.6);
border:none;
width:45px;
height:45px;
border-radius:50%;
color:white;
font-size:24px;
cursor:pointer;
z-index:10;
}

.prev{left:20px;}
.next{right:20px;}

/* SECTION */

.section{
padding:90px 0;
}

.section-title{
border-bottom:3px solid #2E2A63;
display:inline-block;
padding-bottom:8px;
margin-bottom:25px;
}

.center-title{
display:block;
text-align:center;
margin:0 auto 40px auto;
width:fit-content;
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:60% 40%;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
max-height:520px;
object-fit:cover;
border-radius:8px;
}

.about-icons{
list-style:none;
margin:20px 0;
}

.about-icons li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.icon{
background:#2E2A63;
color:white;
width:26px;
height:26px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:10px 22px;
background:#2E2A63;
color:white;
text-decoration:none;
border-radius:6px;
}

/* PRODUCTS */

.products-section{
background:#ffffff;
padding:90px 0;
}

.product-slider{
overflow:hidden;
margin-top:40px;
}

.product-track{
display:flex;
gap:18px;
animation:scrollProducts 15s linear infinite;
}

@keyframes scrollProducts{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.product-card{
flex:0 0 260px;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.product-card img{
height:160px;
object-fit:contain;
width:100%;
}

/* HIGHLIGHTS */

.highlights{
background:#f7f8fc;
padding:100px 0;
}

.highlights-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:35px;
max-width:1150px;
margin:0 auto;
}

.highlight-box{
background:white;
padding:45px 30px;
text-align:center;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
transition:all .35s ease;
cursor:pointer;
position:relative;
overflow:hidden;
}

/* ICON */

.highlight-icon{
font-size:42px;
margin-bottom:18px;
transition:transform .35s ease;
}

/* TITLE */

.highlight-box h3{
font-size:20px;
margin-bottom:8px;
color:#2E2A63;
}

/* TEXT */

.highlight-box p{
color:#666;
font-size:15px;
}

/* HOVER EFFECT */

.highlight-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 45px rgba(0,0,0,0.12);
}

.highlight-box:hover .highlight-icon{
transform:scale(1.2) rotate(8deg);
}

/* subtle top line animation */

.highlight-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:4px;
background:#2E2A63;
transition:.4s;
}

.highlight-box:hover::before{
width:100%;
}

/* CONTACT */

.contact-section{
background:#eef1f8;
padding:90px 0;
}

.contact-form{
max-width:500px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #ddd;
}
.contact-form textarea{
min-height:150px;
resize:vertical;
}

/* CONTACT BUTTON */

.contact-form button{
background:#2E2A63;
color:white;
border:none;
padding:10px 25px;
border-radius:6px;
cursor:pointer;
font-size:14px;
}

.contact-form button:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(0,0,0,.15);
}

/* FOOTER */

.footer{
background:#2E2A63;
color:white;
text-align:center;
padding:20px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
}

.whatsapp img{
width:55px;
}

/* SCROLL UP */

.scroll-top{
position:fixed;
bottom:25px;
left:25px;
background:#2E2A63;
color:white;
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
cursor:pointer;
opacity:1;
transition:.3s;
z-index:999;
}

.scroll-top.show{
opacity:1;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
left:-260px;
width:260px;
height:100vh;
background:#2E2A63;
display:none;
flex-direction:column;
padding-top:120px;
gap:25px;
transition:.3s;
z-index:2000;
}

.mobile-menu a{
color:white;
text-decoration:none;
font-size:18px;
padding-left:30px;
}

.mobile-menu.active{
left:0;
display:flex;
}

/* MOBILE MENU CLOSE BUTTON */

.menu-close{
position:absolute;
top:25px;
right:25px;
font-size:28px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.nav-container{
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.menu-toggle{
display:block;
position:absolute;
left:20px;
top:50%;
transform:translateY(-50%);
}

.logo{
display:flex;
justify-content:center;
align-items:center;
}

.logo img{
height:70px;
}

.main-nav-left,
.main-nav-right{
display:none;
}

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

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

}

/* HIDE MOBILE MENU ON DESKTOP */

@media(min-width:901px){
.mobile-menu{
display:none !important;
}

.menu-toggle{
display:none !important;
}
}

/* PAGE HEADER / BREADCRUMB */

.page-header{
background:#eef1f8;
padding:70px 0 50px 0;
text-align:center;
}

.page-title{
font-size:34px;
margin-bottom:10px;
}

.breadcrumb-links{
font-size:14px;
color:#666;
}

.breadcrumb-links a{
color:#2E2A63;
text-decoration:none;
font-weight:500;
}


/* CORE VALUES */

.values-section{
padding:90px 0;
background:#ffffff;
}

.values-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:50px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
}


.products-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin-top:50px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
}

.products-grid .value-card{
flex:0 0 calc(33.333% - 40px);
max-width:350px;
}

/* Center the bottom 2 cards */

.products-grid .value-card:nth-child(4){
grid-column:2;
justify-self:end;
}

.products-grid .value-card:nth-child(5){
grid-column:3;
justify-self:start;
}

.values-grid .value-card:last-child{
grid-column:auto;
}

@media(max-width:900px){

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

}

.value-card{
background:#f7f8fc;
padding:30px 25px;
border-radius:10px;
text-align:center;
transition:.3s;
}

.value-card img{
height:140px;
object-fit:contain;
margin-bottom:15px;
}

.value-icon{
font-size:34px;
margin-bottom:15px;
}

.value-card h3{
margin-bottom:10px;
color:#2E2A63;
}

.value-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}


/* CTA SECTION */

.cta-section{
background:#eef1f8;
padding:90px 0;
text-align:center;
}

.cta-section h2{
margin-bottom:10px;
}

.cta-section .btn{
margin-top:20px;
}

/* CONTACT PAGE LAYOUT */

.contact-grid{
display:grid;
grid-template-columns:45% 55%;
gap:50px;
align-items:start;
}

.contact-form{
width:100%;
}

.contact-form input,
.contact-form textarea{
width:100%;
}

/* CONTACT PAGE MOBILE FIX */

@media(max-width:900px){

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

.contact-form{
margin-top:30px;
}

.contact-form button{
width:100%;
}

}

@media(max-width:900px){

.contact-form input,
.contact-form textarea{
font-size:16px;
}

}

.main-nav-left a,
.main-nav-right a{
border-bottom:2px solid transparent;
padding-bottom:4px;
}

.main-nav-left a.active,
.main-nav-right a.active{
color:#ffd700;
border-bottom:2px solid #ffd700;
}

.value-card img{
width:100%;
height:160px;
object-fit:contain;
border-radius:8px;
margin-bottom:15px;
background:#fff;
display:block;
margin-left:auto;
margin-right:auto;
}

/* MOBILE PRODUCT FIX */

@media (max-width:768px){

.products-grid{
flex-direction:column;
align-items:center;
}

.products-grid .value-card{
flex:0 0 100%;
max-width:100%;
}

}