*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0c1b33;
  background-color: #f5f7fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.topbar {
  background: #022b5c;
  color: #ffd36a;
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
  padding-block: 0.5rem;
  flex-wrap: wrap;
}

.topbar i {
  margin-right: 0.35rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #04306a;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: #021f45;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 52px;
  width: auto;
  border-radius: 999px;
  border: 2px solid #f5b61a;
  background: #04224a;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #ffd36a;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.8rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: #f5f7fb;
}

.nav-links a {
  position: relative;
  padding-block: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd36a, #f5b61a);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 70%;
  margin-inline: auto;
  background: #f5f7fb;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  color: #fff;
  background: #022b5c;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #f5b61a 0, rgba(245, 182, 26, 0.15) 32%, transparent 55%),
              radial-gradient(circle at bottom right, #0b1d3c 0, #02152b 55%, #010915 100%);
}

.hero-bubbles .bubble {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  animation: floatUp 14s linear infinite;
}

.hero-bubbles .bubble:nth-child(1) {
  width: 160px;
  height: 160px;
  bottom: -120px;
  left: 5%;
  animation-delay: 0s;
}

.hero-bubbles .bubble:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: -90px;
  left: 55%;
  animation-delay: 3s;
}

.hero-bubbles .bubble:nth-child(3) {
  width: 140px;
  height: 140px;
  bottom: -140px;
  right: 5%;
  animation-delay: 6s;
}

.hero-bubbles .bubble:nth-child(4) {
  width: 60px;
  height: 60px;
  bottom: -60px;
  right: 45%;
  animation-delay: 9s;
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 3rem;
  padding-block: 4rem;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.1vw + 1rem, 3.4rem);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.video-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(5, 16, 34, 0.65);
  border-radius: 1.5rem;
  padding: 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.video-thumb {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  background-image: linear-gradient(135deg, #ffd36a, #f9a826);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%);
}

.video-play-icon {
  position: relative;
  font-size: 2.4rem;
  color: #04306a;
  background: #ffffffeb;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #f5f7fb;
}

/* Sections */
.section {
  padding-block: 4rem;
}

.section.alt {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  font-size: 1.9rem;
  color: #022249;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #5c6475;
  max-width: 32rem;
  margin-inline: auto;
}

.section-inner.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: start;
}

.section-text h2 {
  font-size: 1.9rem;
  color: #021d3b;
  margin-bottom: 0.75rem;
}

.section-text p {
  color: #4a5161;
  margin-bottom: 0.75rem;
}

.section-media {
  display: flex;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffd36a, #f5b61a);
  color: #021325;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #ffffff;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn.disabled-btn {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
}

/* About */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.about-item {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1rem;
  border: 1px solid rgba(3, 31, 71, 0.08);
  box-shadow: 0 12px 30px rgba(2, 19, 46, 0.05);
}

.about-item i {
  font-size: 1.5rem;
  color: #f5b61a;
  margin-bottom: 0.4rem;
}

.about-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.stats-card {
  background: linear-gradient(145deg, #021e42, #04306a);
  color: #f5f7fb;
  border-radius: 1.5rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(1, 10, 24, 0.55);
}

.stats-card h3 {
  margin-bottom: 0.85rem;
}

.stats-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.stats-card li i {
  margin-right: 0.5rem;
  color: #ffd36a;
}



/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.category-card {
  background: #ffffff;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(3, 31, 71, 0.06);
  box-shadow: 0 16px 36px rgba(2, 19, 46, 0.06);
  display: flex;
  flex-direction: column;
}

/* Top product image area */
.category-image-wrap {
  padding-top: 1.1rem;
  padding-inline: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.category-image-wrap.category-image-muted {
  justify-content: center;
}

.category-product-img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.category-image-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #04306a, #05539a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd36a;
  font-size: 1.8rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

/* Body */
.category-body {
  padding: 0.9rem 1.1rem 1.35rem;
}

.category-body h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b8497;
  margin-bottom: 0.15rem;
}

.category-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #021d3b;
}

.category-body h4 i {
  margin-right: 0.45rem;
  color: #f5b61a;
}

