/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;

}

/* Show popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Content */
.popup-content {
  position: relative;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #fed20f;
}

/* Image Styling */
.popup-content img {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 8px;
  animation: fadeIn 0.8s ease-in-out forwards;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 0px; right: 0px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10;
    background: #fed20f;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 0px 5px;
}

/* Loader */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid red;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

  .hero-img {
  width: 100%;
  height: auto;
  display: block;
  animation: shake 0.5s infinite;
}

.wave-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.1; /* Adjust visibility */
  animation: waveMove 1s linear infinite;
}

.wave-overlay svg {
  width: 100%;
  height: 100%;
  fill: white; /* Light wave; adjust as needed */
  transform: rotate(180deg); /* wave down on top */
}

/* Wave Animation */
@keyframes waveMove {
  0% { transform: translateX(0) rotate(180deg); }
  100% { transform: translateX(-50%) rotate(180deg); }
}

 .hero-wave-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  
}
    .service-card {
        display: flex;
        align-items: flex-start;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-left: 6px solid #0d6efd;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .service-card:nth-child(even) {
        background: #f8f9fa;
        border-left-color: #198754;
    }

    .service-card i {
        font-size: 28px;
        color: #0d6efd;
        margin-right: 20px;
        min-width: 30px;
        padding-top: 4px;
    }

    .service-card h5 {
        margin: 0 0 6px 0;
        font-weight: 600;
        font-size: 18px;
    }

    .service-card p {
        margin: 0;
        font-size: 15px;
        color: #444;
    }

    .service-card a {
        font-weight: 500;
        color: #0d6efd;
        text-decoration: none;
    }

    .service-card a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .service-card {
            flex-direction: row;
        }

        .service-card i {
            margin-bottom: 0;
        }
    }
    
    .headn {
color: #0056ff;
    }
    
    .headn1 {
font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 46px;
        margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    }
        .headn2{
font-size: 30px;
    font-weight: 800;
    color: #000;
    line-height: 46px;
        margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    }
  .headp { 
    color: #111;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
/* Container with gradient border */
.live-button-container {
  display: inline-flex;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(270deg, #dee8fd, #003ed1);
  max-width: 402px;
}

/* Inner wrapper */
.live-button-wrapper {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  font-family: Inter, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #e91f3e;
  gap: 15px;
}

/* Live icon container */
.live-icon {
  position: relative;
  width: 15px;
  height: 15px;
}

/* Static dot */
.live-icon .dot {
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Pulse animation circle */
.live-icon .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: red;
  animation: pulseAnim 2s ease-out infinite;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.4;
}

/* Delay variants */
.pulse.delay-1 {
  animation-delay: 0.5s;
  opacity: 0.3;
}
.pulse.delay-2 {
  animation-delay: 1s;
  opacity: 0.2;
}

/* Pulse keyframes */
@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
  a.bpm-quote-new {
    background: #e21b22;
    color: #fff;
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 20px;
    font-size: 15px;
    padding: 10px 30px 10px 30px;
    border-radius: 5px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    -webkit-animation: 1s linear infinite sftm;
    animation: 1s linear infinite bpmm;
    -webkit-transition: .4s
}



a.bpm-quote-new svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}
@keyframes bpmm {
    0% {
        -webkit-box-shadow: 0 0 0 0 #710f18;
        box-shadow: 0 0 0 0 #710f18;
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
        box-shadow: 0 0 0 20px rgba(94, 223, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
        box-shadow: 0 0 0 0 rgba(94, 223, 255, 0);
    }
}
 ul { list-style-type: none; }

