/* Map */

/* Full width underline */
.footer-bottom-text {
  border-bottom: 2px solid #ffffff; /* full line */
  padding-bottom: 8px;
}

/* Left text */
.footer-bottom-text .copyright {
  color: #ffffff !important;
  margin: 0;
}

/* Right text */
.footer-bottom-text .design-by {
  color: #ffffff !important;
}

/* Ensure both align properly */
.footer-bottom-text .row {
  width: 100%;
}


.map-section {
  position: relative;
}

.map-full {
  width: 100%;
  height: 500px;
  border: 0;
}

/* ⭐ Bubble Card */
.map-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 80px; /* rounded bubble */
  text-align: center;
  max-width: 500px;
  width: 50%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Title */
.map-card h4{
  color: #2c5aa0;
  margin-bottom: 10px;
  font-size: 20px;
}

/* Address */
.map-card p {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Support text */
.map-card h5 {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
}

/* Email */
.map-card a {
  color: #2c5aa0;
  font-size: 18px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 576px) {
  .map-card {
    padding: 20px;
    border-radius: 30px;
  }

  .map-full {
    height: 350px;
  }
}


.review-section {
  background: #f5f7fa;
  padding: 40px;
}

.review-slider {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.review-track {
  display: flex;
  transition: 0.5s;
}

/* 2 cards visible */
.review-card {
  min-width: 50%;
  padding: 30px;
  background: #fff;
  border: 1px solid #ddd;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Quote */
.quote {
  font-size: 35px;
  color: #2c5aa0;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
}

.dot.active {
  background: #2c5aa0;
}

.review-track {
  gap: 5px;
}

.review-card {
  min-width: calc(50% - 15px);
}


.review-card:nth-child(even) .quote {
  color: #2c5aa0;
}

.review-card:nth-child(odd) .quote {
  color: #999;
}


.review-card:nth-child(odd) {
  background: #ffffff;
}

.review-card:nth-child(even) {
  background: #eef3f9;
  border-left: 5px solid #2c5aa0; /* left blue strip */
}


/* Default card */
.review-card {
  background: #ffffff;
  margin-bottom: 10px;
}

/* Alternate card (2nd, 4th, 6th...) */
.review-card:nth-child(even) {
  background: #fffffff1; /* light grey */
}


/* Outer wrapper */
.cs-about-img {
  border-radius: 20px;
  overflow: hidden; /* 🔥 important */
}

/* Inner image */
.cs-about-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}


/* ==================================whatsappand callbuttion */



.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blink {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 225, 225, 0.9); /* Start with small red shadow */
    }
    60% {
        box-shadow: 0 0 14px 14px rgba(255, 0, 0, 0); /* Expand and fade out */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); /* Reset to no shadow */
    }
}

/* Style for the element */
.blinking-box {
    width: 50px;
    height: 50px;
    background-color: white; /* White background for visibility */
    border-radius: 50%; /* Make the box circular */
    animation: blinker 1.5s infinite ease-out; /* Apply the blinker animation */
}

.smsIcon {
    height: 40px;
    width: 50px;
    border-radius: 50%;
    position: relative;
    margin-left: 20px;
    font-weight: 800;
    margin-top: -20px;
}


.hidden {
    display: none;
}

#toggleButton {
    position: fixed;
    bottom: 4px;
    right: 1px;
    z-index: 999;
    background-color: #10ba0a;
    color: #fff;
    padding: 5px 5px;
    border: none;    
    /* border: 3px solid rgb(89, 202, 9); */
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    width: 50px;
    border-radius: 10px; /* Slightly rounded corners for a modern look */
    animation: blink 3s infinite; /* Apply blinking animation */
    background-image: url("../img/Imageswhatapp/SMS.png");

}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    #toggleButton {
        height: 40px; /* Reduce size for smaller screens */
        width: 40px;
        padding: 3px; /* Adjust padding */
        border-width: 2px; /* Reduce border size */
    }
}

@media (max-width: 480px) {
    #toggleButton {
        height: 70px; /* Further reduce size for very small screens */
        width: 20%;
        padding: 12px;
       
    }
}


.btn-whatsapp-pulse {
    background: #25d366;
    z-index: 1000; /* Ensure visibility */
    color: white;
    position: fixed; /* Fixed positioning for correct placement */
    bottom: 60px; /* Position above the bottom of the viewport */
    right: 3px; /* Align to the right */
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    background-image: url("../img/Imageswhatapp/Whatapp.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.callbackfuncation {
    background: #25d366;
    z-index: 999; /* Slightly lower than .btn-whatsapp-pulse */
    color: white;
    position: fixed; /* Fixed positioning for correct placement */
    bottom: 120px; /* Position above .btn-whatsapp-pulse */
    right: 3px; /* Align to the right */
    font-size: 40px;
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    background-image: url("../img/Imageswhatapp/Call.png");
    background-repeat: no-repeat;
    background-size: cover;
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 249, 33, 0.5);
    }
    100% {
        box-shadow: 0 0 0 14px rgba(235, 46, 4, 0);
    }
}