/* Custom overrides on top of Bootstrap 5 / style.css */

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffde16;
  color: #1a1a1a;
  font-weight: 700;
  padding: 8px 8px 8px 24px;
  border-radius: 15px;
  text-decoration: none;
  border: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.view-all-btn:hover,
.view-all-btn:focus {
  background-color: #ffde16;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.view-all-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #613190;
  color: #fff;
}

.view-all-btn__icon i {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

/* Get In Touch (home "Our Event") */
.get-in-touch-area {
  background-color: #fff;
}
.get-in-touch-heading {
  color: #0a1e5e;
  font-size: 2.25rem;
}
.git-input {
  border: 1.5px solid #b8d8ff;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  color: #6b7280;
  background-color: #fff;
  box-shadow: none;
}
.git-input::placeholder {
  color: #9aa3b2;
}
.git-input:focus {
  border-color: #2c9bf4;
  box-shadow: 0 0 0 3px rgba(44, 155, 244, 0.15);
  color: #111;
  background-color: #fff;
}
.git-textarea {
  border-radius: 22px;
  min-height: 130px;
  resize: vertical;
}
.git-send-btn {
  background-color: #ffd60a;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 0.7rem 6.5rem;
  font-weight: 700 !important;
  /* border: none; */
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #2c9bf4;
}
.git-send-btn:hover,
.git-send-btn:focus {
  background-color: #f5c400;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid #2c9bf4;
}
.git-map-wrap {
  display: flex;
  place-items: center;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #eef1f9;
  box-shadow: 0 10px 25px rgba(10, 30, 94, 0.08);
}
.git-service-card {
  flex: 0 0 45%;
  background-color: #eef1f9;
  padding: 28px 26px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.git-service-card h5 {
  color: #000000;
  font-size: 1.45rem;
}
.git-service-card p {
  font-size: 1.15rem;
  color: #000000;
  line-height: 1.5;
}
.git-map-wrap iframe {
  display: block;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  height: 240px;
  border: 0;
}
@media (max-width: 575.98px) {
  .git-map-wrap {
    flex-direction: column;
  }
  .git-service-card {
    flex: 0 0 auto;
  }
  .git-map-wrap iframe {
    height: 220px;
  }
}

/* FAQ + Contact section (home "Our Event") */
.faq-contact-area {
  background-color: #ffffff;
  padding: 70px 0;
}

.faq-contact-area .faq-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  opacity: 0.6;
}

.faq-contact-area .faq-accordion .accordion-item {
  background: transparent;
  /* border-radius: 50px; */
  overflow: hidden;
}

.faq-contact-area .accordion-button {
  background-color: #603996;
  color: #ffffff;
  font-weight: 600;
  /* border-radius: 50px !important; */
  padding: 14px 24px;
  box-shadow: none;
}

.faq-contact-area .accordion-button:not(.collapsed) {
  background-color: #603996;
  color: #ffffff;
}

.faq-contact-area .accordion-button::after {
  background-image: none;
  content: "\f13a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffd60a;
  width: auto;
  height: auto;
  font-size: 18px;
  transform: none;
  transition: color 0.2s ease;
}

.faq-contact-area .accordion-button:not(.collapsed)::after {
  color: #f8dd2a;
}

.faq-contact-area .accordion-body {
  color: #ffffffb3;
  padding: 14px 24px 4px;
  border: 1px solid #ffde04;
  margin-top: 8px;
}

.faq-form-card {
  background-color: #2c9bf4;
  border-radius: 20px;
  padding: 40px 30px;
}

.faq-form-card .form-control {
  border: none;
  padding: 14px 20px;
}

.faq-form-card textarea.form-control {
  border-radius: 16px;
  resize: none;
}

.faq-form-card .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.35);
}

