.navbar {
    background-color:transparent;
  }
  .navbar .navbar-brand img {
    width: 110px;
  }
  .navbar .navbar-brand .logo-text {
    font-size: 20px !important;
    font-weight: bold;
    margin-left: 5px;
    color: #222;
  }
  
  .mega-menu {
    position: static;
  }
  .mega-menu .mega-menu-content {
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    position: absolute;
    z-index: 1000;
  }
  .mega-menu:hover .mega-menu-content {
    display: block;
  }
  .mega-menu h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .mega-menu .dropdown-item {
    font-size: 14px;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  .mega-menu .dropdown-item:hover {
    background: rgba(234, 234, 234, 0.6941176471);
  }

  /* Page contetn css */

  .hero-section .hero-content h1{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }
  .hero-section   .swiper-slide .card {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  .swiper-slide .card .card-body h5{
    font-size: 15px;
  }
  .swiper-slide .card .card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .swiper-slide .card .card-body li {
    font-size: 14px;
  }

  .why-choose-us .card{
    width: 100%;
    height: 230px;
  }
  .why-choose-us .card .card-body h5{
    font-size: 17px;
    font-weight: bold;
  }

  .cta-section h2{
    font-size: 50px;
    color: white !important;
  }
  /* Swiper Pagination Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #333; /* Change to your theme color */
    opacity: 0.5;
    transition: 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    background: #31c7bd !important; /* Active dot color */
    opacity: 1;
    transform: scale(1.2);
}

/* Swiper Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    color: #333; /* Arrow color */
    font-size: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #f9f0c7; /* Hover color */
    color: #222;
}

/* Footer css */


.footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
}


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 14px;
}

.suggestion-item {
    cursor: pointer;
}

@media (max-width: 1200px) {
  .card{
    margin-bottom: 20px;
  }
  img{
    margin-bottom: 40px;
  }
  
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight:400;
  font-size: 10px;
  writing-mode: vertical-rl; /* Vertical Text */
  text-orientation: upright;
  transition: all 0.5s ease-in-out;
  display: none; /* Initially Hidden */
}

.fixed-button {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.call-button {
  left: 20px;
  background-color: #007bff;
}

.whatsapp-button {
  right: 20px;
  background-color: #25d366;
}

.fixed-button:hover {
  opacity: 0.9;
}

