@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --blue-900: #03045E;
  --blue-800: #023E8A;
  --blue-700: #0077B6;
  --blue-600: #0096C7;
  --blue-500: #00B4D8;
  --blue-400: #48CAE4;
  --blue-300: #90E0EF;
  --blue-200: #ADE8F4;
  --blue-100: #CAF0F8;

  /* Gradient Stop Specific Colors */
  --gradient-1-stop-44: #0238A5;
  --gradient-1-stop-100: #0079FF;

  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--blue-900) 0%, var(--gradient-1-stop-44) 44%, var(--gradient-1-stop-100) 100%);
  --gradient-2: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-900) 100%);

  /* Semantic Theme Mappings */
  --primary-cyan: var(--blue-500);            /* #00B4D8 */
  --primary-cyan-hover: var(--blue-600);      /* #0096C7 */
  --dark-indigo: var(--blue-900);             /* #03045E */
  --dark-indigo-hover: var(--blue-800);       /* #023E8A */
  --sky-blue-light: var(--blue-100);          /* #CAF0F8 */
  --navy-dark: var(--blue-900);               /* #03045E */
  --navy-darker: var(--blue-900);             /* #03045E */
  --text-dark: var(--blue-900);               /* #03045E */
  --text-muted: var(--blue-700);              /* #0077B6 */
  --white: #ffffff;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--blue-200); /* Home page background color #ADE8F4 */
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR STYLING */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.navbar {
  background-color: var(--blue-400); /* Matching screenshot background color (#48CAE4) */
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}



.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link svg {
  transition: var(--transition);
}

.nav-link:hover svg {
  transform: translateY(2px);
}

.nav-link:hover {
  color: var(--dark-indigo);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
}

.dropdown-item:hover {
  background-color: var(--sky-blue-light);
  color: var(--dark-indigo);
}

/* Search Bar */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  background-color: var(--white);
  border: 1.5px solid var(--blue-700); /* Blue border from screenshot */
  border-radius: 20px;
  padding: 8px 16px 8px 36px;
  font-size: 14px;
  font-family: var(--font-body);
  width: 200px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  width: 250px;
  border-color: var(--blue-900);
  box-shadow: 0 0 0 3px rgba(8, 0, 102, 0.15);
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--blue-700); /* Matching search icon color with border */
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  background-color: var(--blue-200); /* Solid background color (#ADE8F4) from screenshot */
  padding: 140px 0 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero-container {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr; /* Image column wider to make the image bigger */
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding-left: calc((100vw - 1200px) / 2 + 24px);
  padding-right: 0;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .hero-container {
    padding-left: 24px;
    padding-right: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Prevents children like buttons from stretching to full width */
  padding-bottom: 60px; /* Balanced spacing at the bottom of the text column */
}

.hero-content h1 {
  font-size: 56px;
  color: var(--dark-indigo);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--dark-indigo);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(3, 4, 94, 0.4); /* Prominent shadow in idle state from screenshot */
}

.btn-primary:hover {
  background-color: var(--dark-indigo-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(3, 4, 94, 0.5);
}

.hero-image-wrapper {
  position: relative;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: -32px; /* Shift image down to the bottom edge */
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background-color: var(--navy-dark); /* Dark navy background (#03045E) from figma screenshot */
}

.section-title {
  font-size: 40px;
  color: var(--white); /* White text from screenshot */
  text-align: center;
  margin-bottom: 24px;
}

/* CATEGORY & SUB-CATEGORY FILTER BARS */
.category-filter-wrapper {
  display: none !important;
}

.category-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(72, 202, 228, 0.4);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.category-pill:hover {
  background: rgba(72, 202, 228, 0.25);
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
}

.category-pill.active {
  background: var(--blue-400); /* Cyan highlight matching floating navbar */
  color: var(--dark-indigo);
  border-color: var(--blue-400);
  box-shadow: 0 4px 15px rgba(72, 202, 228, 0.4);
  font-weight: 700;
}

.subcategory-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 0 10px;
}