.send-question-btn {
  background-color: #ffd60a;
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  padding: 12px 60px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.send-question-btn:hover,
.send-question-btn:focus {
  background-color: #f5c400;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.faq-block .icon {
  position: relative;
}
.faq-block .icon .line-three {
  position: absolute;
  top: 50%;
  left: 70px;
  height: 2px;
  width: 45px;
  background-color: #fff;
  /* margin-left: -15px; */
}
.faq-block .icon .line-four {
  position: absolute;
  top: 60%;
  left: 70px;
  height: 2px;
  width: 45px;
  background-color: #fff;
  /* margin-left: -15px; */
}

/* Contact page */
.contact-section .contact-heading {
  color: #0a1e5e;
  font-size: 2.25rem;
}
.contact-section .contact-info-label {
  color: #000000;
  font-weight: 600;
  font-size: 1.2rem;
  /* margin-top: 1rem; */
}
.contact-section .contact-info-value,
.contact-section .contact-info-value a {
  color: #111;
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.contact-section .contact-input {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: #6b7280;
  border: 1.5px solid #613190;
  border-radius: 10px;
}
.contact-section .contact-input:focus {
  background-color: #eef1fb;
  box-shadow: 0 0 0 2px rgba(10, 30, 94, 0.15);
  color: #111;
}
.contact-section textarea.contact-input {
  min-height: 160px;
  resize: vertical;
}
.contact-section .contact-send-btn {
  background-color: #f5e90b;
  color: #111;
  border-radius: 0;
  letter-spacing: 0.05em;
  border: none;
  border: 2px solid #000000;
}
.contact-section .contact-send-btn:hover {
  background-color: #e6da00;
  color: #111;
}

/* Navbar: take normal flow space so following sections (e.g. hero) sit below it,
   no manual offsets required. Overrides the theme's absolute positioning. */
.navbar-area.nav-style-02 {
  position: relative !important;
  top: 0 !important;
  background-color: #fff;
}

/* Sticky navbar: body has overflow-x:hidden which breaks position:sticky,
   so we toggle position:fixed via JS on scroll. */
.navbar-area.nav-style-02.is-stuck {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: navSlideDown 0.3s ease;
  z-index: 1030;
}
@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Home testimonials carousel */
.testimonials-section .testimonial-card {
  background: #eef1fb;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.testimonials-section .carousel-indicators {
  justify-content: center;
}
.testimonials-section .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c9d0e0;
  border: 0;
  margin: 0 4px;
  opacity: 1;
}
.testimonials-section .carousel-indicators .active {
  background-color: #2b97ed;
}

.single-service-grid:hover {
  transform: scale(1.05);
}

/* =========================================
   Hero Slider (homepage)
   ========================================= */
.main-slider {
  position: relative;
}
.hero-carousel {
  position: relative;
  overflow: hidden;
  /* border-radius: 18px; */
  /* margin: 18px; */
}
.hero-bg-layer .carousel-item {
  height: clamp(420px, 70vh, 640px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 2s ease;
}
.hero-carousel .carousel-item {
  transition: transform 0.4s ease-in-out;
}
.hero-carousel .carousel-fade .carousel-item {
  transition: opacity 0.3s linear;
}
.hero-bg-layer .carousel-item.active {
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  ); */
}
.hero-foreground {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}
.hero-foreground .container {
  pointer-events: auto;
}
.hero-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: stretch;
  min-height: 420px;
}

/* Captions */
.hero-text-col {
  position: relative;
  min-height: 260px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-caption-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.hero-caption-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.hero-caption-item h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 620px;
}
.hero-caption-item p {
  color: rgba(255, 255, 255);
  /* font-size: 0.95rem; */
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px 5px 22px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  border: 2px solid transparent;
}
.hero-btn-primary {
  background: #ffde16;
  color: #1a1a1a;
  border-color: #ffde16;
}
.hero-btn-primary:hover {
  background: #ffde16;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 194, 14, 0.35);
}
.hero-btn-outline {
  /* background: transparent; */
  backdrop-filter: blur(50px);
  color: #fff;
  border-color: #ffde16;
}
.hero-btn-outline:hover {
  background: rgba(255, 194, 14, 0.15);
  color: #fff;
  transform: translateY(-2px);
}
.hero-btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 30%;
  background: #1a1a1a;
  color: #ffc20e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.hero-btn-outline .hero-btn-icon {
  background: #ffc20e;
  color: #1a1a1a;
}

