* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* HEADER */
/* LOGO IMAGE */
.site-logo {
  max-height: 30px;   /* desktop */
  width: auto;
  display: block;
}

/* MOBILE LOGO SIZE */
@media (max-width: 992px) {
  .site-logo {
    max-height: 34px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* LOGO */
.logo-link {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

/* DESKTOP NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  cursor: pointer;
}

/* DESKTOP DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-title {
  display: flex;
  align-items: center;
  gap: 3px;
}

.dropdown-icon {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  width: 340px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 12px;
}

.dropdown-list a {
  font-size: 14px;
  color: #1f2937;
  text-decoration: none;
}

.dropdown-list a:hover {
  color: #2563eb;
}

/* SHOW DESKTOP DROPDOWN */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* CTA */
.header-btn {
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

/* HAMBURGER */
.header-toggle {
  display: none;
}

.toggle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggle-wrapper span {
  width: 26px;
  height: 3px;
  background: #111827;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #ffffff;
  padding-top: 80px;
}

.mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.mobile-link {
  font-size: 15px;
  color: #111827;
  text-decoration: none;
}

/* MOBILE DROPDOWN */
.mobile-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.mobile-icon {
  transition: transform 0.3s ease;
}

.mobile-btn {
  margin-top: 10px;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .header-toggle {
    display: block;
  }
}
/* HERO SECTION */
.hero-section {
  width: 100%;
  margin-top: 72px; /* height of fixed header */
}

.hero-wrapper {
  min-height: calc(100vh - 72px);
  background-image: url("images/coverimage-home.webp"); /* ADD YOUR IMAGE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}

.hero-overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

.hero-row {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-left {
  width: 100%;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TEXT */
.hero-heading h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hero-subheading p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
}

/* CTA */
.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-heading h1 {
    font-size: 34px;
  }

  .hero-subheading p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-heading h1 {
    font-size: 28px;
  }

  .hero-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}
/* ABOUT SECTION */
.about-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f9fafb;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.about-text p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

/* POINTS */
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.about-point {
  font-size: 15px;
  color: #111827;
  font-weight: 500;
}

/* RIGHT IMAGE */
.about-image-wrapper {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .about-row {
    grid-template-columns: 1fr;
  }

  .about-heading h2 {
    font-size: 30px;
  }

  .about-image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .about-heading h2 {
    font-size: 26px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}
/* WHY CHOOSE US */
.why-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.why-description p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.7;
}

.why-highlight {
  border-left: 4px solid #2563eb;
  padding-left: 14px;
}

.why-highlight p {
  font-size: 15.5px;
  color: #1f2937;
  font-weight: 500;
}

/* RIGHT CARDS */
.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card-number {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
}

.why-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.why-card-text {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-row {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 28px;
  }
}
/* HOW IT WORKS */
.process-section {
  width: 100%;
  padding: 110px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.process-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.process-heading-wrapper {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.process-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.process-subheading p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.7;
}

/* FLOW */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* VERTICAL LINE */
.process-flow::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.2),
    rgba(37, 99, 235, 0.6)
  );
}

/* STEP */
.process-step {
  display: flex;
  gap: 30px;
  position: relative;
}

/* NUMBER CIRCLE */
.process-step-indicator {
  min-width: 46px;
  height: 46px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  z-index: 2;
}

/* CARD */
.process-step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  max-width: 620px;
  transition: transform 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-6px);
}

