/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
 }

 #spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

/*** Hero Section Start ***/
.hero-section {
  position: relative;
  background: url("../img/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 90vh;
    display: flex;
  align-items: center;
}

.hero-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border-left: 5px solid var(--bs-primary);
}

.hero-image-container {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-image-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  top: 20px;
  right: 20px;
  display: flex;
    align-items: center;
    justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
  animation: pulse-badge 2s infinite;
  z-index: 2;
}

.hero-badge-inner {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-badge span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-primary);
  line-height: 1;
}

.hero-badge small {
  font-size: 0.8rem;
    font-weight: 600;
  color: var(--bs-dark);
  line-height: 1.2;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-badge {
    width: 80px;
    height: 80px;
  }

  .hero-badge-inner {
    width: 70px;
    height: 70px;
  }

  .hero-badge span {
    font-size: 1.2rem;
  }

  .hero-badge small {
    font-size: 0.7rem;
  }
}
/*** Hero Section End ***/

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
}

.topbar .top-info {
  font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
  font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

@media (max-width: 1400px) {
    .sticky-top .top-link {
        display: none;
    }
}

.topbar .top-link a {
    font-size: medium;
    font-weight: 400;
  font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

#note {
    position: relative;
    animation: noteAnimate 10s infinite;
    animation-timing-function: ease-in-out;
    display: flex;
    align-items: center;
}

@keyframes noteAnimate {
  from {
    left: -735px;
  }
  to {
    left: 735px;
  }
}

.emergency-icon {
  width: 30px;
  height: 30px;
  background-color: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-icon i {
  font-size: 14px;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 400;
  font-family: "Fredoka", sans-serif;
    font-size: 16px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
    font-family: "Fredoka", sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
    transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
  transition: 0.5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.8);
}
/*** Navbar End ***/

/*** Features Start ***/
.features {
    width: 100%;
  background: linear-gradient(rgba(26, 125, 255, 0.5), rgba(255, 255, 255, 0.3)),
    url(../img/features-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** Features End ***/

/*** Top News Start ***/
.news-2 h3 {
    position: relative;
}

.news-2 h3::after {
    content: "";
    line-height: 1.3rem;
    background: var(--bs-secondary);
    position: absolute;
    width: 68%;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    right: 0;
    opacity: 0.2;
}
/*** Top News End ***/

/*** Latest News Start ***/
.latest-news .latest-news-carousel.owl-carousel {
    position: relative;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -65px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-prev:hover,
.latest-news .latest-news-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
}
/*** Latest News End ***/

/*** Whats New Start ***/
.populer-news .whats-carousel.owl-carousel {
    position: relative;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -80px;
    right: 70px;
    font-size: 20px;
    padding: 2px 20px;
    transition: 0.5s;
    margin-right: 10px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: -80px;
    right: 0;
    font-size: 20px;
    margin-left: 10px;
    padding: 2px 20px;
    transition: 0.5s;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 20px;
}

.populer-news .whats-carousel.owl-carousel .owl-nav .owl-prev:hover,
.populer-news .whats-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 10px;
}

.populer-news .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.lifestyle .lifestyle-item {
    position: relative;
    overflow: hidden;
}

.lifestyle .lifestyle-item img {
    transition: 0.5s;
}

.lifestyle .lifestyle-item:hover img {
    transform: scale(1.2);
}

.lifestyle .lifestyle-item .lifestyle-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
/*** Whats New End ***/

/*** Banner Section start ***/
.banner-2 {
    position: relative;
}

.banner-content-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  background: linear-gradient(
    rgba(26, 125, 255, 0.7),
    rgba(255, 255, 255, 0.7)
  );
    z-index: 2;
}
/*** Banner Section End ***/

/*** Footer Start ***/
.footer button:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.footer .footer-item-1 .line-h {
    line-height: 38px;
}

.footer .footer-item-1 a i {
    transition: 0.5s;
}

.footer .footer-item-1 a:hover i {
    color: var(--bs-primary) !important;
}

.footer .footer-item-3 a {
    line-height: 38px;
}

.footer .footer-item-2 a {
    transition: 0.5s;
}

.footer .footer-item-2 a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-3 a {
    transition: 0.5s;
}

.footer .footer-item-3 a:hover {
    color: var(--bs-primary) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** Footer End ***/

/* Service Details Section */
.service-detail {
  position: relative;
}

.service-detail-item {
  transition: all 0.5s;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  position: relative;
  z-index: 1;
  border-top: 5px solid var(--bs-primary);
}

.service-detail-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Fix for text color in service detail cards */
.dark-section .service-detail-item {
  color: #212529;
}

.dark-section .service-detail-item h4,
.dark-section .service-detail-item h5,
.dark-section .service-detail-item p,
.dark-section .service-detail-item li {
  color: #212529;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.service-detail-item:hover .service-detail-icon {
  background: var(--bs-dark);
  transform: rotateY(360deg);
  transition: transform 0.8s;
}

.service-detail-icon i {
  font-size: 2.5rem;
}

.service-detail-item ul li {
  transition: all 0.3s;
  padding: 5px 0;
}

.service-detail-item ul li:hover {
  transform: translateX(5px);
}

.dark-section {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 0;
}

.dark-section .container {
  position: relative;
  z-index: 1;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--bs-white);
}

/* Work Process */
.work-process {
  position: relative;
}

.work-process .process-item {
  position: relative;
  text-align: center;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  background: var(--bs-white);
  transition: all 0.5s;
}

.work-process .process-item:hover {
  transform: translateY(-10px);
}

.work-process .process-number {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-process .process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.work-process .process-item:hover .process-icon {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.work-process .process-icon i {
  font-size: 3rem;
  transition: all 0.5s;
}

.work-process .process-item:hover .process-icon i {
  color: var(--bs-white);
}

.work-process .process-arrow {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--bs-primary);
}

/* Service Benefits */
.service-benefits .benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 10px;
  transition: 0.5s;
}

.service-benefits .benefit-item:hover .benefit-icon {
  background: var(--bs-dark);
}

.service-benefits .benefit-content {
  padding-left: 20px;
}

/* Service Tabs */
.service-tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.service-tabs .nav-tabs .nav-item {
  margin-right: 10px;
  margin-bottom: 10px;
}

.service-tabs .nav-tabs .nav-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  background: var(--bs-light);
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  color: var(--bs-dark);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-tabs .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bs-primary);
  z-index: -1;
  transition: transform 0.5s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border-radius: 30px;
}

