body {
  background: #ffff;
}

.lead {
  font-size: 17px !important;
  font-weight: 400 !important;
  /* font-family: sans-serif !important; */
}

/* Default styles for desktop view */
.carousel-item img {
  height: 350px;
  /* Fixed height for desktop */
  object-fit: fill !important;
  /* Fill the container */
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  .carousel-item img {
    /* margin-top: 65px; */
    /* Add margin-top for mobile */
    height: 220px;
    /* Fixed height for mobile */
    object-fit: fill !important;
    /* Fill the container */
  }
}

.card img {
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
}

.fade-in {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.card {
  border: 1px solid #d7d6d6 !important;
  border-radius: 3px !important;
}
.card .card-body {
  padding: 10px 5px 0 5px!important;
  /* Increased padding for better spacing */
}



/* Start logo slider */
.logo-slider {
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
}

.swiper-slide .card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo .swiper-slide img {
  max-width: 100%;
  height: auto;
  filter: grayscale(0%);
  border-radius: 5px;
  width: 200px;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 75%;
  /* Center vertically */
  transform: translateY(-50%);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bolder;
  /* Arrow size */
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev {
  left: 0px;
}

.swiper {
  padding: 0 17px;
}

.swiper-pagination-bullet {
  background: #000;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
  color: #060127;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;
  /* Center vertically */
  transform: translateY(-50%);
  z-index: 1000;
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
  font-size: 20px;
  /* Arrow size */
}

.main-slider .swiper-button-next {
  right: 0px;
}

.main-slider .swiper-button-prev {
  left: 0px;
}

/* End logo slider */

/* Start Footer Section */
.form-control::placeholder {
  color: rgb(199, 199, 199) !important;
  opacity: 1;
}

.footer-section {
  background: linear-gradient(rgb(0 46 91), rgb(0 14 27)),
    url(/assets/img/bg_image_2.png) center / cover;
  position: relative;
}

.footer-color {
  color: #0192d3;
}

.footer-section .text-muted {
  color: #e1e0e0 !important;
}

.footer-section h5 {
  position: relative;
  display: inline-block;
  border-left: 5px solid #0192d3;
  padding-left: 5px;
}

/* .footer-section h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #0192d3;
  margin-top: 15px;
} */

.footer-section ul li a {
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0192d3 !important;
  padding-left: 5px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background: #0192d3;
  transform: translateY(-3px);
}

.newsletter-form .form-control {
  border-radius: 30px 0 0 30px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form .btn {
  border-radius: 0 30px 30px 0;
  padding: 0 20px;
}

.payment-methods i {
  transition: transform 0.3s ease;
}

.payment-methods i:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

/* End Footer Section */

/* Feature card ---------------------------------- */
.feature-area-1 {
  position: relative;
  padding-top: 60px;
  margin-top: -173px;
  z-index: 2;
}

.feature-area-1 .feature-bg-wrap {
  position: absolute;
  inset: 0;
}

.feature-area-1 .feature-bg-shape1-1 {
  position: absolute;
  width: 788px;
  height: 100%;
  bottom: 0;
  left: 0;
  border-top: solid 285px var(--theme-color);
  border-left: solid 394px var(--theme-color);
  border-right: solid 394px transparent;
  border-bottom: solid 285px transparent;
}

@media (min-width: 1922px) {
  .feature-area-1 {
    margin-top: -200px;
  }
}

@media (max-width: 1500px) {
  .feature-area-1 {
    padding-top: 70px;
    margin-top: -144px;
  }
}

@media (max-width: 1399px) {
  .feature-area-1 {
    margin-top: -130px;
  }

  .feature-area-1 .feature-bg-shape1-1 {
    width: 600px;
    border-top: solid 285px var(--theme-color);
    border-left: solid 300px var(--theme-color);
    border-right: solid 300px transparent;
    border-bottom: solid 285px transparent;
  }
}

@media (max-width: 1299px) {
  .feature-area-1 {
    margin-top: -115px;
  }
}

@media (max-width: 1199px) {
  .feature-area-1 {
    border-radius: 10px 10px 0 0;
    padding-top: 120px;
  }

  .feature-area-1 .feature-bg-wrap {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .feature-area-1 .feature-bg-shape1-1 {
    display: none;
  }
}

@media (max-width: 991px) {
  .feature-area-1 {
    margin-top: 0;
    border-radius: 0;
    padding-top: 80px;
  }
}

.feature-card {
  padding: 30px;
  position: relative;
  box-shadow: 0px 2px 6px -4px rgba(12, 12, 13, 0.12);
  border-radius: 4px;
  background: #f8f8f9;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border:  1px solid #eaeaea;
  /* Medium Large devices */
  /* Large devices */
}

.feature-card .feature-card-bg-shape {
  position: absolute;
  left: 50%;
  bottom: 22px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.feature-card .box-icon {
  display: inline-block;
  margin-bottom: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.feature-card .box-title {
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 6px;
}

.feature-card .box-text {
  margin-bottom: 11px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.feature-card .link-btn {
  color: var(--title-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.feature-card .link-btn:before {
  background: var(--title-color);
}

.feature-card:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@media (max-width: 1299px) {
  .feature-card {
    border-radius: 5px;
  }
}

@media (max-width: 1199px) {
  .feature-card .box-title {
    font-size: 24px;
  }
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: allease 0.4s;
  transition: allease 0.4s;
}

.feature-card .link-btn:before {
  background: var(--title-color);
}

/* about page */
.about-hero {
  background: url("/assets/image/banner-ab.jpg") center/cover no-repeat;
  margin-top: 105px;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.timeline-section {
  background: linear-gradient(rgba(245, 245, 245, 0.9),
      rgba(245, 245, 245, 0.9)),
    url("/assets/img/gallery/gallery-3.jpg") center/cover;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0192d3, #2c3e50);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 50%;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -15px;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #fff;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -15px;
  border-width: 15px 15px 15px 0;
  border-color: transparent #fff transparent transparent;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-icon {
    left: 20px;
    transform: none;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    left: 0 !important;
  }

  .timeline-content::before {
    left: -15px !important;
    right: auto !important;
    border-width: 15px 15px 15px 0 !important;
    border-color: transparent #fff transparent transparent !important;
  }
}

.timeline-icon:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.team-card {
  transition: transform 0.6s;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 3px;
  text-align: center;
}

.team-card .imagess {
  padding: 8px;
  border-radius: 10px;
  height: 260px;
  width: 100%;
}
.team-card .team-p{
  margin-bottom: .5rem !important;
}

.team-card:hover {
  transform: translateY(-1px);
}

.stats-box {
  background: #fafdff;
  color: #0192d3;
  padding: 5px;
  border-radius: 4px;
  margin: 15px 0;
  text-align: center;
  border: 1px solid #dbdbdb;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.value-counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0192d3;
}

.testimonials-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)),
    /* Fixed gradient syntax */
    url("/assets/img/hero-bg.jpg") center center/cover fixed;
}

.testimonial-card {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: auto;
  opacity: 1;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
  background-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  border: 2px solid transparent;
}

.testimonials-section .carousel-indicators .active {
  background-color: #2c3e50;
  border-color: #2c3e50;
}

blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    margin: 0 15px;
  }

  blockquote {
    font-size: 1rem;
    padding-left: 1rem;
  }

  .testimonials-section .carousel-control-prev,
  .testimonials-section .carousel-control-next {
    display: none;
  }
}

.blog-button {
  background: #0192d3;
  color: #fff;
}

.blog-button:hover {
  background: #0192d3;
  color: #fff;
}



/*start contact section */
.contact .contact-us {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 100vh;
}

.contact .contact-box {
  background: white;
  border-radius: 6px !important;
  box-shadow: 0px 5px 5px rgb(207, 207, 207) !important;
  overflow: hidden;
}

.contact .contact-left {
  padding: 40px;
  background: #2b2d42;
  color: white;
}

.contact .contact-right {
  padding: 40px;
}

.contact .section-title {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact .section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #0192d3;
}

.contact .contact-info {
  margin-bottom: 30px;
}

.contact .contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
}

.contact .contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0192d3;
  border-radius: 50%;
  margin-right: 20px;
}

.contact .social-links {
  margin-top: 30px;
}

.contact .social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  color: #0192d3;
}

.contact .social-link:hover {
  background: #0192d3;
  transform: translateY(-3px);
  color: #fff;
}

.contact .form-control {
  border: none;
  border-bottom: 2px solid #eee;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.contact .form-control:focus {
  box-shadow: none;
  border-bottom-color: #0192d3;
}

.contact .submit-btn {
  background: #0192d3;
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
}

.contact .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 81, 81, 0.4);
}

