@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: black; /* Matches with the Hero section */
  transition: background-color 0.5s ease-in-out;
}

.navbar.scrolled {
  background-color: #fff; /* Change on scroll */
  border-bottom: 1px solid #dee2e6;
}

.nav-link {
  color: #fff; /* Initially white */
  transition: color 0.3s ease-in-out;
}

.nav-link:hover {
  color: #007bff;
  font-weight: bold; /* Hover color */
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  color: #fff; /* White text for better contrast */
}

.hero-section .carousel-item {
  height: 100vh;
}

.hero-section .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-section .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  bottom: 20%;
  left: 5%;
  right: 5%;
  text-align: left;
}

.hero-section .carousel-caption h5 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section .carousel-caption p {
  font-size: 1.25rem;
  margin: 20px 0;
}

.hero-section .carousel-caption .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

/* Scroll effect for Navbar */
body.scrolled .navbar {
  background-color: #fff; /* Background on scroll */
}

body.scrolled .nav-link {
  color: #333; /* Text color on scroll */
}

body.scrolled .nav-link:hover {
  color: #007bff;
}


.section {
  padding: 60px 0;
}

.section h2 {
  margin-bottom: 30px;
}

.section p, .section ul, .section img {
  margin-bottom: 20px;
}

.section.bg-light {
  background-color: #f8f9fa;
}

footer {
  background-color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #dee2e6;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}

footer .row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: start;
}

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

footer p {
  margin: 0;
  font-size: 1rem;
}

footer .col-md-3 {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  footer .col-md-3 {
    margin-bottom: 20px;
  }
}

footer form {
  text-align: left;
}

footer form .btn {
  width: 100%;
}


.btn-primary {
  background-color: #D41C1D;
  border-color: #f06161;
}

.btn-primary:hover {
  background-color: #910303;
  border-color: #f06161;
}

.text-pink{
  color: #D51A5E;
}
.text-purple{
  color: #914197;
}
.text-green{
  color: #198255;
}


.navbar {
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
}

.navbar .nav-link {
  color: #333;
  transition: color 0.3s ease-in-out;
}

.navbar .nav-link:hover {
  color: #007bff;
}

.navbar .dropdown-menu {
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item {
  transition: background-color 0.3s ease-in-out;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
}

.form-control:focus {
  box-shadow: none;
  border-color: #007bff;
}

.btn-outline-success {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

#testimonials .card {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 3px #D51A5E solid ;
}

.icon {
  margin-right: 15px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-text {
  margin-bottom: 0;
}

.card-body {
  flex: 1;
}

.highlightText {
  display: inline-block;
  position: relative;
  color: #D41C1D;
  font-weight: bold;
}

.hero-section {
  position: relative;
}

.hero-section .carousel-item {
  height: 100vh;
}

.hero-section .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-section .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}




#about {
  background-color: #f8f9fa;
  padding: 60px 0;
}

#about h2 {
  margin-bottom: 20px;
}

#about p.lead {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

#about ul {
  list-style-type: none;
  padding: 0;
}

#about ul li {
  background: url('assets/checkmark.png') no-repeat left center;
  padding-left: 30px;
  margin-bottom: 10px;
}


.service-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.service-icon {
  font-size: 3rem;
  color: #007bff;
}

.service-card-body {
  padding: 20px;
}

.service-card img {
  height: 200px;
  object-fit: cover;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10px;
}

.service-card-text li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: left;
}

.service-card-text {
  margin-top: 0.5rem;
}

.service-card-text .row {
  display: flex;
  flex-wrap: wrap;
}

.service-card-text p {
  margin-bottom: 0.5rem;
}


.service-card-text i {
  font-size: 1rem; /* Adjust size as needed */
}

.product-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.product-icon {
  font-size: 1.5rem;
  margin: 5px;
  color: #007bff;
}

.product-card-body {
  text-align: center;
  padding: 20px;
}

.product-card img {
  height: 200px;
  object-fit: cover;
}

.product-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10px;
}

.product-card-text {
  font-size: 1rem;
  margin-top: 10px;
}




/* Clients Section */
#clients {
  position: relative;
  overflow: hidden;
}

.client-logo-carousel {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
}

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

.client-logo-wrapper {
  padding: 10px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.client-logo-wrapper:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.client-logo {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.client-logo-wrapper:hover .client-logo {
  transform: scale(1.1);
}

/* Make sure to repeat the logos for continuous scrolling effect */
.client-logo-carousel .row {
  display: flex;
  flex-wrap: nowrap;
}

.client-logo-carousel .col-md-2 {
  flex: 0 0 auto;
  width: 16.66667%;
}

@media (max-width: 768px) {
  .client-logo-carousel .col-6 {
    width: 33.33333%;
  }
}


 /* Statistics Section */
 #statistics {
  background-color: #f8f9fa;
  padding: 2rem 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #198255;
}

.stat-text {
  font-size: 1.2rem;
  color: #6c757d;
}

#statistics .row {
  border-top: 1px solid #dee2e6;
}

#statistics .col-md-3 {
  border-right: 1px solid #dee2e6;
  padding: 20px 0;
}

#statistics .col-md-3:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  #statistics .col-md-3 {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }

  #statistics .col-md-3:last-child {
    border-bottom: none;
  }
}


.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease-in-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease-in-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.section-box .icon {
  margin-bottom: 15px;
}

.section-box .content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.section-box .content p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* General styles for the opening hours section */
#openingHours {
  padding: 3rem 1rem; 
  background-color: #343a40; 
  color: #f8f9fa; 
}

.opening-hours-box {
  display: flex;
  align-items: center;
  gap: 1rem; 
  justify-content: center;
}

.opening-hours-box i {
  color: #0d6efd; 
  margin-right: 1rem;
}

.opening-hours-box div {
  font-size: 1rem; 
}

/* General styles for the testimonials section */
#testimonials {
  background-color: #f8f9fa; 
  color: #343a40; 
  padding: 2rem 0; 
}

/* Styles for the carousel */
.carousel-inner .carousel-item {
  padding: 1rem; /
}

.carousel-control-prev,
.carousel-control-next {
  filter: invert(100%); 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #343a40; 
  border-radius: 50%; 
}



















/* Media query for devices smaller than 576px (extra small devices) */
@media (max-width: 576px) {
  #openingHours {
    padding: 2rem 0.5rem; 
  }

  .hero-section{
    display: none;
  }

  .opening-hours-box {
    flex-direction: column; 
    align-items: flex-start; 

  .opening-hours-box i {
    margin-right: 0; 
    margin-bottom: 0.5rem; 
  }

  .opening-hours-box div {
    font-size: 0.875rem; 
  }
}
}

/* General styles for the hero section on mobile */
.hero-section-mobile {
  background-image: url('/Assets/colorcheck.jpg');
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  color: #505151; 
  padding: 2rem 1rem; 
  text-align: center; 
}

/* Additional styles to ensure text is readable over the background image */
.hero-section-mobile h1, 
.hero-section-mobile p {
  background-color: rgba(58, 57, 57, 0.7); 
  padding: 0.5rem; 
  border-radius: 0.25rem; 
  color: white;
}


.hero-section-mobile .container {
  max-width: 600px; 
  margin: 0 auto; 
}

.hero-section-mobile .hero-content {
  font-size: 1rem; 
}

/* Media query for larger devices (if needed) */
@media (min-width: 576px) {
  .hero-section-mobile {
    padding: 3rem 2rem;
  }

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

  .hero-section-mobile p {
    font-size: 1.25rem; 
  }
}



