/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.middlenavbar {
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 15px;
}

.logo img {
  height: 84px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 18px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-bar input {
  padding: 7px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-bar button {
  padding: 7px 12px;
  background-color: #eb8724 !important;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 500;
}

.search-bar button:hover {
  background-color: #eb8724 !important;
}

.call-btn {
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.call-btn:hover {
  background-color: #ff6600 !important;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 15px;
} */

.logo img {
  height: 84px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #000000;
}

.search-bar {
  display: flex;
  align-items: center;
  /* gap: 5px; */
}

.search-bar input {
  padding: 7px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-bar button {
  padding: 7px 12px;
  background-color: #ff6600;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px;
  font-size: 17px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0056b3;
}

.call-btn {
  background-color: #ff6600;
  color: rgb(10, 10, 10);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.call-btn:hover {
  background-color: #218838;
}


.blink-button {
  display: inline-block;
  background-color: #eb8724;
  color: rgb(0, 0, 0);
  padding: 9px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  animation: blinker 1s linear infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Responsive for Mobile */
/* @media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 70%;
  }

  .search-bar button {
    width: 28%;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }
} */




.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}


/* XXXX */

.service-box {
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #b9b9b9;
}

.service-box i {
  font-size: 30px;
  margin-bottom: 10px;
}


/* XXX */

.card img {
  height: 220px;
  object-fit: cover;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.btn {
  font-size: 17px;
  font-weight: 500;
  width: 50%;
  padding: 6px;
  border-radius: 10px;
}

.btn-outline-primary:hover {
  background-color: #ff6600 !important;
  color: #fff !important;
  border-color: #ff6600 !important;
}

.btn-outline-primary {
  color: white !important;
  background-color: #ff6600 !important;
  border-color: #ff6600 !important;
}

/* .cardserviceimganimation {
  transition: transform 0.5s ease;
}
.cardserviceimganimation:hover {
  transform: scale(1.05);
} */


.cardserviceimganimation {
  width: 100%;
  height: 220px;
  /* Set a fixed height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardserviceimganimation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cardserviceimganimation img:hover {
  transform: scale(1.1);
}



/* xxx */

.review-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #f1c40f;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
}


/* xxx */

.accordion-button {
  font-weight: 600;
  margin-bottom: 16px;
  background-color: rgb(240, 240, 240);
}

.accordion-button:not(.collapsed) {
  background-color: #ff6600;
  color: #000000;
}

.accordion-body {
  font-size: 0.95rem;
  color: #444;
}


/* ourservice */

/* Button animations */
.call-now-btn,
.chat-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Call Now Button Animation */
.call-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.call-now-btn:active {
  transform: translateY(1px);
}

/* Chat Button Animation */
.chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
  background-color: #f8f9fa;
}

.chat-btn:active {
  transform: translateY(1px);
}

/* Pulse animation for call button */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.call-now-btn:hover .fa-phone-alt {
  animation: pulse 1s infinite;
}

/* Bounce animation for chat button */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.chat-btn:hover .fa-comment-dots {
  animation: bounce 1s infinite;
}



/* WhatsApp specific styling */
/* .chat-btn {
        border-color: #25D366 !important; 
        color: #25D366 !important;
    } */

/* .chat-btn:hover {
        background-color: #25D366 !important;
        color: white !important;
    } */

/* Animation for WhatsApp icon */
.chat-btn:hover .fa-whatsapp {
  animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-3px);
  }
}



/* footer */


footer {
  background: var(--midnight-plum);
}

.footer-section-brandName {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
}

.footer-section-brandSlogan {
  font-family: 'Pacifico', handwriting;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--off-white);
}

a.icon-link svg {
  fill: var(--lilac-dream);
}

a.icon-link:hover svg {
  animation: Buzz0xERR0R 0.75s linear 1;
}

@keyframes Buzz0xERR0R {
  10% {
    transform: translateX(0.1875rem) rotate(2deg);
  }

  40% {
    transform: translateX(-0.1875rem) rotate(-2deg);
  }

  50% {
    transform: translateX(0.125rem) rotate(1deg);
  }

  60% {
    transform: translateX(-0.125rem) rotate(-1deg);
  }

  70% {
    transform: translateX(0.125rem) rotate(1deg);
  }

  80% {
    transform: translateX(-0.125rem) rotate(-1deg);
  }

  90% {
    transform: translateX(0.0625rem) rotate(0);
  }

  100% {
    transform: translateX(-0.0625rem) rotate(0deg);
  }
}

a.icon-link:focus svg {
  fill: var(--lavender-mist);
}

.footer-section-top-column-one .column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--off-white);
}

.footer-section-top-column-one {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
}

.footer-section-top-column-one a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-one a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-one a:hover::after {
  width: 100%;
}

.footer-section-top-column-one a:focus {
  color: var(--lavender-mist);
}

.footer-section-top-column-two .column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--off-white);
}

.footer-section-top-column-two {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
}

.footer-section-top-column-two a {
  font-size: 18px;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-two a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-two a:hover::after {
  width: 100%;
}

.footer-section-top-column-two a:focus {
  color: var(--lavender-mist);
}

.footer-section-top-column-three .column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--off-white);
}

.footer-section-top-column-three {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
}

