.whats-app {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    left: 15px;
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  width: 360px;
  max-width: 90%;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transform: translateY(20px);
  pointer-events: none;
}

.popup.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .popup {
    bottom: 300px;
    right: 10px;
    left: 20px;
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
    .popup {
        bottom: 300px;
        right: 10px;
        left: 20px;
        width: calc(100% - 20px);
        padding: 14px;
        border-radius: 12px;
    }
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(243, 244, 246, 0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-button:hover {
  background: rgba(243, 244, 246, 1);
  color: #374151;
  transform: rotate(90deg);
}


.popup-content {
  position: relative;
}

.popup-content h2 {
  margin: 0 0 12px 0;
  color: #1698ff;
  font-size: 20px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  line-height: 1.2;
}

.popup-content p {
  margin: 0 0 32px 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .popup {
    padding: 32px;
    width: 95%;
  }

  .popup-content h2 {
    font-size: 24px;
  }
}

.decorative-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(79, 70, 229, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  z-index: -1;
}

.shape-1 {
  top: -20px;
  left: -20px;
}

.shape-2 {
  bottom: -20px;
  right: -20px;
  background: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.1),
    rgba(37, 99, 235, 0.1)
  );
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}

.call-button,
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.call-button {
  background: linear-gradient(45deg, #007bff, #0056b3);
}

.whatsapp-button {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.call-button:hover,
.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.call-button i,
.whatsapp-button i {
  margin-right: 10px;
}

.fixed-image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.fixed-image-large-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.fixed-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease-in-out;
}

.fixed-image-box:hover img {
    transform: scale(1.1);
}

.gallery-card {
    width: 100%;
    height: 350px;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
}

.apply-owl-indicators .owl-carousel {
    position: relative;
}

.apply-owl-indicators .owl-carousel .owl-nav {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.apply-owl-indicators .owl-carousel .owl-nav button.owl-prev,
.apply-owl-indicators .owl-carousel .owl-nav button.owl-next {
    position: static;
    width: 52px !important;
    height: 52px !important;
    background: #ffffff !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50%;
}

.testimonial-slider .owl-nav{
    display: none;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-phone{
    display:flex;
}
 .footer-phone [class^=bx-]:before{
    font-size:36px;
    color:#ef2853
}
 .footer-about-in{
    padding:15px 20px;
    border:1px dashed #f1f1f1;
    border-radius:10px
}
 .footer-about ul.social-links li a{
    background:#ffffff26;
    color:#fff;
    width:40px;
    height:40px;
    display:inline-block;
    text-align:center;
    font-size:17px;
    line-height:2.2;
    border-radius:5px
}
 .footer-about ul.social-links li a:hover{
    color:#fff;
    background:#ef2853
}

.footer-area p {
    margin-bottom: 6px !important;
    color: #d6d6d6;
}