@font-face {
  font-family: "Neotex";
  src: url("../assets/fonts/Vogue.ttf") format("truetype");
}

.neotex-font {
  font-family: "Neotex", sans-serif;
  font-size: 2rem;
}

/* Hero Section Adjustment */
#heroCarousel {
  position: relative;
  z-index: 1;
}

.carousel-item img {
  height: 70vh;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.info-section {
  /* font-family: "Montserrat", sans-serif; */
  font-size: 1.2rem;
}

/* Headings */
.section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffbb33;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #24387A;
}

/* Card Styling */
.card.static-card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Partners Carousel Specific Styling */
.partners-carousel {
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa;
}

.partners-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.partners-track img {
  width: 150px;
  height: auto;
  max-height: 100px;
  margin: 0 20px;
  object-fit: contain;
  filter: grayscale(50%);
}

.partners-track img:hover {
  filter: grayscale(0);
}

/* Navbar Styling */
.navbar {
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #24387a;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-text {
  color: #fff;
  font-size: 1.2rem;
}

.brand-text small {
  display: block;
  margin-right: 10px;
  font-size: 0.8rem;
  color: #bbb;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 15px;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffbb33 !important;
}

.nav-link.active {
  color: #ffbb33 !important;
}

.language-selector {
  border: none;
  background: transparent;
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
  padding: 0;
}

.language-selector:focus {
  outline: none;
  box-shadow: none;
}

/* Services Section Styling */
.services-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
}

.text-muted {
  font-size: 1.1rem !important;
  /* bigger font */
}

.service-item {
  padding: 15px;
  text-align: center;
}

.service-item i {
  display: block;
  margin: 0 auto 10px;
  font-size: 2rem;
  color: #ffbb33;
}

.service-item h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.btn-primary-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d72638;
  color: #fff;
  text-decoration: none;
}

.btn-primary-cta:hover {
  background-color: #d72638;
  text-decoration: underline;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-important-cta {
  font-family: "Montserrat", sans-serif;
  background-color: #ffbb33;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-important-cta:hover {
  background-color: #ffbb33;
  text-decoration: underline;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #e0a800;
  color: #fff;
}

/* Footer Link Styling */
footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ffbb33;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* Same-Day Service Section Styling */
.same-day-service {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffbb33;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.2rem;
}

.step p {
  font-size: 1rem;
  color: #333;
}

.quote-form .form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
}

.quote-form .form-label {
  font-weight: 500;
  color: #333;
  font-size: 1.1rem;
}

.same-day-service ul {
  list-style: none;
  padding-left: 0;
}

.same-day-service ul li {
  margin-bottom: 0.5rem;
  color: #333;
}

.same-day-service ul li i {
  margin-right: 0.5rem;
  color: #ffbb33;
}


/* Values Section Styling */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #ffbb33;
}

.card i {
  transition: transform 0.3s ease;
}

.card:hover i {
  transform: scale(1.1);
}

/* Contact Section Styling */
.contact-title {
  margin-bottom: 0px;
  font-size: 1rem;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card h4 {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  color: #666;
  font-size: 1rem;
}

.card a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #ffbb33;
}

/* Form Styling */
#contactForm .form-label {
  font-weight: 500;
  color: #333;
}

#contactForm .form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}

#contactForm .form-control:focus {
  border-color: #ffbb33;
  box-shadow: 0 0 5px rgba(255, 187, 51, 0.5);
}

#contactForm .btn-warning {
  background-color: #ffbb33;
  border: none;
  transition: background-color 0.3s ease;
}

#contactForm .btn-warning:hover {
  background-color: #e0a800;
}

/* Clients Section Styling */
#clients {
  padding: 40px 0;
  background-color: #f8f9fa;
}

#clients h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4444;
  text-transform: uppercase;
  margin-bottom: 0;
}

#clients h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 0;
}

.client-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  box-shadow: none !important;
}

.client-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.client-card h4 {
  position: relative;
  z-index: 1;
  margin-top: 150px;
}

.client-card .overlay {
  z-index: 0;
}

