* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* header css*/

.header-section {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
a{
       text-decoration: none !important;
}
.info-card a{
  color: #666;
}
.invelop-icon a{
    color: #fff;
}
.contact-box p a{
        color: #fff;
}
.invelop-icon p {
  margin: 0 0 0 0;
}
.social-media-icon-header a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-media-icon-header a:hover {
  opacity: 0.8;
}

/* nav bar css */

.custom-navbar {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.nav-item a {
  font-size: 15px;
  font-weight: 600;
}

.navbar-brand img {
  height: 45px;
}

.nav-link {
  margin: 4px 6px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.book-btn {
  background: #dc3545;
  color: #fff;
  text-decoration: none;
  padding: 10px 39px;
  border-radius: 50px;
  font-weight: 500;
}

.call-btn {
  background: #dc3545;
  color: #fff;
  text-decoration: none;
  padding: 10px 39px;
  border-radius: 50px;
  font-weight: 500;
}

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

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

.navbar-toggler i {
  font-size: 28px;
  color: #dc3545;
}

.dropdown-menu li a:hover {
  background-color: #dc3545;
  color: aliceblue;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Smooth Animation */

.dropdown-menu {
  display: none;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.603), rgba(0, 0, 0, 0.589)),
    url(Image-File/contactus-image-baner.webp);

  background-size: cover;
  background-position: center;

  padding: 126px 0;
  text-align: center;
}

.banner-content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.banner-content p a {
  text-decoration: none;
  margin: 5px;
  color: #fff;
  font-size: 20px;
}

.banner-content span {
  color: #ffffff;
}

.contact-section {
  background: #68b4ff1a;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.map-box iframe {
  width: 100%;
  border: none;
  border-radius: 20px;
}

/* Form */

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-control,
.form-select {
  height: 55px;
  border-radius: 10px;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #dc3545;
}

.contact-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #dc3545;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
}

.contact-btn:hover {
  background: #000;
}

.contact-info {
  background: #68b4ff1a;
}

.section-title {
  font-size: 31px;
  font-weight: 700;
  color: #222;
}

.info-card {
  background: #fff;
  text-align: center;
  padding: 35px 18px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #dc3545;
  color: #fff;
  margin: 0 auto 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 20px;
}

.info-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-card p {
  color: #666;
  line-height: 28px;
  font-size: 13px;
  margin: 0;
}

.footer-section {
  background: #111;
  color: #fff;
  padding: 50px 0px 0px 0px;
}

.footer-logo img {
  border-radius: 6px;
  max-width: 250px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #ccc;
  line-height: 29px;
  font-size: 15px;
}

.footer-widget h4 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget h4::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #dc3545;
  position: absolute;
  left: 0;
  bottom: -8px;
}

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

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  font-size: 19px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-widget ul li a:hover {
  color: #dc3545;
  padding-left: 5px;
}

.contact-box p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 22px;
  font-size: 16px;
}

.contact-box i {
  color: #dc3545;
  margin-right: 8px;
}

.location-btn {
  margin-top: 20px;
}

.location-btn a {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.location-btn a:hover {
  background: #fff;
  color: #111;
}

.location-btn iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.map-box iframe {
  width: 100%;
  height: 700px;
}

.footer-bottom {
  /* margin-top:50px; */
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #bbb;
}

.footer-bottom p a {
  text-decoration: none;
  color: #fff0f0;
}

.social-media-footer {
  margin-top: 36px;
}

.social-media-footer a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background: #fff;
  color: #333;
  margin: 0 8px;
  font-size: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.facebook:hover {
  background: #1877f2;
  color: #fff;
  transform: translateY(-8px) rotate(360deg);
}

.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  transform: translateY(-8px) rotate(360deg);
}

.youtube:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-8px) rotate(360deg);
}

.pinterest:hover {
  background: #fa4545;
  color: #fff;
  transform: translateY(-8px) rotate(360deg);
}

.floating-icons {
  position: fixed;
  right: 51px;
  bottom: 70px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 22px;
}

/* Call Button */

.call-btn-1 {
  width: 60px;
  height: 60px;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  animation: pulseCall 2s infinite;
  transition: 0.3s;
}

.call-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* WhatsApp Button */

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  animation: pulseWhatsapp 2s infinite;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Animation */

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#backToTop {
  position: fixed;
  left: 47px;
  bottom: 71px;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255, 255, 255);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

#backToTop:hover {
  background: #000;
  color: #fff;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/*responsive */
/* =========================
   Responsive Design
========================= */

/* Laptop 992px - 1199px */
@media (max-width: 1199px) {
  .nav-link {
    margin: 4px 10px;
  }

  .book-btn,
  .call-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .banner-content h1 {
    font-size: 50px;
  }

  .footer-section {
    padding: 70px 20px 0;
  }
}

/* Tablet View */
@media (max-width: 991px) {
  .social-media-icon-header {
    margin-top: 10px;
  }

  .navbar-brand img {
    height: 65px;
  }

  .nav-buttons {
    flex-direction: column;
    margin-top: 15px;
  }

  .book-btn,
  .call-btn {
    width: 100%;
    text-align: center;
  }

  .about-banner {
    padding: 80px 0;
  }

  .banner-content h1 {
    font-size: 42px;
  }

  .contact-title,
  .section-title {
    font-size: 36px;
  }

  .map-box iframe {
    height: 450px;
  }

  .contact-form {
    margin-top: 20px;
  }

  .footer-section {
    padding: 60px 20px 0;
  }

  .social-media-footer {
    margin-top: 30px;
  }

  .location-btn iframe {
    width: 100%;
    height: 220px;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .header-section {
    font-size: 13px;
  }

  .navbar-brand img {
    height: 55px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p a {
    font-size: 16px;
  }

  .contact-title,
  .section-title {
    font-size: 28px;
  }

  .map-box iframe {
    height: 300px;
  }

  .contact-form {
    padding: 20px;
  }
  .contact-box p {
    font-size: 18px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .info-card {
    padding: 25px 15px;
  }

  .info-card h4 {
    font-size: 20px;
  }

  .footer-widget {
    margin-left: 0;
    margin-top: 20px;
  }

  .footer-widget h4 {
    font-size: 22px;
  }

  .footer-widget ul li a {
    font-size: 16px;
  }

  .location-btn iframe {
    width: 100%;
    height: 180px;
  }

  .footer-bottom p {
    font-size: 6px;
    line-height: 15px;
  }

  .social-media-footer {
    margin-top: 25px;
  }

  .floating-icons {
    right: 18px;
    bottom: 73px;
    gap: 12px;
  }

  .call-btn-1,
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  #backToTop {
    left: 13px;
    bottom: 68px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    border: 1px solid rgb(255, 255, 255) !important;
    font-size: 12px;
    border-width: 6px;
  }

  .footer-bottom {
    font-weight: 600;
    font-size: 6px;
  }
  .map-box iframe {
    height: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 28px;
  }

  .contact-title,
  .section-title {
    font-size: 24px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .info-icon {
    width: 65px;
    height: 65px;
  }

  .info-icon i {
    font-size: 24px;
  }

  .footer-logo img {
    max-width: 170px;
  }
}
.social-media-icon-header{
  text-align: end;
}