.subcategory-pill {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.subcategory-pill:hover {
  border-color: var(--white);
  color: var(--white);
}

.subcategory-pill.active {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
  font-weight: 700;
}

/* PRODUCT CARD BADGES */
.product-card-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--dark-indigo);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.btn-back-categories {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--dark-indigo);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(3, 4, 94, 0.3);
}

.btn-back-categories:hover {
  background-color: var(--primary-cyan);
  color: var(--dark-indigo);
  transform: translateX(-4px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--blue-100); /* Match the bottom half background */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3), 0 0 15px rgba(0, 180, 216, 0.15); /* Glowing cyan/blue shadow */
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5), 0 0 25px rgba(0, 180, 216, 0.3); /* Stronger glow on hover */
  border-color: var(--primary-cyan);
}

.service-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-info {
  padding: 24px;
  background-color: var(--blue-100); /* Light blue background (#CAF0F8) for info section from screenshot */
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 22px;
  color: var(--dark-indigo);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-dark); /* Dark text for contrast against light blue background */
  opacity: 0.85;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-outline {
  align-self: center;
  border: 2px solid var(--dark-indigo);
  background-color: transparent;
  color: var(--dark-indigo);
  padding: 8px 24px;
  font-size: 14px;
}

.btn-outline:hover {
  background-color: var(--dark-indigo);
  color: var(--white);
}

/* Specific solid dark buttons for services cards as seen in Figma screenshot */
.service-card .btn-outline {
  background-color: var(--dark-indigo);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(3, 4, 94, 0.3);
}

.service-card .btn-outline:hover {
  background-color: var(--dark-indigo-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 4, 94, 0.4);
}

/* ABOUT SECTION */
.about {
  padding: 100px 0;
  background-color: var(--blue-200); /* Same light-blue background */
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-title {
  font-size: 20px;
  color: var(--primary-cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-heading {
  font-size: 36px;
  color: var(--dark-indigo);
  margin-bottom: 24px;
}

.about-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* STATS BANNER SECTION */
.stats-banner {
  width: 100%;
  background: url('assets/about-logistics.png') no-repeat center center / cover;
  padding: 100px 0 140px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 35px rgba(0, 180, 216, 0.25), 0 0 15px rgba(0, 180, 216, 0.15); /* Glowing cyan/blue drop shadow */
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 180, 216, 0.4), 0 0 25px rgba(0, 180, 216, 0.25);
}

.stat-card-staggered {
  transform: translateY(45px); /* Shifting the center card down as seen in screenshot */
}

.stat-card-staggered:hover {
  transform: translateY(38px);
}

.stat-card-icon-wrapper {
  width: 68px;
  height: 68px;
  background-color: var(--blue-700); /* Cyan background wrapper for icons */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.stat-card-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-900); /* Dark blue number */
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.stat-card-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-600); /* Light blue text */
  text-align: center;
  font-family: var(--font-body);
}

/* INTRODUCING WORK */
.intro {
  padding: 100px 0;
  background-color: var(--white);
}

.intro-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.intro-title {
  font-size: 38px;
  color: var(--primary-cyan);
  margin-bottom: 20px;
}

.intro-subtitle {
  font-size: 24px;
  color: var(--dark-indigo);
  margin-bottom: 24px;
}

.intro-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* TEAM SECTION */
.team {
  background: var(--gradient-1);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.team-title {
  font-size: 48px;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 24px;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 0 20px rgba(78, 194, 224, 0.15);
  border: 1px solid rgba(78, 194, 224, 0.1);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 35px rgba(78, 194, 224, 0.45);
  border-color: var(--primary-cyan);
}

.team-avatar-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-cyan);
  box-shadow: 0 0 20px rgba(78, 194, 224, 0.4);
}

