@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --steel-blue: #0a192f;
  --primary-blue: #0066ff;
  --light-blue: #e6f0ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-800: #1f2937;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--gray-50);
  color: var(--gray-800);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: white;
  color: var(--gray-800);
  position: fixed;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1500px;
  z-index: 50;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  top: 0rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

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

.logo-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--primary-blue), #0033cc);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon span {
  color: white;
  font-weight: 900;
  font-style: italic;
  font-size: 1.25rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
  padding-right: 0.125rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  margin-top: 0.25rem;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: bold;
  color: var(--gray-800);
  letter-spacing: 0.025em;
}

.logo-text p {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  /* gray-600 */
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0.5rem;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-800);
  cursor: pointer;
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 5.5rem; /* just below the header */
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 95%;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 45;
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.25rem;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--gray-800);
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .header {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .header {
    width: 95%;
  }
  .header-inner {
    padding: 0.75rem 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-btn {
    display: none; /* Hide 'Get a Quote' on tiny screens to save space, or make it smaller */
  }
  .header-right {
    gap: 1rem;
  }
  .logo-text h1 {
    font-size: 16px;
  }
  .logo-text p {
    font-size: 10px;
  }
  .logo-icon {
    width: 2rem;
    height: 2rem;
  }
  .logo-icon span {
    font-size: 1rem;
  }
}

.header-phone {
  display: none;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .header-phone {
    display: flex;
  }
}

.btn-primary:hover {
  background-color: #2563eb;
  /* blue-600 */
}

/* Hero Section */
.hero-section {
  position: relative;
}

.hero-static-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image: url('IMG/banner1.png');
}

.hero-static-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  padding-left: 3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content h1 .text-primary {
  color: var(--primary-blue);
}

.hero-content p {
  font-size: 1.125rem;
  color: #4b5563;
  /* gray-600 */
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-outline-dark {
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  /* gray-700 */
  border: 1px solid #d1d5db;
  /* gray-300 */
  background-color: white;
  text-decoration: none;
  transition: all 0.2s;
}

/* Numeric Pagination */
.hero-numeric-pagination {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.hero-numeric-pagination .page-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  width: 40px;
}

.hero-numeric-pagination .page-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  transition: color 0.3s;
}

.hero-numeric-pagination .page-line {
  height: 3px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  transition: background-color 0.3s, transform 0.3s;
}

.hero-numeric-pagination .page-item.active .page-num {
  color: var(--primary-blue);
}

.hero-numeric-pagination .page-item.active .page-line {
  background-color: var(--primary-blue);
}

.btn-outline-dark {
  display: inline-flex;
  justify-content: center;
}

.btn-outline-dark:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.floating-info-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 20;
}

