:root {
  --orange: #F26522;
  --blue: #0F3D5E;
}

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

body {
  line-height: 1.6;
 

}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #0F3D5E;
  font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%; /* hidden */
    width: 250px;
    height: 100vh;
    background: #0F3D5E;
    flex-direction: column;
    padding-top: 60px;
    transition: 0.3s;
  }

  nav a {
    color: white;
    padding: 15px;
    display: block;
  }

  nav.active {
    right: 0; /* open */
  }

}

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

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo h2 {
  color: var(--blue);
}




/* BUTTONS */
.btn {
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: var(--orange);
  color: white;
}

.secondary {
  border: 1px solid white;
  color: white;
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: var(--blue);
  color: white;
}

/* GRID */
.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  color: var(--blue);
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  transition: 0.3s;
  font-weight: 500;
}

.dark .card {
  background: white;
}

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

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTACT */
.contact {
  background: #f9f9f9;
}

/* FOOTER */
footer {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 20px;
}

.contact-section {
  padding: 80px 20px;
  background: #0F3D5E;
  color: white;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-box span {
  margin-right: 10px;
  color: #F26522;
}
.info-box a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.info-box a:hover {
  color: #F26522; /* orange */
}

/* BUTTONS */
.contact-buttons {
  margin-top: 20px;
}

.btn.primary {
  background: #F26522;
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.btn.whatsapp {
  background: #25D366;
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

/* MAP */
.contact-map {
  flex: 1;
}

/* MOBILE */
@media(max-width:768px){
  .contact-container {
    flex-direction: column;
  }
}

.shop-section {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.shop-section h2 {
  font-size: 32px;
  color: #0F3D5E;
}

.subtitle {
  margin: 10px 0 40px;
  color: #666;
}

/* GRID */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD */
.shop-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.shop-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* OVERLAY */
.shop-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 20px;
  text-align: left;
}

/* HOVER EFFECT */
.shop-card:hover img {
  transform: scale(1.1);
}

.why-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.why-slider {
  flex: 1;
}

.why-slider img {
  width: 100%;
  border-radius: 12px;
  height: 350px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.why-content {
  flex: 1;
}

.why-content h2 {
  color: #0F3D5E;
  margin-bottom: 15px;
}

.desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}


/* MOBILE */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }
}

/* FEATURES BELOW SECTION */
.why-features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* CARD STYLE */
.why-card {
  background: white;
  padding: 20px;
  width: 200px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ICON */
.why-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* TEXT */
.why-card h4 {
  color: #0F3D5E;
  margin-bottom: 5px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-8px);
}


/* TOP WHITE */
.products-top {
  background: white;
  text-align: center;
  padding: 70px 20px 40px;
}

.products-top h2 {
  color: #0F3D5E;
  font-size: 34px;
}

.products-top p {
  color: #666;
}

/* BLUE BACKGROUND */
.products-bottom {
  background: #0F3D5E;
  padding: 60px 40px;
}

/* 5 CARDS IN ROW */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

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

.product-card h3 {
  padding: 15px;
  color: #0F3D5E;
  font-size: 16px;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 20px;
  background: #f8f9fb;
}

/* HEADING */
.about-section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0F3D5E;
  font-size: 32px;
}

/* ===== TABS ===== */
.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 22px;
  margin: 5px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.tab:hover {
  background: #ccc;
}

.tab.active {
  background: #F26522;
  color: white;
}

/* ===== CONTENT LAYOUT ===== */
.about-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch; /* 🔥 equal height */
}

/* ===== IMAGE ===== */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 100%; /* 🔥 full height match */
  object-fit: cover;
  border-radius: 12px;
}

/* ===== TEXT ===== */
.about-text {
  flex: 1;
  display: flex;
  align-items: center;
}

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

/* OPTIONAL CARD LOOK */
.about-text {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-content {
    flex-direction: column;
  }

  .about-image img {
    height: 250px;
  }

  .about-text {
    padding: 15px;
  }

}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */
.slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 61, 94, 0.7); /* blue overlay */
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

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

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

/* BUTTONS */
.btn.primary {
  background: #F26522;
  padding: 12px 25px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

.btn.secondary {
  border: 1px solid white;
  padding: 12px 25px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
}