.team-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(78, 194, 224, 0.1);
  color: var(--dark-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-social-link:hover {
  background-color: var(--dark-indigo);
  color: var(--white);
  transform: scale(1.1);
}

/* CLIENTS SECTION */
.clients {
  background: linear-gradient(rgba(3, 4, 94, 0.45), rgba(2, 62, 138, 0.45)), url('assets/client-bg.png') no-repeat center center / cover; /* Thumbs up illustration background with subtle dark overlay */
  color: var(--white);
  padding: 100px 0 0 0; /* Updated: no bottom padding inside the section */
  text-align: center;
  position: relative;
}

.clients-title {
  font-size: 54px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.clients-title .title-text {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.clients-title .title-text::after {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 90%;
  height: 8px;
  background-color: #ffb703; /* Yellow curve line from screenshot */
  border-radius: 50%;
}

.clients-title .star-left,
.clients-title .star-right {
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: -10px;
}

.clients-title .star-left {
  left: -40px;
}

.clients-title .star-right {
  right: -40px;
}

.clients-stats-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.client-stat-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 480px;
  font-family: var(--font-heading);
  gap: 24px;
}

.client-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-cyan); /* Cyan numbers */
  min-width: 120px;
  text-align: right;
  line-height: 1;
}

.client-stat-label {
  font-size: 36px;
  font-weight: 700;
  color: var(--white); /* White labels */
  text-align: left;
  line-height: 1.2;
}

.clients-ticker {
  background-color: var(--white);
  padding: 24px 0;
  width: 100%;
  margin-top: 60px;
  border-top: 2px solid #ffb703; /* Yellow line at the top border from screenshot */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.clients-ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollTicker 18s linear infinite;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves exactly half the width of the double-length track for seamless loop */
  }
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}



/* CERTIFICATION PAGE */
.certification-page {
  padding: 180px 0 100px 0;
  background-color: var(--blue-200); /* Same light-blue background */
  min-height: 80vh;
}