/* Features Section Styling */
#features {
  position: relative;
  z-index: 2;
  background-color: transparent;
}

.feature-container {
  padding-top: 10px;
  padding-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.row.g-0 {
  margin-left: 0;
}

.feature-card {
  width: 45%;
  max-width: 250px;
  height: auto;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  background-color: #fff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: #ffbb33;
  margin-bottom: 10px;
}

.feature-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}


.feature-card p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  padding: 0 5px;
}

/* Catalog Preview Styling */
#catalog-preview {
  padding: 50px 0;
  background-color: #f5f7fa;
}

#catalog-preview .card {
  height: 500px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

#catalog-preview .card-img-top {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background-color: #fff;
}

#catalog-preview .card-body {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nav-link {
    margin: 5px 0;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  #features {
    top: -30px;
  }

  .feature-container {
    flex-direction: column;
    /* Stack cards vertically */
    align-items: center;
    /* Center cards */
    padding: 0 10px;
  }

  .feature-card {
    width: 100%;
    /* Full width for each card */
    max-width: 300px;
    /* Consistent max width */
    margin: 15px 0;
    /* Vertical spacing */
    height: auto;
    /* Adjust height based on content */
  }

  .feature-card img {
    width: 50px;
    /* Adjust icon size for mobile */
    height: 50px;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

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

  .hero-section .lead {
    font-size: 1.2rem;
  }

  .card h4 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  #contactForm .col-md-6 {
    width: 100%;
  }

  #clients h2 {
    font-size: 1.5rem;
  }

  #clients h3 {
    font-size: 1.2rem;
  }

  .client-card {
    height: 150px;
  }

  .client-card h4 {
    font-size: 1rem;
    margin-top: 100px;
  }

  #catalog-preview .card {
    height: auto;
    margin-bottom: 15px;
    max-width: 300px;
  }

  #catalog-preview .row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 10px;
  }

  #catalog-preview .col-md-4 {
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
  }

  #catalog-preview .card-img-top {
    height: 200px;
    object-fit: contain;
  }

  #catalog-preview .card-body {
    padding: 10px;
  }

  #catalog-preview .card-title {
    font-size: 1.1rem;
  }

  #catalog-preview .card-text {
    font-size: 0.9rem;
  }

  #catalog-preview {
    padding-bottom: 10px;
  }

  .text-center.mt-4 {
    margin-top: 5px;
  }

  .btn-primary-cta,
  .btn-important-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  #heroCarousel {
    display: none;
  }

  .same-day-service {
    margin-top: 30px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .partners-track img {
    width: 100px;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 1.3rem;
  }

  .client-card {
    height: 120px;
  }

  .client-card h4 {
    font-size: 0.9rem;
    margin-top: 80px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card img {
    width: 40px;
    height: 40px;
  }

  .feature-card h4 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  #catalog-preview .card-img-top {
    height: 150px;
  }

  #catalog-preview .card-title {
    font-size: 1rem;
  }

  #catalog-preview .card-text {
    font-size: 0.85rem;
  }

  #catalog-preview {
    padding-bottom: 5px;
  }

  .text-center.mt-4 {
    margin-top: 0px;
  }

  .partners-track img {
    width: 80px;
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .partners-track img {
    width: 80px;
    margin: 0 5px;
  }
}

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

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

body {
  overflow-x: hidden;
}

@media (max-width: 767.98px) {

  /* Turn the features row into a 2-column grid on mobile */
  #features .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0.1rem;
    /* less vertical space */
    column-gap: 1rem;
    /* keep horizontal spacing */
    /* padding: 0px; */
    /* spacing between cards */
  }

  /* Ensure each card behaves like a grid item */
  #features .col-md-4 {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
  }

  #features {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    /* optional: remove extra spacing below */
  }
}


@media (max-width: 767.98px) {
  #clients .col-md-3 {
    flex: 0 0 50% !important;
    /* force 2 per row */
    max-width: 50% !important;
  }

  #clients .client-card {
    height: 120px !important;
    /* shrink card height */
  }

  #clients .client-card h4 {
    font-size: 1rem !important;
    /* smaller text */
  }

  #clients,
  #about {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
