.consultation-banner-section {
  padding: 3rem 0;

  background: #000;
}

.consultation-banner-section .container {
  max-width: 1300px;
}
.banner-left-content {
  padding-right: 30px;
}

.trust-badge {
  display: inline-block;
  /* background: rgba(10, 120, 190, 0.1); */
  color: #0a78be;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  background-color: #fff;
}

.banner-heading {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.banner-heading .highlight {
  color: #0a78be;
  border-bottom: 3px solid rgba(10, 120, 190, 0.3);
}

.banner-description {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 25px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 18px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  font-size: 12px;
  color: #1e293b;
}

.feature-item i {
  color: #0a78be;
  font-size: 16px;
}

.confidential-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
}

.confidential-note i {
  color: #0a78be;
  font-size: 14px;
}

.consultation-form-card {
  background: white;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.consultation-form-card form input,
.consultation-form-card form select {
  border-radius: 15px;
  height: 50px;
  background: #f4f3f8 !important;
  box-shadow: none !important;
  border: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #0a78be;
  color: white;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #08609b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 120, 190, 0.3);
}

.form-footer-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 20px;
}

.consultation-banner-section textarea {
  border-radius: 15px;
  background: #f4f3f8 !important;
  box-shadow: none !important;
  border: none;
}

.form-footer-note i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .consultation-banner-section {
    padding: 50px 0;
  }

  .banner-heading {
    font-size: 32px;
  }

  .banner-left-content {
    padding-right: 0;
  }

  .consultation-form-card {
    padding: 25px 20px;
  }
}

/* quick contact section */

.quick-contact-section {
  background: #f5f7fa;
}

.qc-title {
  font-size: 3rem;
  font-weight: 600;
  color: #1f2937;
}

.qc-subtitle {
  font-size: 16px;
  color: #6b7280;
}

.qc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 18px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.qc-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.qc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
}

.qc-text p {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #111827;
}

.qc-text span {
  font-size: 14px;
  color: #000;
}

/* Icon Colors */
.qc-pink {
  background: #ffe4ec;
  color: #ec4899;
}

.qc-green {
  background: #e6f9f0;
  color: #22c55e;
}

.qc-yellow {
  background: #fff4e5;
  color: #f59e0b;
}

.qc-red {
  background: #fff4e5;
  color: red;
}

.qc-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

.process-section {
  background: #f5f7fa;
}

.process-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #0a1628;
}

.process-row {
  position: relative;
}

