html, body{
    overflow-x: hidden;
}

* {
  font-family: poppins, sans-serif;
}

.navbar-nav {
  text-align: center;
}


.navbar-bottom {
  background-color: #142946;
}
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #142946;
}
.sticky-navbar.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-icon-color {
  color: #142946;
  transition: color 0.3s ease;
}

.custom-icon-color:hover {
  color: #0d6efd; /* Bootstrap primary on hover, or change as needed */
}
.custom-icon-color {
  color: #142946;
  font-size: 1.4rem;
  cursor: pointer;
}
.navbar-toggler {
  border-color: white; /* Optional: white border around the button */
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


.navbar-bottom a {
  color: white !important;
  
  font-size: clamp(16px, 1.5vw, 20px);;
}

.navbar-logo {
  width: clamp(80px, 8vw, 150px); /* Min 80px, max 150px, scales with screen width */
  height: auto;
}


.hero-carousel .carousel-item {
  height: 55vh;
  min-height: 500px;
}
.cta-banner {
      background: linear-gradient(135deg, #0dfd49, #6610f2);
      color: #fff;
      padding: 60px 0;
    }
.hero-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
  padding: 60px 20px;
}

.fade-in-down {
  opacity: 0;
  animation: fadeInDown 1.2s ease-out forwards;
  animation-delay: 0.1s;
}

.zoom-in {
  opacity: 0;
  animation: zoomIn 1s ease-in-out forwards;
  animation-delay: 0.3s;
}


.product-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.product-card img {
  object-fit: cover;
  height: 220px;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.industry-card {
  padding: 15px;
  margin: 10px;
  background: #fff;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.industry-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}

.industry-card .card-body {
  padding-top: 12px;
}
.why-choose-us-section {
  background-color: #ffffff;
}

.strength-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* Client Section Styling */
.clients-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.client-slider-wrapper {
  display: flex;
  justify-content: center;
}

.client-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.client-card {
  width: 280px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-card img {
  width: auto;
  max-height: 60px;
  display: block;
  margin: 0 auto 15px;
  object-fit: contain;
}

.client-review {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.client-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}



footer {
  background-color: #142946;
  padding: 60px 40px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}

footer h5 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 15px;
  font-weight: 700;
}

footer a,
footer p {
  font-size: clamp(16px, 1.2vw, 18px);
}

footer a:hover {
  color: #ffffff !important;
}


.address-section p {
  font-size: clamp(14px, 1.1vw, 16px);
  margin-bottom: 12px;
}

  .contact-us-section {
  background-color: #f9f9f9;
}

.contact-us-section p {
  font-size: 15px;
}
.contact-form-section input,
.contact-form-section textarea,
.contact-form-section select {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus,
.contact-form-section select:focus {
  border-bottom: 2px solid #dc3545;
  outline: none;
  box-shadow: none;
}
