@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.pt-sans-regular {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-bold {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pt-sans-regular-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.pt-sans-bold-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}



.navbar-brand img {
  width: 180px;
}





.navbar {

  background: white;
  padding: 0px 30px !important;
position: sticky;
top: 0px;
}


.nav-link {
  font-size: 16px !important;
  font-weight: 400 !important;
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-left: 19px !important;
  color: black;
  /* default color */
}



.nav-link:hover {
  color: black !important;
  font-weight: bold;

}



.nav-link.active {
  color: black !important;
    font-weight: bold;
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-menu2 {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

/* Ensure the dropdown is hidden by default */
.dropdown-menu2 {
  display: none;
  opacity: 0;
  visibility: hidden;
  background-color: white !important;
  border-radius: 3px !important;
  border: none !important;
  margin-top: 0.5rem;
}


.main-btn {
  background-color: black !important;
  padding: 10px 20px;
  border-radius: 3px;
  width: 100%;
  color: white;
  border: none;
  text-decoration: none;




}

.main-btn2 {
  margin-left: 30px;
  background-color: #EC3337 !important;
  padding: 10px 20px;
  border-radius: 3px;
  border: none;
  color: white;

}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #131212f8;
  z-index: 1;
}

.why-choose-text3 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0px;
  color: white;
  padding: 50px 0px;

}

.logo {
  background-color: white;
  padding: 20px;
}


.list-unstyled li {
  margin-top: 10px;
}

.list-unstyled a {
  text-decoration: none;
  color: white;
}


/* -------------------------- hero section ------------------------  */

.poster {
  position: relative;
  background: url('/image/poster.webp');
  height: 600px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  /* Ensures overlay stays inside */
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: rgba(255, 255, 255, 0.2);
  /* Light overlay */
  backdrop-filter: blur(3px);
  /* Glass blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  z-index: 1;
}

.poster>* {
  position: relative;
  z-index: 2;
  /* Keep content above overlay */
}


.poster h2 {
  font-size: 67px;
  font-weight: 700;
  color: black;

}

.poster-content {
  width: 500px;
  margin-top: 100px;

}

.poster p {
  font-size: 19px;
}

.call-to-anction {}

.btn1 {
  background-color: black;
  padding: 7px 20px;
  border-radius: 2px;
  border: none;
  color: white;
}

.btn2 {
  background-color: white;
  padding: 7px 20px;
  border-radius: 2px;
  border: none;
  color: #0068d7;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;

}

/* -------------------------- About section ------------------------  */


.about-section {
  padding: 100px 0px;
}

.about-section h2 {
  font-size: 49px;
  font-weight: 700;
}

.tag {

  background-color: transparent;
  border: 1px solid black;
  width: max-content;
  padding: 4px 20px;
  border-radius: 20px 10px;
  color: black;
  font-size: 13px;
}

.about-image {
  height: 460px;
  width: 100%;
  position: relative;

}

.about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.about-qoute {
  position: absolute;
  bottom: -40px;
  left: -10px;
  background-color: white;
  padding: 10px;
  width: 400px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border-radius: 4px;
  border-left: 4px solid #0068d7;


  animation: swingAir 6s ease-in-out infinite alternate;
}


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

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(-20px);
  }
}

.exp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.exp-box {
  background: black;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  height: 160px;
  width: 160px;
}

.exp-box h4 {
  font-size: 49px;
  margin: 0;
  font-weight: bold;
}

.exp-box h6 {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.point-box {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}



/* -------------------------- Achievement-section ------------------------  */


.achievement {
  position: relative;
  background: url("/image/ac.jpg");
  padding: 40px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 20px;
}

.achievement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #050a0fc3;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;

}


.achievement>* {
  position: relative;
  z-index: 2;
}

.achievement-box {
  text-align: center;
}

.achievement-box h2 {
  font-size: 56px;
  font-weight: 800;
  color: white;
}

.achievement-box p {
  color: white;
}


.serivce-container {
  margin-top: 100px;
}

.service-box h2 {
  font-size: 45px;
  font-weight: 800;
}

.service-box {
  text-align: left;
}

.service-box p {
  color: gray;
  font-size: 14px;
  font-weight: 300;
}