.process-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.process-step-text {
  margin-top: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-flow::before {
    display: none;
  }

  .process-step {
    gap: 16px;
  }

  .process-step-card {
    padding: 24px;
  }

  .process-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .process-heading h2 {
    font-size: 26px;
  }

  .process-step-indicator {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
/* PROCESS SECTION */
.process-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.process-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.process-heading-wrapper {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.process-heading-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.process-heading-wrapper p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.7;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* CARD */
.process-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.15);
}

/* HEADER (ICON + TITLE INLINE) */
.process-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* ICON */
.process-icon {
  width: 46px;
  height: 46px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* TITLE */
.process-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

/* TEXT */
.process-text {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-heading-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .process-heading-wrapper h2 {
    font-size: 26px;
  }

  .process-card {
    padding: 28px;
  }

  .process-title {
    font-size: 18px;
  }
}

/* EXPERTISE SECTION */
.expertise-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.expertise-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.expertise-heading-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.expertise-heading-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.expertise-heading-wrapper p {
  margin-top: 12px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  align-items: stretch;
}

/* ITEM */
.expertise-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  background: #ffffff;
  transition: all 0.35s ease;
  position: relative;
}

.expertise-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    circle at top,
    rgba(37, 99, 235, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.expertise-item:hover::before {
  opacity: 1;
}

.expertise-item:hover {
  transform: translateY(-10px);
}

/* ICON */
.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 30px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* TITLE */
.expertise-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-heading-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-heading-wrapper h2 {
    font-size: 26px;
  }
}
/* SECTION */
.testimonial-slider-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.testimonial-slider-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* HEADING */
.testimonial-slider-heading {
  max-width: 720px;
  margin: 0 auto 60px;
}

.testimonial-slider-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.testimonial-slider-heading p {
  margin-top: 12px;
  font-size: 16.5px;
  color: #4b5563;
}

/* SLIDER */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  max-width: 680px;
  padding: 40px;
  border-radius: 20px;

}

.testimonial-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}

.testimonial-user {
  margin-top: 22px;
}

.testimonial-user .name {
  font-weight: 600;
  color: #111827;
}

.testimonial-user .meta {
  font-size: 13.5px;
  color: #6b7280;
}

/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-size: 20px;
  cursor: pointer;
  color: #2563eb;
  transition: all 0.3s ease;
  z-index: 2;
}

.slider-arrow:hover {
  background: #2563eb;
  color: #ffffff;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* DOTS */
.testimonial-dots {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #c7d2fe;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #2563eb;
  transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-slider-heading h2 {
    font-size: 30px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }
}
/* FAQ SECTION */
.faq-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.faq-heading-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq-heading-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.faq-heading-wrapper p {
  margin-top: 12px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  font-weight: 500;
  color: #2563eb;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: #374151;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-heading-wrapper h2 {
    font-size: 30px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-heading-wrapper h2 {
    font-size: 26px;
  }
}
/* FOOTER */
.site-footer {
  background: #1b2e46;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 30px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 18px;
}

/* ABOUT */
.footer-about-text p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* TITLES */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    padding: 60px 20px 20px;
  }
}
/* ABOUT US HERO */
.about-hero-section {
  width: 100%;
  height: 360px;
  background-image: url("images/coverimage-copy.webp"); /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* OVERLAY */
.about-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.about-hero-container {
  width: 100%;
  padding: 0 20px;
}

/* CONTENT */
.about-hero-content {
  text-align: center;
}

.about-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero-section {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    height: 240px;
  }

  .about-hero-content h1 {
    font-size: 32px;
  }
}
/* WHO WE ARE SECTION */
.who-we-are-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.who-we-are-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */
.who-we-are-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.who-we-are-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.who-we-are-content .lead-text {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 18px;
}

.who-we-are-content p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* IMAGE */
.who-we-are-image-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.who-we-are-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .who-we-are-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-we-are-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .who-we-are-section {
    padding: 70px 0;
  }

  .who-we-are-content h2 {
    font-size: 26px;
  }

  .who-we-are-content .lead-text {
    font-size: 16.5px;
  }
}
/* OUR MISSION SECTION */
.our-mission-section {
  width: 100%;
  padding: 100px 0;
  background-color: #f9fafb;
}

.our-mission-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */
.our-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.our-mission-image-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.our-mission-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.our-mission-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.mission-lead {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 18px;
}

.our-mission-content p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .our-mission-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .our-mission-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .our-mission-section {
    padding: 70px 0;
  }

  .our-mission-content h2 {
    font-size: 26px;
  }

  .mission-lead {
    font-size: 16.5px;
  }
}
/* OUR VISION SECTION */
.our-vision-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.our-vision-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */
.our-vision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.our-vision-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.vision-lead {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 18px;
}

.our-vision-content p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* IMAGE */
.our-vision-image-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.our-vision-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .our-vision-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .our-vision-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .our-vision-section {
    padding: 70px 0;
  }

  .our-vision-content h2 {
    font-size: 26px;
  }

  .vision-lead {
    font-size: 16.5px;
  }
}
/* CORE VALUES SECTION */
.core-values-section {
  width: 100%;
  padding: 100px 0;
  background-color: #f9fafb;
}

.core-values-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.core-values-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.core-values-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.core-values-heading p {
  margin-top: 12px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* GRID */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.core-value-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-8px);
}