.category-body p {
  font-size: 0.9rem;
  color: #4a5161;
  margin-bottom: 0.5rem;
}

.category-body ul {
  font-size: 0.85rem;
  color: #5a6270;
  padding-left: 1.1rem;
}

.category-body li {
  margin-bottom: 0.25rem;
}


/* Wholesale */
.steps {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #04306a;
  color: #ffd36a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.wholesale-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(3, 31, 71, 0.08);
  box-shadow: 0 16px 38px rgba(2, 19, 46, 0.08);
}

.wholesale-card h3 {
  margin-bottom: 0.9rem;
}

.wholesale-card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.wholesale-card li i {
  margin-right: 0.45rem;
  color: #f5b61a;
}

/* Quality */
.checklist {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #444c5c;
}

.checklist i {
  margin-top: 0.2rem;
  color: #1c9b57;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.badge-item {
  background: #021f45;
  color: #f5f7fb;
  padding: 0.85rem;
  border-radius: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.badge-item i {
  color: #ffd36a;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(3, 31, 71, 0.06);
  box-shadow: 0 10px 26px rgba(2, 19, 46, 0.06);
}

.gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 0.6rem 0.8rem 0.75rem;
  font-size: 0.85rem;
  color: #444c5c;
}

/* Contact */
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  color: #444c5c;
}

.contact-details i {
  margin-top: 0.15rem;
  color: #f5b61a;
}

.contact-form {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.2rem 1.3rem 1.4rem;
  border: 1px solid rgba(3, 31, 71, 0.06);
  box-shadow: 0 16px 34px rgba(2, 19, 46, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.85rem;
  color: #555f71;
}

.form-field input,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(3, 31, 71, 0.15);
  padding: 0.55rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
  border-radius: 1rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #04306a;
  box-shadow: 0 0 0 1px rgba(4, 48, 106, 0.3);
}

.form-note {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #687085;
}

.map-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(3, 31, 71, 0.08);
  box-shadow: 0 16px 34px rgba(2, 19, 46, 0.08);
}

.map-card h3 {
  margin-bottom: 0.25rem;
}

.map-card p {
  font-size: 0.85rem;
  color: #4a5161;
  margin-bottom: 0.6rem;
}

.map-embed iframe {
  width: 100%;
  border: 0;
  border-radius: 0.9rem;
  min-height: 260px;
}

/* Footer */
.footer {
  background: #010c1b;
  color: #e6e9f2;
  padding-top: 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-logo {
  height: 44px;
  width: auto;
  border-radius: 999px;
  border: 2px solid #f5b61a;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-text {
  font-size: 0.85rem;
  color: #a4acbe;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: #a4acbe;
  margin-bottom: 0.25rem;
}

.footer-links a:hover {
  color: #ffd36a;
}

.footer-bottom {
  padding-block: 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: #8088a0;
}

.footer-bottom-right {
  text-align: right;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-up.delay-1 {
  transition-delay: 0.1s;
}

.animate-up.delay-2 {
  transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr);
    padding-block: 3.4rem;
  }
  .hero-video {
    margin-top: 0.5rem;
    justify-content: flex-start;
  }
  .section-inner.two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-media {
    order: -1;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: center;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #021f45;
    flex-direction: column;
    align-items: flex-start;
    width: min(260px, 80vw);
    padding: 0.75rem 1.1rem 0.9rem;
    transform-origin: top right;
    transform: scaleY(0.2);
    opacity: 0;
    pointer-events: none;
    border-bottom-left-radius: 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }
  .hero-inner {
    padding-block: 3rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-badges {
    gap: 0.5rem;
  }
  .hero-badges span {
    font-size: 0.78rem;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.video-corner {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 380px;
  z-index: 5;
}

.hero {
  position:relative;
}


/* === Hero layout fix after video removal === */
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  z-index: 1;
  text-align: center;
}

.hero-text h1,
.hero-text p {
  margin-left: auto;
  margin-right: auto;
}

.hero-text p {
  max-width: 40rem;
}

.hero-actions,
.hero-badges {
  justify-content: center;
}