.service-box h5 {
  font-size: 16px;
}

.service-card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 10px;
  border-radius: 5px;
}

.service-card img {
  width: 100%;
}

.service-card p {
  color: rgb(59, 58, 58);
}

.service-card h5 {
  margin-top: 20px;
  color: black;
  font-weight: 600;
}

.service-card a {
  text-decoration: none;
}





/* -------------------------- Achievement-section ------------------------  */

.product-section {
  margin-top: 100px;
}


.product-star i {
  color: #f5b50a;
  margin: 0 1px;
  font-size: 13px;
}

.product-card {
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  text-align: center;
  padding-bottom: 20px;
  margin-top: 20px;
}

.product-card h3 {
  color: rgb(43, 42, 42);
}

.product-card a {
  text-decoration: none
}

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

.product-image img {
  border-radius: 10px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.product-star {
  color: #f5b50a;
  font-size: 1rem;
}

.product-price h6 {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 59, 59);
}

.btn-contact {
  background: black;
  color: #fff;
  border: none;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #0068d7;
}



.custom-breadcrumb-section {
  position: relative;
  padding: 40px 0;
  background-image: url('/image/br.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}


.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* dark overlay for readability */
}

.custom-container {
  position: relative;
  z-index: 2;
  text-align: start;
  padding: 0px 40px;
  color: #fff;

}

.custom-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 23px !important;
}

.custom-breadcrumb-list li {
  display: inline-block;
  margin: 0 5px;
}

.custom-breadcrumb-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}



.custom-breadcrumb-list .current {
  color: #ffd700;
  font-weight: 600;
}



.poster2 {
  position: relative;
  height: 600px;
  background: url('/image/poster2.webp') top/cover no-repeat;
  /* Replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 100px;
}

.poster2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* semi-transparent dark overlay */
  backdrop-filter: blur(3px);
  /* blur effect */
  z-index: 1;
}

.poster2 .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 700px;
}

.poster2 .content h2 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 800;
}

.poster2 .content p {
  font-size: 19px;
  margin-bottom: 20px;
}


.poster2 .content button:hover {
  background-color: #ff3b3b;
}



/* review section  */

.review-section {
  position: relative;
  padding: 60px 0px;

}


.swiper-button-prev {
  color: #073f7b !important;
  top: 120% !important;
  transform: translateY(-50%) !important;
  position: absolute !important;
  display: none !important;
  left: 219px !important;
}

.swiper-button-next {
  color: #073f7b !important;
  top: 120% !important;
  transform: translateY(-50%) !important;
  position: absolute !important;
  right: 200px !important;
  display: none !important;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #0056b3;

}

.swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.review-rating i {
  font-size: 11px;
}

.review-box {
  text-align: start;
}

.review-box h5 {
  color: black;

}

.dated {
  display: flex;
  gap: 20px;
  font-size: 13px;
  margin-top: 10px;
  color: gray;
}

.blog-content h5 {
  color: black;
  font-weight: 800;
}

.blog-content p {
  color: gray;
}


.appointment {
  background-color: black;
  padding: 30px;
  color: white;
  margin: 40px 0px;
}

.appointment h3 {
  font-size: 41px;
  font-weight: 800;
}

.appointment i {
  background-color: white;
  color: black;
  padding: 30px;
  border-radius: 10px;
}

.appointment-box {
  display: flex;
  align-items: center;
  gap: 20px;
}



.footer-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: black;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: black;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  line-height: 1.6;
  color: black;
  text-decoration: none;
}

.footer-box a:hover {
  color: #1e90ff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.newsletter {
  display: flex;
  margin-top: 10px;
  width: 200px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;

  outline: none;
  border-radius: 4px 0 0 4px;
}

.newsletter button {
  padding: 10px 15px;
  border: none;
  background: black;
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #0d6efd;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #bbb;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #1e90ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: black;
}

.poster3 {
  position: relative;
  background: url("/image/poster3.webp") center/cover no-repeat;
  padding: 60px 0;
  color: white;
}

/* Overlay effect */
.poster3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(221, 221, 221, 0) 0%, rgba(0, 0, 0, 0.754) 100%);
  z-index: 1;
}