.contact .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact .contact-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/*end contact section */

    /* start product-swiper  section */
.product-swiper-container-wrapper {
  position: relative;
  max-width: 1320px;
  margin: auto;
}

.product-swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.product-swiper-wrapper {
  display: flex;
}

.product-swiper-slide {
  flex-shrink: 0;
  width: calc(20% - 16px);
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card {
  width: 100%;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

}

.product-card:hover {
  transform: translateY(-1px);
}

.product-image {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  border-radius: 2px;
}

.product-info {
  padding: 10px;
}

.product-title {
  display: block;
  font-size: 16px;
  margin-bottom: 0px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.product-title:hover {
  color: #0192d3;
}

/* Product Navigation Buttons */
.product-swiper-button-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-20%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 0 10px;
}

.product-swiper-button-prev,
.product-swiper-button-next {
  position: relative;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #333;
  pointer-events: auto;
  margin: 0;
}

.product-swiper-button-prev {
  margin-left: -17px;
}

.product-swiper-button-next {
  margin-right: -17px;
}

.product-swiper-button-prev::after,
.product-swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.product-swiper-button-prev::after {
  content: "\276E";
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.product-swiper-button-next::after {
  content: "\276F";
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 1200px) {
  .product-swiper-slide {
    width: calc(25% - 15px);
  }
}

@media (max-width: 992px) {
  .product-swiper-slide {
    width: calc(33.33% - 13.33px);
  }
}

@media (max-width: 768px) {
  .product-swiper-slide {
    width: calc(50% - 10px);
  }

  .product-swiper-button-prev,
  .product-swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .product-swiper-button-prev::after,
  .product-swiper-button-next::after {
    font-size: 16px;
  }
  .product-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-swiper-slide {
    width: 100%;
    margin-right: 0;
  }

  .product-swiper-button-prev {
    margin-left: -10px;
  }

  .product-swiper-button-next {
    margin-right: -10px;
  }
  .product-image {
    width: 100%;
    height: 180px;
  }
}

.product-swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.product-swiper-wrapper {
  display: flex;
  width: 100%;
}

.product-swiper-slide {
  flex-shrink: 0;
  width: calc(20% - 16px);
  margin-right: 20px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.form-range::-webkit-slider-thumb {
  background: var(--bs-primary);
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

/* End product-swiper  section */