/* Right column */
.hero-side-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 320px;
  gap: 24px;
}

/* Vertical numbered indicators */
.hero-indicators {
  position: static;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.hero-indicators [data-bs-target] {
  box-sizing: border-box;
  width: 40px !important;
  height: 40px !important;
  margin: 0;
  border-radius: 50%;
  /* border: 1px solid rgba(255, 255, 255, 0.55); */
  /* border-top: 1px solid rgba(255, 255, 255, 0.55); */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.55); */
  background: #ffde16 !important;
  color: #000000 !important;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 1;
  text-indent: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}
.hero-indicators [data-bs-target].active {
  background: #662d91 !important;
  color: #ffffff !important;
  border-color: #ffde16 !important;
  transform: scale(1.08) !important;
}

/* Stats card (bottom-right) */
.hero-stats-card {
  /* background: rgba(0, 0, 0, 0.55); */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 194, 14, 0.55);
  border-radius: 10px;
  padding: 30px 18px;
  color: #fff;
  min-width: 240px;
  text-align: left;
}
.hero-stats-card .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-stats-card .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 2px;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.hero-stats-card .client-avatars {
  display: inline-flex;
  vertical-align: middle;
  margin: 0;
}
.hero-stats-card .client-avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
}
.hero-stats-card .client-avatars img:first-child {
  margin-left: 0;
}
.hero-stats-card .stat-availability {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0 12px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-stats-card{
    display: none;
  }
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-side-col {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: auto;
  }
  .hero-indicators {
    flex-direction: row;
    align-items: center;
    gap: 3px;
  }
}
@media (max-width: 550px) {
  
  .hero-content-grid {
    gap: 10px !important;
  }
}
@media (max-width: 434px) {
  .hero-content-grid {
    gap: 8px !important;
  }
  .hero-caption-item h1 {
    line-height: 1.05 !important;
    margin-bottom: 5px !important;
    font-size: 24px !important;
  }
  .hero-caption-item p {
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    font-size: 11px !important;
  }
  .hero-side-col {
    gap: 10px !important;
  }
  .hero-btn {
    padding: 2px 18px 2px 22px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-carousel {
    margin: 10px;
    border-radius: 14px;
  }
  .hero-bg-layer .carousel-item {
    height: 520px;
  }
  .hero-side-col {
    flex-direction: column;
    /* align-items: flex-start; */
  }
  .hero-stats-card {
    width: 100%;
  }
}

.imagetext {
  border: 2px solid #613190;
}

/* ===== Service detail: image-trio cards (numbered badge overlay) ===== */
.sd-image-trio .imagetext {
  background: #f2eafb;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(20, 0, 40, 0.04);
}
.sd-image-trio .imagetext-media {
  position: relative;
  overflow: hidden;
}
.sd-image-trio .imagetext-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.sd-image-trio .imagetext-num {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #f3e721;
  color: #0d0d0d;
  font-weight: 800;
  font-size: 20px;
  padding: 10px 12px;
  border-radius: 0px 8px 0px 0px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.sd-image-trio .imagetext-body {
  padding: 32px 22px 26px;
  color: #000000;
  font-size: 14.5px;
  line-height: 1.65;
}
.sd-image-trio .imagetext-body :is(h1, h2, h3, h4, h5, h6) {
  color: #0d0d0d;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
}
.sd-image-trio .imagetext-body p {
  margin: 0;
  color: #000000;
}
.sd-image-trio .imagetext-body p + p {
  margin-top: 8px;
}

a {
  text-decoration: none !important;
}

.team-item-offer {
  overflow: hidden;
}


p{
  font-size: 18px !important;
}