.service-tabs .nav-tabs .nav-link:hover::before,
.service-tabs .nav-tabs .nav-link.active::before {
  transform: scaleX(1);
}

.service-tabs .nav-tabs .nav-link.active,
.service-tabs .nav-tabs .nav-link:hover {
  color: var(--bs-white);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
  transform: translateY(-3px);
}

.service-tabs .tab-content {
  border-radius: 10px;
  overflow: hidden;
}

.service-tabs .tab-content .tab-pane {
  padding: 0;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.support-item {
  background: var(--bs-white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.support-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.support-item:hover .support-icon {
  background: var(--bs-primary);
}

.support-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  transition: 0.5s;
}

.support-item:hover .support-icon i {
  color: var(--bs-white);
}

@media (max-width: 768px) {
  .work-process .process-arrow {
    display: none;
  }

  .service-tabs .nav-tabs .nav-link {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}

.back-to-top:hover {
  background-color: var(--bs-dark);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .display-4 {
    font-size: calc(1.475rem + 2.5vw);
  }
  .hero-content {
    padding: 1.5rem !important;
  }
  .service-item,
  .why-choose-item {
    padding: 1.5rem !important;
  }
  .btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
  }
  .hero-image-container {
    margin-top: 1rem;
  }
  .hero-badge {
    width: 90px;
    height: 90px;
  }
  .process-arrow {
    display: none !important;
  }
  .work-process {
    margin-bottom: 2rem;
  }
  .service-tabs .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .service-tabs .nav-link {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .display-5 {
    font-size: calc(1.425rem + 1.5vw);
  }
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  .hero-badge {
    width: 80px;
    height: 80px;
    right: 10px;
    bottom: 10px;
  }
  .hero-badge-inner span {
    font-size: 1.2rem;
  }
  .service-detail-item {
    margin-bottom: 1.5rem;
  }
  .btn-primary.py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .btn-primary.px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  h1.display-5 {
    font-size: 1.8rem;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-badge {
    width: 70px;
    height: 70px;
    right: 10px;
    bottom: 10px;
  }
  .hero-badge-inner span {
    font-size: 1rem;
  }
  .hero-badge-inner small {
    font-size: 0.65rem;
  }
  .service-features,
  .benefit-item,
  .testimonial-item {
    flex-direction: column;
  }
  .service-icon,
  .benefit-icon,
  .contact-icon {
    margin-bottom: 0.75rem;
  }
  .service-tabs .nav-link {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  .accordion-button {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  .contact-info-box {
    padding: 1.5rem !important;
  }
  .navbar-brand p {
    font-size: 1.5rem !important;
  }
  .navbar-brand small {
    letter-spacing: 4px !important;
    font-size: 0.7rem;
  }
}

/* Make the topbar more responsive */
@media (max-width: 576px) {
  .d-flex.justify-content-between {
    flex-direction: column;
  }
  .top-info,
  .top-link {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

/* Additional Responsive Styles */
img {
  max-width: 100%;
  height: auto;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Fix for mobile padding and margins */
@media (max-width: 767.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-break: break-word;
  }
}

/* Fix iframe responsiveness */
.map-responsive iframe {
  max-width: 100%;
}

/* Better button sizing on small screens */
@media (max-width: 575.98px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .service-icon {
    width: 60px !important;
    height: 60px !important;
  }
  .service-icon i {
    font-size: 1.5rem !important;
  }
}

/* Improved navbar for all screen sizes */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-nav .nav-item {
    padding: 0.25rem 0;
  }
  .navbar-brand {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

/* Enhanced button animations */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  z-index: -1;
}

.btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
  width: 100%;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
  background-color: var(--bs-primary);
}

.btn-outline-primary:hover,
.btn-outline-light:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced service cards */
.service-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Enhance service icons animations */
.service-icon {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.service-item:hover .service-icon {
  transform: rotateY(180deg);
}

/* Enhanced work process animations */
.process-item {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 3px solid transparent;
}

.process-item:hover {
  border-bottom: 3px solid var(--bs-primary);
}

.process-number {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.process-item:hover .process-number {
  transform: scale(1.2) rotate(10deg);
}

/* Enhanced arrow animation */
.process-arrow i {
  animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
  0% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }
}

/* Enhanced nav links */
.navbar .navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--bs-primary);
  transition: width 0.4s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

/* New hover effect for benefit icons */
.benefit-icon {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.benefit-item:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--bs-dark);
}

/* Enhanced testimonial cards */
.testimonial-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-item:hover {
  transform: scale(1.05);
}

/* Footer links enhanced animations */
.footer a {
  position: relative;
  transition: padding-left 0.3s ease;
}

.footer a:hover {
  padding-left: 5px;
}

/* Enhance list items in service area */
.list-unstyled li {
  transition: transform 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
}

.list-unstyled li:hover {
  transform: translateX(10px);
}

.list-unstyled li i {
  transition: transform 0.3s ease;
}

.list-unstyled li:hover i {
  transform: scale(1.2);
}

/* Ripple Effect CSS */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Floating Animation for Emergency Icon */
.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Enhanced reveal animations */
.reveal {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/* Tab active state */
.tab-active {
  position: relative;
  overflow: hidden;
}

/* Enhanced card hover */
.shadow-hover {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shadow-hover:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/* Service tab transition */
.tab-content {
  transition: opacity 0.5s ease;
}

.tab-pane {
  transition: all 0.5s ease;
}

.fade:not(.show) {
  opacity: 0;
  transform: translateY(20px);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fix for Get Directions button hover text */
.btn-outline-light:hover {
  color: var(--bs-dark) !important;
}

.hero-section .btn-outline-light {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn-outline-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.hero-section .btn-outline-light:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-section .btn-outline-light:hover {
  border-color: #fff;
  color: var(--bs-dark) !important;
}