/* TEXT */
.core-value-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.core-value-text {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-values-section {
    padding: 70px 0;
  }

  .core-values-heading h2 {
    font-size: 26px;
  }
}
/* OUR TEAM SECTION */
.our-team-section {
  width: 100%;
  padding: 100px 0;
  background-color: #ffffff;
}

.our-team-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADING */
.our-team-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.our-team-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.our-team-heading p {
  margin-top: 12px;
  font-size: 16.5px;
  color: #4b5563;
  line-height: 1.6;
}

/* GRID */
.our-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.team-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.team-image {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e5e7eb;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.team-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.team-content span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
}

.team-content p {
  margin-top: 14px;
  font-size: 15.5px;
  color: #374151;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .our-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-team-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .our-team-grid {
    grid-template-columns: 1fr;
  }

  .our-team-section {
    padding: 70px 0;
  }

  .our-team-heading h2 {
    font-size: 26px;
  }
}
/* ABOUT CTA SECTION */
.about-cta-section {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #1b2e46, #243b55);
}

.about-cta-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

/* CONTENT */
.about-cta-content {
  text-align: center;
  color: #ffffff;
}

.about-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-cta-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #dbeafe;
  max-width: 720px;
  margin: 0 auto 30px;
}

/* BUTTON */
.about-cta-actions {
  display: flex;
  justify-content: center;
}

.about-cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-cta-content h2 {
    font-size: 30px;
  }

  .about-cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-cta-section {
    padding: 70px 0;
  }

  .about-cta-content h2 {
    font-size: 26px;
  }
}
.contact-hero {
  height: 300px;
  background: url("images/contact-banner.webp") center/cover no-repeat;
}


.contact-hero-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .contact-hero { height: 220px; }
  .contact-hero-overlay h1 { font-size: 30px; }
}
.contact-info {
  margin-top: -60px;
  padding-bottom: 80px;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.info-card p {
  color: #374151;
}

@media (max-width: 992px) {
  .contact-info-container {
    grid-template-columns: 1fr;
  }
}
.contact-main {
  padding: 100px 0;
}

.contact-main-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  /*display: grid;*/
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 12px;
  border: none;
}

