:root {
  --dark: #0d0d33cc;
  --white: #ffffff;
  --gray: #9d9d9d;

  --cyan: #00deba;
  --cyan-hover: #00deba66;
  --blue: #6b4dff;
  --blue-hover: #6b4dff66;
  --text: #333;

  --font-main: 'Montserrat', sans-serif;
  --font-size-xl: 3.5rem;
  --font-size-lg: 1.2rem;
  --font-size-md: 1rem;
  --font-size-sm: 0.85rem;
  --font-size-xsm: 0.75rem;

  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;

  --spacing-xs: 5px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
}

.site-header {
  background: var(--dark);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-top {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.brand-sub {
  font-size: var(--font-size-sm);
  color: var(--gray);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: var(--font-size-xsm);
  text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.cart-link {
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
}

.cart-link span {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.user-name {
  color: var(--white);
  font-size: var(--font-size-sm);
}

.logout-btn {
  color: var(--cyan);
  text-decoration: none;
  font-size: 1.2rem;
}

.btn-auth {
  background: var(--cyan);
  border: none;
  padding: var(--spacing-xs) var(--spacing-md);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.btn-auth:hover {
  background: var(--cyan-hover);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
}

.tab-content {
  display: none;
  padding: var(--spacing-xl);
}

.tab-content.active {
  display: block;
}

.modal-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-tabs button {
  width: 50%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: var(--dark);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeIn var(--transition);
  position: relative;
}

.modal-content h2 {
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal .close {
  position: absolute;
  right: -2rem;
  top: -3rem;
  font-size: var(--font-size-xl);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal .close:hover {
  color: var(--cyan-hover);
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content input {
  padding: 0.75rem 1rem;
  font-size: var(--font-size-md);
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.modal-content input:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 111, 163, 0.2);
}

.btn {
  align-items: center;
  text-decoration: none;
  transition: .2s;
  border: 0;
  font-family: var(--font-main);
}

.btn:hover {
  background-color: var(--cyan-hover);
}

.btn-submit {
  background: var(--cyan);
  color: var(--light);
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--cyan-hover);
  color: var(--dark);
}

.btn.primary {
  background: var(--cyan);
  color: var(--dark);
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  padding: 20px;
}

.btn-blue:hover {
  background-color: var(--blue-hover) !important;
}

.btn-cyan {
  background: var(--cyan);
  color: #000;
  font-size: 16px;
  padding: 20px;
  text-transform: uppercase;
}

.btn-cyan:hover {
  background: var(--cyan-hover);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media(max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: var(--dark);
    padding: 12px;
    position: absolute;
    top: 60px;
    right: 10px;
    border-radius: 10px;
  }

  .hamburger {
    display: block;
    font-size: 1.6rem;
  }
}


/* =====================
   Hero Section
   ===================== */
.hero {
  position: relative;
  background: rgba(13, 13, 51, 0.8);
  backdrop-filter: blur(8px);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
  margin-top: 70px;
}

.img.video {
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 48, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  text-align: left;
  width: 100%;
}

.hero h1 {
  background: linear-gradient(to right, var(--cyan) 30%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: clamp(36px, 7vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero .date {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.hero .location {
  margin-top: var(--spacing-xs);
  font-size: var(--font-size-md);
  color: var(--gray);
}

.hero-buttons {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-start;
}

.hero__carousel {
  position: absolute;
  z-index: 1;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 8px 0 0;
  background: radial-gradient(54.87% 69.84% at 50% 43.19%, rgba(13, 13, 51, 0) 0%, rgba(13, 13, 51, 0.5) 43%, #0d0d33 84.88%);
  backdrop-filter: blur(4px);
  bottom: 0px;
  width: 100%;
}

.banner-logo__wraper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* =====================  
   Counter Section  
   ===================== */
.counter-section {
  text-align: center;
  background-image: url('/assets/img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.counter-section .bg-overlay {
  padding: 6rem var(--spacing-lg);
  background: radial-gradient(54.87% 69.84% at 50% 43.19%, rgba(13, 13, 51, 0) 0%, rgba(13, 13, 51, 0.5) 43%, #0d0d33 84.88%);
}

.counter-section p {
  font-size: var(--font-size-md);
  margin: 0 auto 20px;
}


.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.counter-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: var(--spacing-md);
}

.counter-label {
  font-size: var(--font-size-sm);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.expect-section {
  text-align: center;
  background-image: url('/assets/img/bg-gradient-stat.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.branding-text h2 {
  font-size: 56px;
  text-align: left;
  color: white;
  text-transform: uppercase;
}

.branding-text .branding-heading {
  background: var(--cyan);
  width: fit-content;
  padding: 0 20px;
  color: black !important;
  margin-bottom: 48px;
}

.expect-section .counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: none;
}

.expect-section .counter-box {
  text-align: left;
  border: 2px solid var(--cyan);
  padding: 35px;
}


.expect-section .counter-label {
  font-size: 1.2rem;
  font-weight: 900;
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00a676, #0a4d68);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-header p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.about-card {
  background: #141a2b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-card-content {
  padding: 20px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #00a676;
}

.about-card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.about-btn {
  margin-top: 40px;
}

.about-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
}

.about-carousel {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.about-card {
  position: relative;
  flex: 0 0 500px;
  border-radius: 12px;
  overflow: hidden;
}

.about-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Overlay Effect */
.about-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  transition: bottom 1s ease-in-out;
  text-align: left;
  pointer-events: none;
  color: #fff;
  border-bottom: 4px solid #00deba;
  background-color: #191961ad;
  transition: height 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card .overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cyan);
}

.about-card .overlay p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card:hover .overlay {
  height: 100%;
}

.about-card:hover .overlay p {
  opacity: 1;
}







.why-premium {
  background: radial-gradient(circle at top left, #0d0d33 0%, #0a0f1c 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-text h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}

.why-text h2 span {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-text p {
  margin: 1.5rem 0 2rem;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.6;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.feature-card .icon {
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-card {
    flex: 1 1 260px;
  }
}




/* Featured Products Section */
.featured-products-section {
  background: var(--dark);
  padding: 6rem 2rem;
  color: var(--white);
  position: relative;
}


.product-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

/* Overlay */
.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2.5rem;
  background: rgba(13, 13, 51, 0.8);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: transform 0.4s ease;
  transform: translateY(100%);
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--cyan);
}

.product-overlay p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-actions .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

/* Owl Carousel tweaks */
.product-carousel .owl-nav button {
  background: var(--cyan);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #000;
  transition: 0.3s;
}

.product-carousel .owl-nav button:hover {
  background: var(--blue);
  color: #fff;
}

.product-carousel .owl-dots .owl-dot span {
  background: #555;
  transition: 0.3s;
}

.product-carousel .owl-dots .owl-dot.active span {
  background: var(--cyan);
}


/* Auto sliding carousel */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-320px);
  }

  55% {
    transform: translateX(-320px);
  }

  60% {
    transform: translateX(-640px);
  }

  85% {
    transform: translateX(-640px);
  }

  90% {
    transform: translateX(-960px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-carousel {
    animation: none;
    /* disable auto-slide for mobile */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .about-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* --- Cart Table Modern --- */
.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-bottom: 30px;
}

.cart-table thead {
  background: var(--brand);
  color: #fff;
  text-align: left;
}

.cart-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-table tbody tr {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.cart-table tbody tr:hover {
  transform: translateY(-4px);
}

.cart-table td {
  padding: 16px;
  vertical-align: middle;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text);
}

.cart-table td:first-child {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-table td img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

/* Quantity wrapper */


.qty-control button {
  background: var(--cyan);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-control button:hover {
  background: var(--brand-2);
}

.cart-table input[type="number"] {
  width: 60px;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  transition: 0.2s;
}

.cart-table input[type="number"]:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 2px rgba(0, 151, 178, 0.2);
}

/* Remove button */
.cart-table .remove-btn {
  background: #e63946;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease;
}

.cart-table .remove-btn:hover {
  background: #b91c1c;
}

/* Total Section */
.cart-total {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 20px;
  color: var(--dark);
}

.cart-total strong {
  color: var(--brand-2);
}

.btn-primary.checkout-btn {
  margin-top: 12px;
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

#cartCount {
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 20px;
  text-align: center;
}

.btn-auth {
  background: var(--brand-2);
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
}

.btn-auth:hover {
  background: var(--accent-2);
}

.cart-link {
  position: relative;
  margin-right: 1rem;
  text-decoration: none;
  color: inherit;
}

#cartCount {
  background: #e63946;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 20px;
  text-align: center;
}


/* --- CTA Buttons --- */
.cta-panel {
  background-image: url('/assets/img/bg-gradient-stat.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}



/* --- Badges --- */
.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.badges span:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}


/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .badges {
    flex-direction: column;
  }
}


.cart-count {
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  margin-left: 4px;
  vertical-align: top;
}

/* --- Sections --- */
.section {
  padding: 40px 0
}

.section.alt {
  background: linear-gradient(180deg, #f3f6fb, #eef3fb)
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #003a63;
  margin-bottom: 18px;
  font-size: 1.8rem
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.fade-up {
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.delay-1 {
  transition-delay: 0.2s;
}

.fade-up.delay-2 {
  transition-delay: 0.4s;
}

.fade-up.delay-3 {
  transition-delay: 0.6s;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* =====================
   Testimonial Section
   ===================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.owl-item.active {
  opacity: 1;
}

.owl-item.cloned.active {
  opacity: 0.5;
}

.testimonials {
  background: #0a0e2b;
  color: #fff;
  padding: 5rem 0;
  position: relative;
}

.testimonials .section-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #fff;
  line-height: 1.3;
}

.testimonials .section-title span {
  background: #00ffd1;
  color: #000;
  padding: 0 8px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(93, 39, 232, 0.95), rgba(35, 18, 94, 0.95));
  border-radius: 10px;
  padding: 2rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.owl-stage-outer {
  padding: 40px 0;
}

.testimonial-card::before {
  position: absolute;
  z-index: -1;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 96%;
  content: "";
  opacity: 0.5;
  border: 1px solid #00deba;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  color: #fff;
}

.testimonial-header p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #f2f2f2;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.owl-carousel .owl-nav button {
  background: transparent;
  border: 2px solid #00ffd1;
  color: #00ffd1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: #00ffd1;
  color: #000;
}

.owl-carousel .owl-dots {
  margin-top: 20px;
}

/* --- General Sections --- */
.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #003a63;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--brand);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* --- Cards & Grid (Why Choose Us) --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card.feature {
  text-align: center;
}

.card .icon {
  font-size: 38px;
  color: var(--brand-2);
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #003a63;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* --- About Us --- */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.about-list li {
  font-size: 1rem;
  color: #333;
  margin: 8px 0;
}

.about-list i {
  color: var(--brand-2);
  margin-right: 8px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-img {
    order: -1;
  }
}

/* --- Products --- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px
}

.product-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: .25s
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(16, 24, 40, .12)
}

.product-body {
  padding: 14px;
  text-align: center
}


.product-card:hover img {
  transform: scale(1.08);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(16, 24, 40, 0.16);
}


.product-body h4 {
  color: #003a63;
  margin-bottom: 6px
}

.product-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* default: show 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  transition: all 0.3s ease;
}

.product-body p.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.read-more {
  display: inline-block;
  color: var(--brand-2);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: var(--accent-2);
}

.product-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.price {
  font-weight: 800;
  color: var(--accent-2)
}

/* --- Featured Products Carousel --- */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.product-card img {
  width: 200px !important;
  margin: 0 auto;
  padding: 20px 19px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.product-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003a63;
  margin-bottom: 6px;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
  max-height: 48px;
  overflow: hidden;
}

.product-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-2);
}

/* --- Carousel Dots --- */
.owl-theme .owl-dots {
  margin-top: 24px;
  text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 6px;
  background: #cbd5e1;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--brand-2);
  transform: scale(1.2);
}

/* --- Carousel Arrows --- */
.owl-theme .owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-theme .owl-nav button {
  background: #fff !important;
  color: var(--dark) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.owl-theme .owl-nav button:hover {
  background: var(--brand) !important;
  color: #fff !important;
  transform: scale(1.1);
}



/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 48px 0;
  background: linear-gradient(90deg, #003a63, #005b80);
  color: #fff;
  text-align: left
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 6px
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px
}

form.contact {
  display: grid;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.field {
  display: grid;
  gap: 6px
}

.field label {
  font-weight: 600
}

input[type=text],
input[type=email],
textarea,
select,
input[type="password" i] {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  background: #fbfdff;
}

textarea {
  min-height: 140px;
  resize: vertical
}

.form-status {
  margin-top: 8px;
  font-weight: 600
}

/* --- Two-column helper --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center
}

.rounded {
  border-radius: 100%;
  height: auto;
  box-shadow: var(--shadow)
}

.mb12 {
  margin-bottom: 12px
}

/* --- Toolbar --- */
.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px
}

.toolbar input[type=search] {
  flex: 1;
  min-width: 220px
}


.footer {
  text-align: left;
  background-image: url(/assets/img/bg2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  padding: 6rem var(--spacing-lg);
  background: radial-gradient(54.87% 69.84% at 50% 43.19%, rgba(13, 13, 51, 0.8) 50%, rgba(13, 13, 51, 0.5) 43%, #0d0d33 84.88%);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer h2.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00a676;
}

.footer h2.footer-logo span {
  color: #fff;
}

.footer h3 {
  margin-bottom: 10px;
  color: #00ffcc;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00a676;
}

.footer-top,
.footer-license {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-activities {
  margin: 20px 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- WhatsApp --- */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .18);
  text-decoration: none;
  font-size: 24px;
  z-index: 60
}

.whatsapp:hover {
  transform: translateY(-3px)
}

/* --- Reveal on scroll --- */
.reveal {
  /* opacity: 0; */
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.revealed {
  opacity: 1;
  transform: none
}

/* --- Scroll indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  opacity: .85;
  text-decoration: none
}

  .mobile-menu{
    display: none;
  }

/* --- Responsive --- */
@media (max-width: 920px) {
  .two-col {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: #003a63;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%
  }

  .nav-links a {
    text-align: center
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .page-hero {
    padding: 36px 0;
    text-align: center
  }

  .footer {
    grid-template-columns: 1fr
  }
}

/* =========================
   Extra Responsive Tweaks
   ========================= */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .why-container {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    min-height: 70vh;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .why-text h2 {
    font-size: 2rem;
  }

  .counter-number {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .brand-top {
    font-size: 1rem;
  }

  .branding-text h2 {
    font-size: 1.8rem;
  }

  .expect-section .counter-box {
    padding: 20px;
  }

  .product-overlay {
    padding: 1.5rem;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .cart-table td {
    text-align: left;
    width: 100%;
  }
}

/* =========================
   Extra Responsive Tweaks
   ========================= */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .why-container {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    max-width: 90%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-card {
    flex: 1 1 45%;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .hero__carousel {
    padding: 20px 0;
  }

  .cta-panel .container{
    flex-direction: column !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: var(--dark);
    padding: var(--spacing-md);
    position: absolute;
    top: 60px;
    border-radius: 8px;
    width: 100%;
    min-height: 40vh;
    justify-content: space-evenly;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .cart-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    display: block;
    margin-bottom: 20px;
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .heading{
    display: flex;
    flex-direction: column;
  }
   .hero .heading span{
    margin-bottom: 10px;
    font-size: 0.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .brand-top {
    font-size: 1rem;
  }

  .branding-text h2 {
    font-size: 1.6rem;
  }

  .expect-section .counter-box {
    padding: 15px;
  }

  .product-overlay {
    padding: 1rem;
  }

  .product-overlay h4 {
    font-size: 1rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 8px;
  }

  .cart-table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .cart-table td {
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 400px) {

  .mobile-menu{
    display: block;
    text-align: center;
  }

  .mobile-menu i{
    font-size: 20px;
  }

  .desktop-menu{
    display: none;
  }

  .hero {
    padding: var(--spacing-md);
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
  }

  .brand-top {
    font-size: 0.9rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .feature-card {
    flex: 1 1 100%;
    padding: 1rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.9rem;
  }

  .cart-table td {
    font-size: 0.85rem;
    padding: 8px;
  }

  .footer {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 20px 10px;
  }
}