* {
  font-family: "Poppins", sans-serif;
}

.span {
  color: #007bff;
}
.about-us-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: white;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 10px;
}

.about-us-content {
  flex: 1 1 400px;
  text-align: center;
}

.about-us-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-us-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding: 0 10px;
  text-align: justify;
  line-height: 1.6;
  color: #444;
}

.about-us-button {
  padding: 12px 24px;
  font-size: 0.9rem;
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.about-us-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #007bff;
  z-index: -1;
  transition: width 0.4s ease;
}

.about-us-button:hover {
  color: white;
}

.about-us-button:hover::before {
  width: 100%;
}

.about-us-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
  }

  .about-us-content {
    order: 2;
    text-align: center;
  }

  .about-us-image {
    order: 1;
    flex: 1 1 300px;
  }

  .about-us-image img {
    height: 300px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lobster+Two:ital,wght@0,700;1,400&display=swap");

.rave-section {
  width: 100%;
  height: 300px;
  background-image: url('../assets/images/roll.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.rave-container {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rave-box {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rave-animate 10s ease-in-out infinite alternate;
}

.rave-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 0.76em;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
  transform-style: preserve-3d;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) rotateX(calc(var(--i) * 22.5deg))
    translateZ(109px);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5) 90%,
    transparent
  );
}

.rave-box span i:nth-child(1) {
  color: white;
  font-style: normal;
}
.rave-box span i:nth-child(2) {
  color: orange;
  font-style: normal;
}

@keyframes rave-animate {
  0% {
    transform: perspective(500px) rotateX(0deg) rotate(5deg);
  }
  50% {
    transform: perspective(500px) rotateX(0deg) rotate(5deg);
  }
  100% {
    transform: perspective(50px) rotateX(360deg) rotate(5deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .rave-box span {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .rave-box span {
    font-size: 1em;
  }
}

.services-section {
  padding: 20px 20px;
  text-align: center;
  background-color: white;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  width: 300px;
  height: 250px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.image-wrapper img:hover {
  transform: scale(1.05);
}

.name-wrapper {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.8rem;
  background-color: black;
  padding: 10px 30px;
  color: white;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 15px 0;
}

.faq-container {
  max-width: 400px; /* Reduced width */
  margin: 0 auto;
}

.faq-card {
  background: #007bff;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 8px 10px; /* Smaller padding */
  display: flex;
  justify-content: space-between;
  align-items: right;
  cursor: pointer;
  text-align: left;
  position: relative;
  top: 5px;
}

.faq-question h3 {
  margin: 0;
  font-size: 0.8rem; /* Smaller text */
  color: white;
  flex: 1;
}

.faq-icon {
  width: 30px; /* Smaller icon */
  height: 30px;
  margin-left: 10px;
}

.faq-icon img {
  width: 100%;
  height: 100%;
}

.faq-answer {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.7rem;
  background-color:#FF7722;
}

.faq-card.active .faq-answer {
  padding: 0 12px 10px;
  max-height: 150px;
}

.faq-card.active .closed-icon {
  display: none;
}

.faq-card.active .open-icon {
  display: block !important;
}

.offer-section {
  padding: 40px 20px;
  max-width: 100%;
  margin: auto;
  background-color: white;
}

.offer-section .section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.offer-section .card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.offer-section .card {
  background: white;
  border: 2px solid #007bff;
  height: 150px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  z-index: 0;
  color: black;
}

/* Color fill effect */
.offer-section .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #007bff;
  transition: height 0.4s ease;
  z-index: -1;
}

.offer-section .card:hover::before {
  height: 100%;
}

.offer-section .card:hover {
  color: white;
}

.offer-section .card:hover i,
.offer-section .card:hover .link,
.offer-section .card:hover p,
.offer-section .card:hover h3 {
  color: white;
}

.offer-section .card.dark {
  background: white;
  color: black;
  border-color: #007bff;
}

/* Optional: use a different fill for dark cards */
.offer-section .card.dark::before {
  background-color: black;
}

.offer-section .card i {
  font-size: 60px;
  margin-bottom: 20px;
  color: #007bff;
  transition: color 0.3s ease;
}

.offer-section .card p {
  margin: 10px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.offer-section .card .card-hover {
  display: none;
}

.offer-section .card:hover .card-display {
  display: none;
}

.offer-section .card:hover .card-hover {
  display: block;
}

.offer-section .card .link {
  color: #007bff;
  margin-top: 20px;
}

.offer-section .card.dark .link {
  color: #007bff;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  background-color: white;
}

.blog-card {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid black;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 16px;
}

.blog-title {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #007bff;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.author-info {
  font-size: 0.9rem;
  color: #555;
}

.blog-date {
  font-size: 0.8rem;
  color: #888;
}

.blog-excerpt {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 12px;
  text-align: justify;
}

.blog-tags {
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  background: #e0f0ff;
  color: #007acc;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 6px;
}

.read-more-btn {
  background-color: #007bff;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background-color: rgb(20, 157, 241);
}

.blog-section-title {
  text-align: center;
  font-size: 2em;
  margin: 5px 0;
  width: 100%;
}

.catch-up-section {
  height: 150px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .catch-up-section {
    height: 300px;
  }
}

.info-item {
  display: flex;
  align-items: center;
  color: black;
  font-size: 16px;
  gap: 8px;
  margin: 5px 10px;
}

.info-item span {
  background-color: white;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
}

.info-item a {
  text-decoration: none;
  color: black;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-slider-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 40px;
  color: black;
  font-size: 2rem;
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.client-image-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #4a90e2;
}

.client-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
  max-width: 800px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: black;
  margin-bottom: 15px;
  font-style: italic;
}

.client-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #4a90e2;
  margin-bottom: 5px;
}

.client-position {
  color: #4a90e2;
  font-size: 0.9rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(74, 144, 226, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  padding: 15px;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s;
}

.slider-nav:hover {
  background-color: #4a90e2;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: #4a90e2;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .client-name {
    font-size: 1.1rem;
  }

  .slider-nav {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-slider-container {
    padding: 20px 10px;
  }

  .client-image-container {
    width: 80px;
    height: 80px;
  }

  .slider-nav {
    padding: 8px;
    font-size: 14px;
  }
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.contact-section .map,
.contact-section .form {
  width: 50%;
  padding: 16px;
  box-sizing: border-box;
}

.contact-section iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #007bff;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: black;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box {
  background: #fff;
  padding: 6px 10px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
  user-select: none;
  width: 80px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #007bff;
}

input[name="captcha_input"] {
  width: 110px;
  padding: 6px;
  border: 1px solid #000;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #007bff;
}

.form button {
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #007bff;
}

.form button:hover {
  background: #007bff;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .contact-section .map,
  .contact-section .form {
    width: 100%;
  }
}

.contact-section-wrapper {
  width: 100%;
}

.contact-heading {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.contact-heading h2 {
  font-size: 2rem;
  color: white;
  margin: 0;
}