/* FORM */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.form-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  background: #0f3b53;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-main-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}
/* SERVICE HERO BASE */
.service-hero {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}
.crypto-romance-hero-image{
    background-image: url("images/romance-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-romance-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-romance-hero-image > * {
  position: relative;
  z-index: 1;
}
.crypto-withdrawal-hero-image{
    background-image: url("images/withdrawal-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-withdrawal-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-withdrawal-hero-image > * {
  position: relative;
  z-index: 1;
}
.crypto-ponzi-hero-image{
    background-image: url("images/ponzi-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-ponzi-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-ponzi-hero-image > * {
  position: relative;
  z-index: 1;
}
.crypto-trading-hero-image{
    background-image: url("images/trading-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-trading-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-trading-hero-image > * {
  position: relative;
  z-index: 1;
}
.crypto-frozen-hero-image{
    background-image: url("images/frozen-crypto-wallet-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-frozen-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-frozen-hero-image > * {
  position: relative;
  z-index: 1;
}
.crypto-fraud-hero-image{
    background-image: url("images/forex-fraud-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-fraud-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-fraud-hero-image > * {
  position: relative;
  z-index: 1;
}

/* IMAGE BACKGROUND */
.crypto-tax-hero-image{
    background-image: url("images/crypto-tax-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.crypto-tax-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}
.crypto-tax-hero-image > * {
  position: relative;
  z-index: 1;
}

.crypto-hero-image {
  background-image: url("images/cryptocurrency-scam-recovery.webp"); /* change image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* BLACK SHADOW OVERLAY */
.crypto-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
  z-index: 0;
}

/* MAKE SURE CONTENT IS ABOVE OVERLAY */
.crypto-hero-image > * {
  position: relative;
  z-index: 1;
}

/* OVERLAY */
.service-hero-overlay {
  position: relative;
  z-index: 1;
}

/*.crypto-hero-image::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(*/
/*    120deg,*/
/*    rgba(15, 23, 42, 0.85),*/
/*    rgba(30, 58, 138, 0.75),*/
/*    rgba(15, 23, 42, 0.85)*/
/*  );*/
/*  z-index: 0;*/
/*}*/

/* CONTAINER */
.service-hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* CONTENT */
.service-hero-content {
  max-width: 720px;
}

.service-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-hero-content p {
  font-size: 18px;
  color: #dbeafe;
  line-height: 1.6;
}

/* BUTTONS */
.service-hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-btn {
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: #2563eb;
  color: #ffffff;
}

.primary-btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.45);
}

/* SECONDARY BUTTON */
.secondary-btn {
  border: 2px solid #93c5fd;
  color: #ffffff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-hero {
    padding: 110px 0;
  }

  .service-hero-content h1 {
    font-size: 34px;
  }

  .service-hero-content p {
    font-size: 16.5px;
  }
}

@media (max-width: 480px) {
  .service-hero-content h1 {
    font-size: 28px;
  }
}
.cs-testimonials {
  padding: 100px 0;
  background: #f9fafb;
}

.cs-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.cs-heading {
  text-align: center;
  margin-bottom: 50px;
}

.cs-heading h2 {
  font-size: 34px;
  color: #111827;
}

.cs-heading p {
  color: #4b5563;
}

/* OUTER WRAPPER */
.cs-slider-outer {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SLIDER */
.cs-slider {
  overflow: hidden;
  flex: 1;
}

.cs-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.cs-slide {
  min-width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
}

.cs-slide p {
  font-size: 16.5px;
  color: #374151;
  line-height: 1.7;
}

.cs-slide h4 {
  margin-top: 18px;
  color: #111827;
}

/* NAV BUTTONS */
.cs-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cs-nav:hover {
  background: #1e40af;
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-slider-outer {
    gap: 12px;
  }

  .cs-slide {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .cs-slider-outer {
    flex-direction: column;
  }

  .cs-nav {
    margin: 10px 0;
  }
}
.approach-grid-section {
  padding: 120px 0;
  background: #0b1220;
  color: #ffffff;
}

.approach-grid-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.approach-grid-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.approach-grid-header h2 {
  font-size: 38px;
  font-weight: 700;
}

.approach-grid-header p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #c7d2fe;
}

/* GRID */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.approach-card {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 30px;
  text-align: left;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.approach-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ICON */
.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.approach-icon i {
  font-size: 20px;
  color: #ffffff;
}

/* TEXT */
.approach-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.approach-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* DISCLAIMER */
.approach-disclaimer {
  margin-top: 70px;
  text-align: center;
  font-size: 14.5px;
  color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid-header h2 {
    font-size: 28px;
  }
}
.scam-types-section {
  padding: 120px 0;
  background: #ffffff;
}

.scam-types-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.scam-types-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.scam-types-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

.scam-types-header p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #4b5563;
}

/* LAYOUT */
.scam-types-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

/* LEFT LIST */
.scam-types-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scam-item {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 15.5px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scam-item:hover {
  background: #eef2ff;
}

.scam-item.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* RIGHT DETAILS */
.scam-types-details {
  background: #0f172a;
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  min-height: 260px;
}

.scam-detail {
  display: none;
}

.scam-detail.active {
  display: block;
}

.scam-detail h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.scam-detail p {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .scam-types-layout {
    grid-template-columns: 1fr;
  }
}
/* LEARN MORE BUTTON */
.scam-learn-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scam-learn-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}
.service-cta-strip {
  padding: 80px 0;
  background: #ffffff;
}

.service-cta-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 40px;
  background: #f3f4f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* CONTENT */
.service-cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.service-cta-content p {
  margin-top: 6px;
  font-size: 16px;
  color: #4b5563;
}

/* BUTTON */
.service-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #1f2937;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-cta-btn:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-cta-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .service-cta-content h3 {
    font-size: 24px;
  }
}
.csr-faq-section {
  padding: 110px 0;
  background: #ffffff;
}

.csr-faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.csr-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.csr-faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.csr-faq-header p {
  margin-top: 14px;
  font-size: 16.5px;
  color: #4b5563;
}

/* FAQ ITEM */
.csr-faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.csr-faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.csr-faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.csr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.csr-faq-answer p {
  padding-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #374151;
}

/* ACTIVE STATE */
.csr-faq-item.active .csr-faq-answer {
  max-height: 300px;
}

.csr-faq-item.active .csr-faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .csr-faq-header h2 {
    font-size: 28px;
  }

  .csr-faq-question {
    font-size: 16px;
  }
}
