/* Updated :root variables */
:root {
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #f72585;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gradient-start: #4361ee;
  --gradient-end: #3a0ca3;
}

/* Modern Navbar */
/* .navbar {
    background: rgba(45, 45, 45, 0.074);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 248, 248, 0.168);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
} */
/* Updated Navbar with better visibility */
/* Modern Glass Navbar */
.navbar {
  background: rgba(244, 240, 240, 0.204) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0) !important;
  padding: 8px 0;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand { 
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.03);
}

.brand-gradient {
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.nav-link {
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  color: rgba(9, 9, 9, 0.9) !important;
  transition: all 0.3s ease;
  padding: 8px 0 !important;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: rgb(237, 7, 7) !important;
}

/* Enhanced Underline Animation */
.hover-underline {
  display: inline-block;
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

/* Navbar CTA Button */
.navbar .btn-primary {
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(67, 97, 238, 0.2);
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(67, 97, 238, 0.3);
}

/* Mobile Menu Toggler */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  opacity: 0.8;
}

/* .brand-gradient {
  background: linear-gradient(
    90deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} */

/* Hover Underline Animation */
.hover-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

/* Modern Card Hover Effects */
.service-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
  padding: 2rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: white;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Portfolio Card Hover Effect */
.portfolio-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card .card-body {
  position: relative;
  z-index: 2;
  color: rgb(0, 0, 0);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .card-body {
  transform: translateY(0);
}

.portfolio-card .card-img-top {
  transition: transform 0.5s ease;
}

.portfolio-card:hover .card-img-top {
  transform: scale(1.1);
}

/* Button Hover Effects */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

/* Hero Section Update */
.hero-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(67, 97, 238, 0.1) 0%,
    rgba(58, 12, 163, 0.05) 100%
  );
  z-index: -1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(90deg, #212529 0%, #4361ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}
/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}
/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg2Nyw5NywyMzgsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4=');
    opacity: 0.5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(58, 12, 163, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 350px;
}

/* Base card styles */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 0; /* baseline */
    will-change: opacity, transform;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

/* Remove the rule that forced the first child to be visible at all times.
   Let JS add .active to the first card on load instead. */

/* Active card */
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2; /* bring active card to front */
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
    line-height: 1.7;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: rgba(67, 97, 238, 0.1);
    position: absolute;
    left: -15px;
    top: -30px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

/* media query (make sure the @ is present) */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }
    .testimonial-text {
        padding-left: 30px;
        font-size: 1.1rem;
    }
    .ad-content {
        padding: 30px 20px;
    }
    .ad-content h3 {
        font-size: 1.5rem;
    }
    .testimonial-container {
        height: 420px;
    }
}


/* Advertisement Modal */
.ad-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* High z-index to be on top of everything */
    /* Initial state: completely hidden */
    opacity: 0;
    visibility: hidden;
    /* Smooth transition for fading in/out */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px); /* Blurs content behind the modal */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
}

/* This class is added by JavaScript to show the modal */
.ad-modal.show {
    opacity: 1;
    visibility: visible;
}

.ad-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* Initial state for modal content: slightly off-screen and hidden */
    transform: translateY(20px);
    opacity: 0;
    /* Smooth transition for sliding and fading */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* When the modal is shown, slide and fade the content in */
.ad-modal.show .ad-content {
    transform: translateY(0);
    opacity: 1;
}

.ad-content h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.ad-content p {
    color: #6c757d;
    font-size: 1.1rem;
}

.ad-content img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.close-ad {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #6c757d;
}

.close-ad:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
}



/* Why Choose Us Animation CSS (if you have these elements) */
.grid-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grid-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section Styling */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.image-frame {
    position: absolute;
    width: 90%;
    height: 90%;
    bottom: 0;
    right: 0;
    border: 8px solid rgba(67, 97, 238, 0.1);
    border-radius: 16px;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-image-wrapper:hover .image-frame {
    border-color: rgba(67, 97, 238, 0.2);
    transform: translate(-10px, -10px);
}

.team-image-wrapper img {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-image-wrapper:hover img {
    transform: translate(-5px, -5px);
}

.floating-dots {
    position: absolute;
    background-image: radial-gradient(#4361ee 2px, transparent 2px);
    background-size: 20px 20px;
    width: 150px;
    height: 150px;
    opacity: 0.15;
    z-index: 0;
}

.dots-1 {
    top: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.dots-2 {
    bottom: -20px;
    right: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.section-subtitle {
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.section-subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-section {
        text-align: center;
    }
    
    .section-subtitle:before {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .d-flex {
        justify-content: center;
        text-align: left;
    }
}
/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff 0%, #4361ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-link:hover::before {
    width: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-form {
    position: relative;
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.send-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-icon:hover {
    background: var(--secondary-color);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
    
    .copyright {
        margin-bottom: 0;
    }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Section Reveal Effect */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Button Animation */
.whatsapp-button a {
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