/* card */
.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px 25px;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* step circle */
.step-circle img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* text */
.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* tag */
.process-tag {
  display: inline-block;
  background: #fff3e0;
  color: #c08400;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* responsive */
@media (max-width: 768px) {
  .process-row::before {
    display: none;
  }
}

/* section */
.why-full-section {
  width: 100%;
  background: #f5f7fa;
  padding: 3rem 40px;
}

/* inner container */
.why-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* top label */
.why-label {
  font-size: 13px;
  letter-spacing: 3px;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 10px;
}

/* heading */
.why-heading {
  font-size: 3rem;
  font-weight: 600;
  color: #0a1628;
  line-height: 1.3;
  margin-bottom: 50px;
}

/* flex layout */
/* flex layout */
.why-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

/* 5 columns on desktop */
.why-box {
  flex: 0 0 calc(20% - 20px);
  /* 5 in one row */
  max-width: calc(20% - 20px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
  .why-box {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
  .why-box {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-heading {
    font-size: 28px;
  }
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* icon */
.why-icon img {
  width: auto;
  height: 70px;
  margin-bottom: 10px;
}

/* title */
.why-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 10px;
}

/* description */
.why-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}

/* responsive */
@media (max-width: 992px) {
  .why-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .why-heading {
    font-size: 30px;
  }

  .why-box {
    max-width: 100%;
  }
}

/* case studies_sec section start */
.casestudies_sec {
  margin: 2rem 0 4rem 0;
  position: relative;
}

.viewCaseStudies {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 10px 1.5rem;
}

.casestudies_sec h4 {
  text-align: center;
  line-height: normal;
  font-size: 2.7rem;
  color: #132948;
  font-weight: 700;
  text-transform: capitalize;
}

.caseStudiesSliderBox h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}

.casestudies_slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-casestudies {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.caseStudiesSliderBox {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.caseStudiesBottomArrows {
  position: absolute;
  /* bottom: 15px; */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 40;
}

.caseStudiesBottomArrows button {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: none;
  padding: 8px;
  background-color: #0b79be;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.caseStudiesBottomArrows button:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesBottomArrows button i {
  font-size: 1rem;
}

/* place arrows slightly outside the slider for better touch */
.caseStudiesLeftArrow {
  left: -24px;
}

.caseStudieRightArrow {
  right: -24px;
}

.caseStudiesLeftArrow:hover,
.caseStudieRightArrow:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesLeftArrow i,
.caseStudieRightArrow i {
  font-size: 1.2rem;
}

.case_box {
  padding: 15px;
  border-radius: 20px;
  height: 380px;
  align-items: stretch;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.case_box p {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  color: #fff;
  margin-bottom: 2rem;
}

.case_logo img {
  margin-bottom: 1rem;
  height: auto;
  width: 100px;
}

.case_img img {
  float: right;
  /* max-height: 350px; */
  width: 100%;
  height: auto;
  text-align: center;
}

.img-landscape {
  padding: 10px 6px 10px 0;
  align-items: center !important;
  justify-content: center !important;
}

.img-wrapper {
  /* position: absolute; */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-landscape img {
  width: 100%;
  height: auto;
  /* max-height: 100%; */
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
}

.case-available {
  display: flex;
  gap: 10px;
  margin-bottom: 3rem;
  align-items: center;
}

.img-portrait {
  align-items: flex-end;
}

.img-portrait img {
  /* height: 100%; */
  width: auto;
  object-fit: contain;
  object-position: bottom;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 -8px 24px rgba(0, 0, 0, 0.4));
}

.case-available p {
  /* marg */
  margin-bottom: 0;
}

.case-available img {
  filter: invert(1);
  width: 40px;
  height: 40px;
}

/* case studies section end */
@media only screen and (max-width: 500px) {
  /*  */
  .case_logo img {
    margin-bottom: 1rem;
    height: 50px;
    width: auto;
    max-width: 140px;
    display: block;
  }

  .casestudies_sec h4 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .img-wrapper {
    margin-top: 1.5rem;
  }

  .casestudies_slider {
    padding-bottom: 1rem;
  }

  .caseStudiesSliderBox {
    min-width: 100%;
  }

  .caseStudiesLeftArrow,
  .caseStudieRightArrow {
    /* z-index: 1000 !important; */
    top: 95% !important;
  }

  .caseStudieRightArrow {
    right: 125px;
  }

  .caseStudiesLeftArrow {
    left: 125px;
  }

  .caseStudiesSliderBox {
    padding: 20px;
  }

  .case-available p {
    display: inline;
  }

  /* FIX SLIDER HEIGHT + NO BLANK SPACE */
  .case_box {
    height: auto !important;
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
  }

  /* FIX SLIDER ITEM WIDTH */
  .caseStudiesSliderBox {
    min-width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  /* FIX TRACK HEIGHT */
  .slider-casestudies {
    align-items: stretch;
  }

  /* FIX IMAGE SIZE */
  .img-portrait img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
  }

  .img-landscape img {
    max-height: 180px;
    width: 100%;
  }

  /* REMOVE EXTRA SPACE */
  .casestudies_slider {
    height: auto;
    overflow: hidden;
  }

  /* CENTER CONTENT */
  .case_box .row {
    flex-direction: column;
    text-align: center;
  }

  /* OPTIONAL: HIDE LONG TEXT */
  .case_box p {
    display: none;
  }

  /* for other section */
  .qc-title,
  .process-title,
  .why-heading,
  .about-testimonials-title,
  .faq-heading {
    font-size: 2rem;
  }
}

/* Section */
.about-testimonials {
  padding: 2rem 0;
  background: #f9fafc;
}

/* Header */
.about-testimonials-header {
  margin-bottom: 50px;
}

.about-testimonials-subtitle {
  color: orange;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.about-testimonials-title {
  font-size: 3rem;
  font-weight: 600;
  color: #0f172a;
}

/* Card */
.about-testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: 0.3s ease;
}

.about-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Stars */
.about-testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Text */
.about-testimonial-text {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* User */
.about-testimonial-user {
  display: flex;
  align-items: center;
}

.about-user-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  margin-right: 12px;
}

/* Avatar Colors */

.about-testimonial-user h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.about-testimonial-user span {
  font-size: 14px;
  color: #64748b;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .about-testimonials-title {
    font-size: 26px;
  }

  .about-testimonial-card {
    padding: 20px;
  }
}

.faq-section {
  width: 100%;
  background: #f5f7fa;
  padding: 0 0 3rem 0;
}

.faq-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 2.5rem;
}

/* grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* item */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a1628;
  margin: 0;
}

/* icon */
.faq-icon {
  width: 30px;
  height: 30px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0a1628;
}

/* answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
  line-height: 1.6;
}

/* active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 28px;
  }
}
