 
.container {
  max-width: 1240px;
  margin: 0 auto; 
  padding: 0 16px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 8px;
  }
}

body {
  font-family: "Chakra Petch", sans-serif;
}

.shadow {
  animation: shadow-pulse 3s infinite;
}

.shadow {
  box-shadow: 0px 0px 44px 0px rgba(23, 102, 255, 0.75);
}

/* Shockwave Effect */

@import url(https://fonts.googleapis.com/css?family=Raleway:300);

:root {
  --btn-border: 1px solid rgba(255, 255, 255, 0.2);
  --btn-bg: transparent;
  --btn-shadow: 1px 1px 25px 10px rgba(255, 255, 255, 0.5);
  --btn-text-color: #f4f4f4;
  --shine-degree: 120deg;
  --shine-color: rgba(255, 255, 255, 0.2);
  --shine-effect: linear-gradient(
    var(--shine-degree),
    transparent,
    var(--shine-color),
    transparent
  );
  --shine-transition: all 0.6s ease-in-out;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--shine-effect);
}

.btn-anim::before {
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  23%, 100% {
    left: 100%;
    transition-property: left;
  }
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 24px; /* Adjust the gap as needed */
    grid-auto-rows: minmax(0, auto); /* Ensure items fit in one row */
}

@media (max-width: 768px) {
    .testimonial-carousel {
        grid-template-columns: 1fr; /* One column on mobile */
    }
}

.testimonial-item {
    /* Existing styles */
    flex-direction: column; /* Ensure items stack vertically */
}
/* .checkmark {
    color: #05FF00; 
    margin-right: 12px; 
    font-size: 1.4rem;
} */
h2, h3 {
    font-style: italic;
}

/* Add this to your styles.css */
#contactModal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(36px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease-in-out;
}

#contactModal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

#contactModal > div {
    transform: scale(0.9);
    transition: transform 0.2s ease-in-out;
}

#contactModal:not(.hidden) > div {
    transform: scale(1);
}