body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a1f44;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #081633;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: orange;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}
/* ===== NAVBAR ===== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #081633;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 55px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: orange;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #081633;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  nav a {
    padding: 10px 0;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== HERO SLIDER ===== */

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Dark overlay */
.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}


.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* Content styling */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: orange;
  padding: 12px 25px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ffb733;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 70vh;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 14px;
  }
}

.btn {
  background: orange;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.features {
  padding: 50px 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: #112b5e;
  padding: 20px;
}

.cta {
  background: orange;
  color: black;
  text-align: center;
  padding: 40px 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #081633;
}

@media(max-width:768px){
  .hero h1 {
    font-size: 28px;
  }
}
.section{padding:60px 20px;text-align:center;}
.section.dark{background:#081633;}
.container{max-width:1100px;margin:auto;}
.grid-4{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:30px;}
.box{background:#112b5e;padding:30px;}
.box i{font-size:30px;color:orange;margin-bottom:10px;}
.card img{width:100%;height:200px;object-fit:cover;}
.cta{background:orange;color:black;text-align:center;padding:50px 20px;}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px;padding:50px;background:#081633;}
.footer-grid a{display:block;color:white;text-decoration:none;margin-bottom:10px;}
.footer-bottom{text-align:center;background:#06122a;padding:15px;}
.whatsapp{position:fixed;bottom:20px;right:20px;background:#25D366;color:white;padding:15px;border-radius:50%;font-size:22px;}
.center{text-align:center;}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#081633;
position:sticky;
top:0;
z-index:1000;
}

.logo-container{
display:flex;
align-items:center;
}

.logo-img{
height:60px;
width:auto;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:orange;
}

/* ===== RETAIL SLIDING BANNER ===== */

.retail-banner {
  width: 100%;
  background: linear-gradient(135deg, #081633, #0a1f44);
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.retail-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.retail-slide {
  display: none;
  animation: fadeRetail 1s ease-in-out;
}

.retail-slide.active {
  display: block;
}

.retail-slide h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: orange;
}

.retail-slide p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ffffff;
}

.btn-retail {
  background: orange;
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-retail:hover {
  background: #ffb733;
}

@keyframes fadeRetail {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media(max-width:768px){
  .retail-slide h2 {
    font-size: 22px;
  }
  .retail-slide p {
    font-size: 14px;
  }
}