.cert-heading {
  font-size: 48px;
  color: var(--dark-indigo);
  text-align: center;
  margin-bottom: 60px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.cert-card {
  background-color: var(--blue-100);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cert-img-wrapper {
  background-color: var(--white);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-field {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-indigo);
}

.cert-field span {
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 8px;
}

/* ABOUT PAGE (BEST PRODUCT) */
.about-page-wrapper {
  padding: 180px 0 100px 0;
  background-color: var(--blue-200); /* Same light-blue background */
  position: relative;
  min-height: 85vh;
}

.about-page-heading {
  font-size: 44px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.about-page-heading span {
  color: var(--dark-indigo);
  border-bottom: 4px solid var(--primary-cyan);
  padding-bottom: 6px;
}

.about-showcase-card {
  background: var(--gradient-2);
  border-radius: 24px;
  padding: 60px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-showcase-text {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}

.about-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

/* CONTACT PAGE (GET IN TOUCH) */
/* CONTACT PAGE (GET IN TOUCH FIGMA-PERFECT STYLE) */
.contact-page {
  padding: 160px 0 80px 0;
  background: linear-gradient(to right, #02043a 0%, #003fa9 60%, #ffffff 60%, #ffffff 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.contact-left {
  padding-right: 20px;
}

.contact-title {
  font-size: 48px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.contact-title span {
  color: #00b4d8;
}

.contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  max-width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  background-color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #a0aec0;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.btn-contact-submit {
  background-color: #00b4d8;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
}

.btn-contact-submit:hover {
  background-color: #0077b6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.45);
}

.social-circles-container {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-circle:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.map-container-mock {
  background-color: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 490px;
}

.map-container-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Bottom white cards styling */
.contact-bottom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-bottom-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(3, 4, 94, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-bottom-card:hover {
  transform: translateY(-5px);
}

.contact-bottom-icon {
  color: #02043a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bottom-text {
  font-size: 15px;
  color: var(--navy-dark);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .contact-page {
    background: #02043a;
    padding: 120px 0 60px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-left {
    padding-right: 0;
  }
  
  .map-container-mock {
    height: 350px;
  }
  
  .contact-bottom-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* FOOTER SECTION */
.footer {
  background-color: var(--navy-darker);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--primary-cyan);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-link:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  flex-grow: 1;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary-cyan);
}

.newsletter-btn {
  background-color: var(--primary-cyan);
  color: var(--navy-darker);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--primary-cyan-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link:hover {
  color: var(--primary-cyan);
}

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--navy-dark);
  color: var(--white);
  z-index: 2001;
  padding: 40px 24px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 28px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
}

.mobile-nav-link:hover {
  color: var(--primary-cyan);
}

.mobile-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-top: 12px;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  border-left: 2px solid var(--primary-cyan);
}

.mobile-submenu.active {
  display: flex;
}

/* KEYFRAMES */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}





/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 20px;
  }
  .nav-links, .search-wrapper {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 140px 0 0 0; /* Remove bottom padding on mobile */
    min-height: auto;
    display: block;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
    display: grid;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-content {
    display: block;
    padding-bottom: 0; /* Remove vertical spacing offset on mobile */
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-image-wrapper {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .about-container, .intro-container, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-banner {
    padding: 60px 0 60px 0;
  }
  .stats-banner-container {
    gap: 32px;
  }
  .stat-card-staggered {
    transform: none;
  }
  .stat-card-staggered:hover {
    transform: translateY(-5px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-showcase-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .clients-ticker {
    padding: 16px 0;
    margin-top: 40px;
  }
  .clients-ticker-track {
    gap: 36px;
  }
  .client-logo-img {
    height: 38px;
  }
}

@media (max-width: 500px) {
  .clients-title {
    font-size: 38px;
  }
  .clients-title .star-left {
    left: -25px;
    font-size: 16px;
  }
  .clients-title .star-right {
    right: -25px;
    font-size: 16px;
  }
  .client-stat-row {
    gap: 16px;
    max-width: 320px;
  }
  .client-stat-num {
    font-size: 32px;
    min-width: 80px;
  }
  .client-stat-label {
    font-size: 24px;
  }
}

/* PRODUCT DETAILS MODAL */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-modal.active {
  display: flex;
}

.product-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 94, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal.active .modal-overlay {
  opacity: 1;
}

.product-modal .modal-content {
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 920px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(3, 4, 94, 0.3);
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  max-height: 90vh;
  overflow-y: auto;
}

.product-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.product-modal .modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.product-modal .modal-back-btn {
  background-color: #03045E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(3, 4, 94, 0.3);
  transition: all 0.2s ease;
}

.product-modal .modal-back-btn:hover {
  background-color: #023e8a;
  transform: translateY(-1px);
}

.product-modal .modal-back-btn svg {
  transition: transform 0.2s ease;
}

.product-modal .modal-back-btn:hover svg {
  transform: translateX(-2px);
}

.product-modal .modal-header-title {
  font-size: 24px;
  font-weight: 700;
  color: #03045E;
  font-family: 'Outfit', sans-serif;
}

.product-modal .modal-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.product-modal .modal-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-modal .modal-img-container {
  background-color: #CAF0F8;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0, 180, 216, 0.05);
}

.product-modal .modal-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(3, 4, 94, 0.15);
}

.product-modal .modal-product-name {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #03045E;
  font-family: 'Outfit', sans-serif;
}

.product-modal .modal-right {
  width: 100%;
}

.product-modal .modal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid #7fd3e0;
  border-radius: 12px;
  overflow: hidden;
}

.product-modal .modal-table tr:nth-child(odd) {
  background-color: #dff5f8;
}

.product-modal .modal-table tr:nth-child(even) {
  background-color: #bcebf2;
}

.product-modal .modal-table td {
  padding: 14px 20px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid #7fd3e0;
}

.product-modal .modal-table tr:last-child td {
  border-bottom: none;
}

.product-modal .modal-table td:first-child {
  width: 40%;
  font-weight: 800;
  color: #03045E;
  letter-spacing: 0.5px;
  border-right: 1px solid #7fd3e0;
  text-transform: uppercase;
}

.product-modal .modal-table td:last-child {
  width: 60%;
  color: #023e8a;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-modal-inquire {
  flex: 1;
  background-color: #00b4d8;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-modal-inquire:hover {
  background-color: #0077b6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.45);
}

/* Modal Responsive Overrides */
@media (max-width: 768px) {
  .product-modal .modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .product-modal .modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-modal .modal-img-container {
    padding: 20px;
    max-width: 320px;
  }
  
  .product-modal .modal-table td {
    padding: 10px 14px;
    font-size: 13px;
  }
}