.floating-info-bar {
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border: none;
  margin: 0 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-item i {
  color: var(--primary-blue);
  font-size: 1.75rem;
}

.info-item span {
  font-size: 1rem;
  /* 14px */
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}

.info-divider {
  width: 1px;
  height: 40px;
  background-color: #e5e7eb;
}

@media (max-width: 1024px) {
  .hero-content {
    padding-left: 1rem;
  }

  .floating-info-bar {
    border-radius: 1rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    justify-content: space-between;
    margin: 0 0.5rem;
  }

  .info-divider {
    display: block;
    height: 25px;
    margin: 0;
  }

  .info-item {
    width: auto;
    gap: 0.25rem;
    flex-direction: column;
    text-align: center;
  }

  .info-item i {
    font-size: 1.25rem;
  }

  .info-item span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .floating-info-bar {
    padding: 0.75rem 0.25rem;
    margin: 0 0.25rem;
    gap: 0.25rem;
  }
  .info-item span {
    font-size: 0.55rem;
  }
  .info-item i {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 1rem;
    padding-right: 70px;
    /* Space for thumbnails */
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .floating-info-wrapper {
    transform: translateY(50%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero Thumbnails */
.hero-thumbnails {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
  pointer-events: auto;
}

.hero-thumb {
  width: 90px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-thumb.active {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.hero-thumb:hover {
  transform: scale(1.05);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.hero-thumb:not(.active) img {
  opacity: 0.7;
}

.hero-thumb:hover:not(.active) img {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-thumbnails {
    right: 0.5rem;
    gap: 0.5rem;
  }

  .hero-thumb {
    width: 60px;
    height: 40px;
    border-width: 2px;
  }

  .hero-numeric-pagination {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero-numeric-pagination .page-item {
    width: 30px;
  }

  .hero-numeric-pagination .page-num {
    font-size: 0.875rem;
  }
}

.cta-bg {
  background-image: url(IMG/banner1.png);
  background-size: cover;
  background-position: center;
}



/* Built for Every Need Section */
.built-for-every-need-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
}

.needs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .needs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.need-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.need-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.need-image-wrapper {
  position: relative;
  height: 160px;
}

.need-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.need-icon {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  transform: translateY(50%);
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.need-content {
  padding: 2.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.need-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.need-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.learn-more {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.learn-more:hover {
  color: #1d4ed8;
}

/* About Us Section New */
.about-section-new {
  padding: 5rem 0 3rem;
  background-color: white;
  position: relative;
}

.about-container-new {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .about-container-new {
    flex-direction: row;
    gap: 4rem;
  }
}

.about-left-new {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-left-new {
    width: 50%;
    padding-top: 3rem;
  }
}

.about-feature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-text-new {
  flex: 1;
}

.feature-text-new h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.feature-text-new p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.feature-img-new {
  width: 140px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.feature-img-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cards-row {
  display: flex;
  gap: 1.5rem;
}

.about-card-new {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  min-height: 140px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.about-card-new i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.about-card-new p {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 600;
  line-height: 1.4;
}

.about-card-new p span {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}

.about-right-new {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .about-right-new {
    width: 50%;
  }
}

.about-title-new {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .about-title-new {
    font-size: 2.25rem;
  }
}

.about-main-img-new {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  flex-grow: 1;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-main-img-new img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-down-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

@keyframes float-down {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

.about-down-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2d3748;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  animation: float-down 2s ease-in-out infinite;
}

.about-down-btn:hover {
  background-color: var(--primary-blue);
  animation-play-state: paused;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background-color: white;
}

.products-container {
  padding: 0 1rem;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.products-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.text-steel-blue {
  color: #1e293b;
}

.products-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
}

.btn-outline-primary {
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: white;
}

.view-all-btn {
  display: none;
}

@media (min-width: 640px) {
  .view-all-btn {
    display: inline-block;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card {
  border: 1px solid var(--gray-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.product-name {
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  font-size: 1rem;
}

.product-link {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.2s;
  text-decoration: none;
}

.product-card:hover .product-link {
  background-color: #1e293b;
}

/* Sliding Marquee */
.sliding-marquee-banner {
  height: 50px;
  background-color: #030914;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
  width: 100%;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.marquee-content {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.025em;
  flex-shrink: 0;
}

.star-icon {
  color: var(--primary-blue);
  font-size: 1rem;
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Features & Video Section */
.features-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  /* gray-50 */
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .features-container {
    flex-direction: row;
  }
}

.features-text-col,
.features-video-col,
.features-cards-col {
  width: 100%;
}

@media (min-width: 1024px) {

  .features-text-col,
  .features-video-col,
  .features-cards-col {
    width: 33.333333%;
  }
}

.features-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.features-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  margin-bottom: 1rem;
}

.features-desc {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.625;
}

.features-video-col {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.features-video-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}

.features-video-col:hover .features-video-img {
  transform: scale(1.05);
}

.features-video-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-play-btn {
  width: 4rem;
  height: 4rem;
  background-color: white;
  color: var(--primary-blue);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.features-play-btn:hover {
  transform: scale(1.1);
}

.play-icon {
  margin-left: 0.25rem;
}

.features-cards-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-cards-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card-sm {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

.feature-icon-sm {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e0f2fe;
  color: var(--primary-blue);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.feature-card-sm h5 {
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-card-sm p {
  font-size: 1rem;
  color: #6b7280;
  /* gray-500 */
}

/* Stats Banner Section */
.stats-banner-section {
  background-color: white; /* Changed from blue to white to show gap */
  padding: 2rem 1rem; /* Gap on top/bottom and sides */
}

.stats-banner-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width:1800px;
  margin: 0 auto;
  padding: 1rem 1rem;
  background-color: var(--primary-blue); /* Moved blue here */
  color: white;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

@media (min-width: 1024px) {
  .stats-banner-container {
    flex-direction: row;
    gap: 4rem;
    padding: 4rem 5rem;
  }
}

.stats-banner-image {
  flex: 1.5;
  width: 100%;
}

.stats-banner-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-banner-content {
  flex: 1;
}

.stats-banner-subtitle {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.stats-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
  white-space: nowrap;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-banner-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-banner-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.stats-banner-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stats-banner-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: white;
  text-align: center;
}

.testimonials-container {
  padding: 0 1rem;
}

.testimonials-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.testimonials-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: #f9fafb;
  /* gray-50 */
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: left;
  border: 1px solid var(--gray-100);
}

.quote-icon {
  font-size: 1.875rem;
  color: rgba(0, 102, 255, 0.3);
  /* primary-blue/30 */
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  color: #4b5563;
  /* gray-600 */
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
}

.client-name {
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  font-size: 1rem;
}

.client-role {
  font-size: 1rem;
  color: #6b7280;
  /* gray-500 */
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  /* gray-200 */
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  position: absolute;
  z-index: 10;
}

@media (min-width: 768px) {
  .nav-btn {
    position: static;
  }
}

.nav-btn:hover {
  color: var(--primary-blue);
}

.nav-prev {
  left: -1.25rem;
}

.nav-next {
  right: -1.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #d1d5db;
  /* gray-300 */
  border: none;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-blue);
}

/* FAQ & CTA Section */
.faq-cta-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  /* gray-50 */
}

.faq-cta-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .faq-cta-container {
    flex-direction: row;
  }
}

.faq-col,
.cta-col {
  width: 100%;
}

@media (min-width: 1024px) {

  .faq-col,
  .cta-col {
    width: 50%;
  }
}

.faq-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: white;
  border: 1px solid #e5e7eb;
  /* gray-200 */
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--primary-blue);
}

.faq-question {
  font-weight: 500;
  color: var(--text-steel-blue, #1e293b);
  font-size: 1rem;
}

.faq-icon {
  color: var(--primary-blue);
}

.cta-card {
  background-color: #2a3c5a;
  /* steel-blue */
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-card {
    padding: 3rem;
  }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 60, 90, 0.9);
  /* steel-blue/90 */
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 768px) {
  .cta-content {
    width: 66.666667%;
  }
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .cta-content h3 {
    font-size: 1.875rem;
  }
}

.cta-content p {
  color: #d1d5db;
  /* gray-300 */
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--text-steel-blue, #1e293b);
}

/* Footer */
.footer {
  background-color: #0a1122;
  color: #d1d5db;
  /* gray-300 */
  padding: 4rem 0;
  position: relative;
}

.footer-container {
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-blue);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon i {
  color: white;
  font-size: 1rem;
}

.footer-logo h2 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
}

.footer-logo p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.footer-desc {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-blue);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.2s;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: #2563eb;
  /* blue-600 */
}

.footer-socials i {
  font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li i {
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  /* gray-800 */
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links span {
  color: #374151;
  /* gray-700 */
}

.back-to-top {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
  background-color: #2563eb;
  /* blue-600 */
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Active State */
.faq-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  font-size: 1rem;
  color: var(--gray-500);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

/* Industries We Serve Section */
.industries-section {
  padding: 5rem 0;
  background-color: white;
}

.industries-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.industries-subtitle {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.industries-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-steel-blue, #1e293b);
  margin-bottom: 1rem;
}

.industries-desc {
  color: var(--gray-500);
  font-size: 1.125rem;
  line-height: 1.625;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s;
}

.industry-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.industry-name {
  font-weight: 600;
  color: var(--text-steel-blue, #1e293b);
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text h1,
.about-title-new,
.hero-title,
.products-title,
.about-subtitle,
.products-subtitle {
  font-family: "Playfair Display", serif;
}

/* Logo updates */
.site-logo {
  height: 30px;
  width: auto;
  max-width: 100%;
}

.site-logo-footer {
  height: 35px;
  width: auto;
  max-width: 100%;
  margin-bottom: 1rem;
}