/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #0b1320;
  background: #fff;
}

/* Containers */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* App Bar */
.appbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.1) blur(6px);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px dashed #cdd6e1;
}
.appbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 22px;
}
.brand__img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.brand__word {
  font-weight: 800;
}
.nav {
  display: none;
  gap: 24px;
}
.nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px dashed #cdd6e1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 880px) {
  .nav {
    display: inline-flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border-bottom: none;
    box-shadow: none;
  }
}
.nav__link {
  text-decoration: none;
  color: #273043;
  font-weight: 520;
  opacity: 0.85;
  padding: 8px 0;
}
@media (min-width: 880px) {
  .nav__link {
    padding: 0;
  }
}
.nav__link:hover {
  opacity: 1;
}
.nav__link.is-active {
  color: #0b1320;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #0b1320;
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.cta__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3cf47a;
  box-shadow: 0 0 0 3px rgba(60, 244, 122, 0.25);
}
.cta__arrow {
  display: inline-flex;
  transform: translateX(2px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 51;
}
.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0b1320;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 879px) {
  .menu-toggle {
    display: flex;
  }
  .nav {
    display: none;
  }
}
/* Hero */
.page {
  padding: 26px 0 60px;
  background: #fff;
}
.hero__card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: clamp(520px, 62vw, 680px);
  background: #0b0f18;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05) blur(1px);
  transform: scale(1.02);
  transition: background-image 0.3s ease-in-out;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 25% 35%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 85%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4.5vw, 40px) clamp(18px, 4.2vw, 40px);
  color: #fff;
  max-width: 760px;
}
.hero__title {
    margin: 102px 0 68px;
    line-height: 1.05;
    letter-spacing: 1.5px;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 48px);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero__subtitle {
  margin: 14px 0 22px;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.6;
  color: #e9eef8;
  max-width: 720px;
}
.hero__subtitle strong {
  color: #fff;
}
/* Floating chip */
.float-chip {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 22px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #0b1320;
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.float-chip__icons {
  font-size: 22px;
}
.float-chip__text {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* Carousel controls (Hero) */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.banner-nav:hover {
  background: rgba(0, 0, 0, 0.4);
}
.banner-nav.prev {
  left: 14px;
}
.banner-nav.next {
  right: 14px;
}
.banner-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}
.banner-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}
.banner-dots button[aria-selected="true"] {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

/* EVENTS SECTION */
.events {
  padding: 40px 0 80px;
  text-align: center;
}
.events-header {
  margin-bottom: 24px;
}
.events-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #273043;
}
.events-header p {
  color: #6b7486;
  margin: 8px 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  grid-auto-rows: 1fr;
}
.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.event-image {
  width: 100%;
  height: 451px;
  object-fit: cover;
}
.event-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #273043;
}
.event-details p {
  color: #6b7486;
  margin: 0 0 10px;
}
.event-result-btn {
  display: inline-block;
  margin-top: auto;
  padding: 8px 16px;
  background-color: #0b1320;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.2s ease;
}
.event-result-btn:hover {
  background-color: #273043;
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #e0f8e7;
  padding: 60px 0;
}
.why-choose-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-choose-us-header {
  margin-bottom: 40px;
}
.why-choose-us-chip {
  display: inline-block;
  background-color: #a4e4b5;
  color: #2d663b;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why-choose-us .section-title { /* Specificity for this section's title */
  font-size: 38px;
  font-weight: 700;
  color: #0b1320;
  margin: 0;
}
.why-choose-us .section-title + p {
  color: #6b7486;
  margin-top: 10px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 12px 30px rgba(0, 0, 0, 0.12);
}
.service-icon {
  margin-bottom: 12px;
}
.service-icon img {
  width: 40px;
  height: 40px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #273043;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: #6b7486;
  line-height: 1.6;
}
/* Featured Products Section */
.featured-products {
  background-color: #f7f9fd; /* Light background for the section */
  padding: 80px 0;
  text-align: center;
}

.featured-products-header {
  margin-bottom: 50px;
}

.featured-products-chip {
  display: inline-block;
  background-color: #e0e6ef; /* Light grey chip background */
  color: #4b5567; /* Darker text for the chip */
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-products h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b1320;
  margin: 0 auto; /* Center the heading */
  max-width: 800px; /* Limit width for readability */
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 30px; /* Spacing between cards */
  justify-content: center; /* Center items if they don't fill the grid */
}

.product-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px; /* Padding for the title below the image */
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.product-item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    border-radius: 16px 18px 0 0;
    margin-bottom: 29px;
}

.product-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #273043;
  margin: 0;
  padding: 0 15px; /* Add horizontal padding for text */
}

/* General button styles - adjust as needed for other sections */
.btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #4c9b4b;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: #2d7a2d;
}

/* Global Presence Section */
.global-presence {
  padding: 80px 0;
}
.global-presence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .global-presence-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

.global-presence-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.global-presence-chip {
  display: inline-block;
  background-color: #f7f9fd;
  color: #6b7486;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.global-presence-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.global-presence-desc {
  font-size: 16px;
  color: #4b5567;
  line-height: 1.6;
  max-width: 600px;
}

.global-presence-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.global-presence-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.trusted-partner-card {
  background-color: #e0f8e7;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trusted-partner-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.trusted-partner-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.trusted-partner-content p {
  font-size: 14px;
  color: #6b7486;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* Contact Section */
#contact {
  background-color: #0b1320;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.contact-header {
  margin-bottom: 40px;
}
.contact-chip {
  display: inline-block;
  background-color: #fff;
  color: #0b1320;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.contact-header p {
  font-size: 16px;
  color: #e9eef8;
  line-height: 1.6;
  max-width: 720px;
  margin: 10px auto 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  background: #fff;
  color: #0b1320;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7486;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-btn {
  padding: 16px 24px;
  background-color: #3cf47a;
  color: #0b1320;
  font-weight: bold;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
.contact-btn:hover {
  background-color: #2dde6e;
  transform: translateY(-2px);
  box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background-color: #0b1320;
  color: #cdd6e1;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }
  .footer-info {
    grid-column: 1 / 2;
  }
  .footer-social {
    justify-self: end;
    grid-column: 2 / 3;
  }
  .footer-copyright {
    grid-column: 1 / 3;
    text-align: center;
    margin-top: 20px;
  }
}
.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}
.footer .brand__word {
  color: #fff;
}
.contact-details p {
  margin: 0 0 8px;
  font-size: 14px;
}
.contact-icon {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer-social img {
  width: 24px;
  height: 24px;
}
.footer-copyright {
  font-size: 12px;
  opacity: 0.7;
  text-align: center;
}