.footer-section-top-column-three a {
  font-size: 18px;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-three a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-three a:hover::after {
  width: 100%;
}

.footer-section-top-column-three a:focus {
  color: var(--lavender-mist);
}

.footer-section-top-column-four .column-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--off-white);
}

.footer-section-top-column-four {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
}

.footer-section-top-column-four a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.footer-section-top-column-four a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.footer-section-top-column-four a:hover::after {
  width: 100%;
}

.footer-section-top-column-four a:focus {
  color: var(--lavender-mist);
}

.footer-section-middle-start-line {
  width: 100%;
  height: 0.063rem;
  margin-top: 1.75rem;
  margin-right: 1.75rem;
  opacity: 0.1;
  background: var(--off-white);
}

.footer-section-middle-brandLogo {
  opacity: 0.1;
  fill: var(--off-white);
}

.footer-section-middle-end-line {
  width: 100%;
  height: 0.063rem;
  margin-top: 1.75rem;
  margin-left: 1.75rem;
  opacity: 0.1;
  background: var(--off-white);
}

.footer-section-bottom {
  /* font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem; */
  font-weight: 500;
}

.copyright {
  color: var(--off-white);
}

.copyright a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.copyright a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.copyright a:hover::after {
  width: 100%;
}

.copyright a:focus {
  color: var(--lavender-mist);
}

.terms-and-conditions a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.terms-and-conditions a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.terms-and-conditions a:hover::after {
  width: 100%;
}

.terms-and-conditions a:focus {
  color: var(--lavender-mist);
}

.privacy-policy a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.privacy-policy a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.privacy-policy a:hover::after {
  width: 100%;
}

.privacy-policy a:focus {
  color: var(--lavender-mist);
}

.cookie-policy a {
  text-decoration: none;
  color: var(--lilac-dream);
  position: relative;
}

.cookie-policy a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lilac-dream);
  position: absolute;
}

.cookie-policy a:hover::after {
  width: 100%;
}

.cookie-policy a:focus {
  color: var(--lavender-mist);
}

.credit {
  color: var(--off-white);
}

.credit a {
  text-decoration: none;
  color: var(--lemon-zest);
  position: relative;
}

.credit a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
  background: var(--lemon-zest);
  position: absolute;
}

.credit a:hover::after {
  width: 100%;
}

#heartbeat {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  fill: var(--crimson-red);
  animation: heartbeat .25s infinite alternate;
}

@keyframes heartbeat {
  to {
    transform: scale(1.2);
  }
}



.review-stars i {
  color: #f39c12;
}

.review-text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;

}

.ourserviceimabox {
  border: 1px solid #cdcaca;
  padding: 6px;
  border-radius: 5px;
}

.ourserviceimabox a {
  text-decoration: none;
  color: black;
}


/* .ourserviceimabox img {
        transition: transform 0.3s ease;
    }

    .ourserviceimabox img:hover {
        transform: scale(1.1);
    } */


.ourserviceimaboximg {
  display: flex;
  object-fit: cover;
  overflow: hidden;
}

.ourserviceimabox img {
  transition: transform 0.4s ease;
}

.ourserviceimabox img:hover {
  transform: translateY(-10px);
}


/* .main-footer{
      padding-top: 35px;
      padding-left: 203px;
      padding-right: 203px;
    } */

@media (min-width: 992px) {
  .main-footer {
    padding-top: 35px;
    padding-left: 100px;
    padding-right: 100px;
  }
}

/* aboutpage */

/* Hero Section */
.hero {
  background: #067fb3;
  /* color: rgb(0, 0, 0); */
  /* text-align: center; */
  padding: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}



/* Our-servicePage */

/* .ourservice-section {
    background-image: url('images/your-image.jpg'); 
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: #fff; 
} */

.ourservice-section {
  background-color: #067fb3;
  padding: 10px;
}

/* .ourservice-content{
    display: flex;
    justify-content: 
    center;flex-direction: 
    row;align-items: center;
} */


.product-btn {
  font-size: 18px;
  font-weight: 500;
}


/* Contactpage */

.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600');
  background-size: cover;
  background-position: center;
  padding: 10px 0;
  color: white;
}

.contact-card {
  transition: transform 0.3s;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*.contact-card:hover {*/
/*  transform: translateY(-10px);*/
/*}*/

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.map-responsive {
    position: relative;
    padding-bottom: 20.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }


.facebookicon {
  border: 1px solid #3b5998;
}

.facebookicon:hover {
  background-color: #3b5998 !important;
  color: white !important;
}

.indeedicon:hover {
  background-color: #2164f3 !important;
  color: white !important;
}


.indeedicon {
  border: 1px solid #2164f3;
}

/* Custom CSS for Hover Effects  of  canvass style*/

@media (max-width: 1023px) {
  .site-headerdisplaynone {
    display: none;
  }
}



@media (min-width: 1024px) {
  .site-headerOffcanvas {
    display: none;
  }
}

.offcanvaslogo {
  height: 50% !important;
  width: 50% !important;
}

.hover-bg-primary {
  transition: all 0.3s ease;
  color: #333;
}

.hover-bg-primary:hover {
  background-color: #067fb3;
  color: white !important;
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-btns a{
    display:flex;
    align-items:center;
    justify-content:center;
}
.contact-btns span{
    font-size:14px;
}
.contact-btns i{
    font-size:15px;
}

.product-name{
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}