/* To keep content above overlay */
.poster3>* {
  position: relative;
  z-index: 2;
}

.progress-box {
  max-width: 500px;
  margin: 50px auto;
}

.progress {
  height: 25px;
  margin-bottom: 25px;
}

.progress-bar {
  font-weight: 600;
}

.shop-section {
  margin-top: 100px;
}


/* Contact Container */
.contact-container {
  padding: 40px 0;
}

/* Contact Box */
.contact-box {
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  min-height: 190px;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-box h5 {
  color: #0084D6;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background-color: #F9F9F9;
  border: 1px solid black;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(5, 110, 200, 0.05);
}

.contact-form h3 {
  color: #103797;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #0084D6;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  height: 150px;
  margin-bottom: 15px;
  border: 1px solid #0084D6;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0456D3;
}


/* Map Container */
.map-container {
  background-color: #F9F9F9;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form,
  .map-container {
    margin-top: 30px;
  }
}



.product-page .product-image img {
    max-width: 100%;
    height: auto;
}

.product-details h1 {
    font-size: 2rem;
    font-weight: 700;
}

.product-details h4 {
    font-size: 1.5rem;
}

.product-details button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.product-page h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-page ul li a {
    text-decoration: none;
    color: #007bff;
}

.product-page ul li a:hover {
    text-decoration: underline;
}






.service-detail-container {
  display: grid;
  grid-template-columns: 75% 25%;
  padding: 40px 0px;
  gap: 30px;
}


.service-page-image {
  width: 100%;
  height: 500px;
  object-fit: contain;

}

.service-header {
  background-color: white;

  padding: 20px;
  border-radius: 20px;
}

.sidebar {
  padding: 20px;
  background-color: white;

  border-radius: 20px;
}

.recent-service {
  list-style: none;
  margin-top: 10px;
}

.recent-service {
  background-color: black;
  padding: 5px 10px;

  border-radius: 5px;
  width: 100%;

}

.recent-service a {
  text-decoration: none;
  color: white;

}

.recent-blog a {
  text-decoration: none;
  color: white;

}

.recent-blog {
  list-style: none;
  margin-top: 10px;
}

.recent-blog {
  background-color: black;
  padding: 5px 10px;

  border-radius: 5px;
  width: 100%;

}
    .shoping-box {
  position: relative;
  overflow: hidden;
margin: 60px 0px;
}

.shoping-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shoping-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.618); /* dark overlay */
  z-index: 1;
}

.shoping-box .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
  width: 90%;
}
/* Modal form custom style */
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #0d6efd; /* Bootstrap primary */
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
}

.modal-form textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-form .main-btn {
  background: black;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.modal-form .main-btn:hover {
  background: #084298;
}

.modal-header {
  border-bottom: none;
  text-align: center;
}

.modal-header h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
}

.modal-footer {
  border-top: none;
  justify-content: center;
}

.modal-content {
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}






@media screen and (max-width: 576px) {
  .navbar .main-btn{
    display: none;
  }
  .service-detail-container {
    display: unset;
    padding: 5px;
  }
  .service-header{
    padding: 3px;
  }
  .service-page-image {
  height: auto;
}
.sidebar{
  padding: 2px;
}
  .poster-content {
    width: auto;
    margin-top: 40px;
  }

  .about-section {
    padding: 30px 0px;
  }

  .exp-container {
    flex-wrap: wrap-reverse !important;
  }

  .achievement-section {
    margin-top: 40px;
  }

  .about-qoute {
    animation: none;
    width: auto;
  }
.achievement{
  border-radius: 0px;
}
  .serivce-container {
    margin-top: 30px;
  }

  .shop-section {
    margin-top: 30px;

  }

  .shoping-box {
    margin: 10px 0px !important;
  }

  .product-section {
    margin-top: 30px;
  }
  .heading-section2{
    text-align: center;
    margin-bottom:50px ;
  }
  .appointment-box{
    flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 0px;
  margin-bottom: 20px;
  }
  .exp-container{
    flex-direction: column-reverse;
  }
  .about-section h2{
    font-size: 36px;
  }
}