.hero-section {
  padding: 70px 20px;
  text-align: center;
  background: #f4f7ff;
}

.hero-section h1 {
  font-size: 36px;
  color: #0e3e78;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 25px;
  color: #444;
}

.btn-primary {
  background: #0e3e78;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
}

.trust-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.trust-section h2 {
  font-size: 28px;
  color: #0e3e78;
  margin-bottom: 20px;
}

.trust-section ul {
  list-style: disc;
  margin-left: 20px;
}

.trust-section li {
  font-size: 18px;
  margin-bottom: 10px;
}

.services-section {
  background: #fff;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.services-section h2 {
  font-size: 28px;
  color: #0e3e78;
  margin-bottom: 30px;
}

.service-item {
  margin-bottom: 25px;
}

.service-item h3 {
  font-size: 22px;
  color: #333;
}

.service-item p {
  font-size: 18px;
  color: #555;
}

.link-more {
  display: inline-block;
  margin-top: 20px;
  color: #0e3e78;
  font-weight: 600;
  text-decoration: none;
}

.problem-section {
  background: #f9fafc;
  padding: 60px 20px;
  text-align: center;
}

.problem-section h2 {
  font-size: 28px;
  color: #0e3e78;
  margin-bottom: 20px;
}

.problem-section ul {
  max-width: 700px;
  margin: 0 auto 25px;
  text-align: left;
}

.problem-section li {
  font-size: 18px;
  margin-bottom: 8px;
}

.btn-secondary {
  background: #333;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 17px;
}

.insights-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.insights-section h2 {
  font-size: 26px;
  color: #0e3e78;
}

.insights-section p {
  font-size: 18px;
  margin: 15px 0;
}

.callback-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.callback-section h2 {
  font-size: 26px;
  color: #0e3e78;
}

.callback-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto;
}

.final-cta {
  background: #0e3e78;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.final-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.final-cta .btn-primary {
  background: #fff;
  color: #0e3e78;
}

.process-section {
  background: #f4f7ff;
  padding: 60px 20px;
  text-align: center;
}

.process-section h2 {
  font-size: 28px;
  color: #0e3e78;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.step {
  background: #fff;
  padding: 25px;
  width: 240px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.step span {
  display: inline-block;
  background: #0e3e78;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.step p {
  font-size: 17px;
}

.areas-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.areas-section h2 {
  font-size: 28px;
  color: #0e3e78;
  margin-bottom: 25px;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.areas-list li {
  background: #f9fafc;
  padding: 15px;
  font-size: 18px;
  border-left: 4px solid #0e3e78;
}

.who-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.who-section h2 {
  font-size: 26px;
  color: #0e3e78;
  margin-bottom: 20px;
}

.who-section ul {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.who-section li {
  font-size: 18px;
  margin-bottom: 10px;
}

.prevention-section {
  background: #f4f7ff;
  padding: 50px 20px;
}

.prevention-section blockquote {
  max-width: 900px;
  margin: auto;
  font-size: 20px;
  font-style: italic;
  border-left: 5px solid #0e3e78;
  padding-left: 20px;
  color: #333;
}

.faq-section {
  max-width: 1100px;
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  margin: 70px auto;
  /*padding: 0 20px;*/
}

.faq-section h2 {
  color: #0e3e78;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}

.faq-section h2::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #0e3e78;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 15px 15px;
  font-size: 17px;
  color: #333;
}

/* ================================
   HERO SLIDER – FINAL FIX
================================ */
.ev-hero-slider {
  width: 100%;
  overflow: hidden;
}

/* SLIDES */
.ev-hero-slide {
  display: none;
  /* hide all */
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

/* SHOW ACTIVE SLIDE */
.ev-hero-slide.ev-active {
  display: block;
}

/* BACKGROUND IMAGES */
.ev-slide-1 {
  background-image: url("img/slider/slide2_1.jpg");
}

.ev-slide-2 {
  background-image: url("img/slider/slide2_2.jpg");
}

.ev-slide-3 {
  background-image: url("img/slider/slide2_3.jpg");
}

/* OVERLAY */
.ev-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT */
.ev-hero-content {
  text-align: center;
  color: #fff;
  max-width: 820px;
  padding: 20px;
}

.ev-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.ev-hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTON */
.ev-hero-btn {
  background: #c40018;
  color: #fff;
  padding: 14px 34px;
  display: inline-block;
  font-weight: 600;
  border-radius: 3px;
}

.ev-hero-btn i {
  margin-left: 8px;
}

/* TABLET */
@media (max-width: 991px) {
  .ev-hero-slide {
    min-height: 420px;
  }

  .ev-hero-content h1 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .ev-hero-slide {
    min-height: auto;
    padding: 90px 0;
  }

  .ev-hero-overlay {
    padding: 40px 15px;
  }

  .ev-hero-content h1 {
    font-size: 24px;
  }
}
/* ===========================
   WHO WE WORK WITH – STYLED
=========================== */

.who-section {
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  padding: 70px 20px;
  text-align: center;
  position: relative;
}

.who-section h2 {
  font-size: 32px;
  color: #0e3e78;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}

.who-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* LIST GRID */
.who-section ul {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* LIST ITEMS */
.who-section li {
  background: #ffffff;
  padding: 20px 22px;
  font-size: 18px;
  color: #333;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* ICON BULLET */
.who-section li::before {
  content: "✔";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #c40018;
  font-size: 18px;
  font-weight: bold;
}

/* HOVER EFFECT */
.who-section li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ===========================
   MOBILE OPTIMIZATION
=========================== */

@media (max-width: 767px) {
  .who-section {
    padding: 50px 15px;
  }

  .who-section h2 {
    font-size: 26px;
  }

  .who-section li {
    font-size: 16px;
    padding: 18px 20px 18px 48px;
  }
}
/* ===============================
   PROBLEM / PAIN POINT SECTION
=============================== */

.problem-section {
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.problem-section h2 {
  font-size: 32px;
  color: #c40018;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.problem-section h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #0e3e78;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* LIST WRAPPER */
.problem-section ul {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* LIST ITEM */
.problem-section li {
  background: #ffffff;
  padding: 20px 22px;
  font-size: 18px;
  color: #333;
  border-radius: 10px;
  text-align: left;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* WARNING ICON */
.problem-section li::before {
  content: "⚠";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #c40018;
  font-size: 18px;
}

/* HOVER */
.problem-section li:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(196, 0, 24, 0.18);
}

/* STRONG MESSAGE */
.problem-section p {
  font-size: 20px;
  color: #222;
  margin: 25px 0 30px;
}

/* CTA BUTTON */
.problem-section .btn-secondary {
  background: #c40018;
  color: #ffffff;
  padding: 15px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.problem-section .btn-secondary:hover {
  background: #9e0013;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 0, 24, 0.35);
}

/* ===============================
   MOBILE OPTIMIZATION
=============================== */

@media (max-width: 767px) {
  .problem-section {
    padding: 55px 15px;
  }

  .problem-section h2 {
    font-size: 26px;
  }

  .problem-section li {
    font-size: 16px;
    padding: 18px 20px 18px 48px;
  }

  .problem-section p {
    font-size: 17px;
  }

  .problem-section .btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
  }
}
/* ===============================
   TRUST / WHY CHOOSE US SECTION
=============================== */

.trust-section {
  background: linear-gradient(135deg, #ffffff, #f4f7ff);
  padding: 80px 20px;
  position: relative;
}

.trust-section h2 {
  text-align: center;
  font-size: 32px;
  color: #0e3e78;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
}

.trust-section h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* LIST CONTAINER */
.trust-section ul {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* TRUST CARD */
.trust-section li {
  background: #ffffff;
  padding: 22px 24px;
  font-size: 18px;
  color: #333;
  border-radius: 12px;
  position: relative;
  padding-left: 56px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

/* SHIELD ICON */
.trust-section li::before {
  content: "🛡";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* HOVER TRUST EFFECT */
.trust-section li:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(14, 62, 120, 0.18);
}

/* ===============================
   MOBILE OPTIMIZATION
=============================== */

@media (max-width: 767px) {
  .trust-section {
    padding: 55px 15px;
  }

  .trust-section h2 {
    font-size: 26px;
  }

  .trust-section li {
    font-size: 16px;
    padding: 18px 20px 18px 52px;
  }
}
/* ===============================
   SERVICES SECTION (FINAL)
=============================== */

.services-section {
  background: #ffffff;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.services-section h2 {
  font-size: 32px;
  color: #0e3e78;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.services-section h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

/* CARD */
.service-item {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-align: left;
  position: relative;
}

/* TOP BAR */
.service-item::before {
  content: "";
  width: 45px;
  height: 4px;
  background: #c40018;
  display: block;
  margin-bottom: 18px;
  border-radius: 2px;
}

/* TITLE */
.service-item h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 700;
}

/* TEXT */
.service-item p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 62, 120, 0.18);
}

/* VIEW ALL */
.link-more {
  font-size: 18px;
  font-weight: 600;
  color: #0e3e78;
  text-decoration: none;
}

.link-more::after {
  content: " →";
}

/* MOBILE */
@media (max-width: 767px) {
  .services-section {
    padding: 55px 15px;
  }

  .services-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
/* ===============================
   INSIGHTS SECTION
=============================== */

.insights-section {
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  padding: 70px 20px;
  text-align: center;
}

.insights-section h2 {
  font-size: 30px;
  color: #0e3e78;
  font-weight: 700;
  margin-bottom: 15px;
}

.insights-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.insights-section p {
  max-width: 750px;
  margin: 18px auto 30px;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* CTA BUTTON */
.insights-section .link-more {
  display: inline-block;
  background: #0e3e78;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.insights-section .link-more:hover {
  background: #092d5a;
}

.insights-section .link-more::after {
  content: " →";
}

/* MOBILE */
@media (max-width: 767px) {
  .insights-section h2 {
    font-size: 25px;
  }

  .insights-section p {
    font-size: 16px;
  }
}
/* ===============================
   CALLBACK SECTION
=============================== */

.callback-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.callback-section h2 {
  font-size: 30px;
  color: #0e3e78;
  font-weight: 700;
  margin-bottom: 15px;
}

.callback-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.callback-section p {
  max-width: 700px;
  margin: 18px auto 35px;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* FORM WRAPPER (FOR YOUR EXISTING FORM) */
.callback-section form {
  max-width: 520px;
  margin: auto;
  background: #f9fafc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 767px) {
  .callback-section h2 {
    font-size: 25px;
  }

  .callback-section p {
    font-size: 16px;
  }

  .callback-section form {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 1rem;
  }

  .desktop {
    margin-top: 0vh;
  }
}

@media (max-width: 349px) {
  html {
    font-size: 1rem;
  }
}

@media (max-width: 200px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .gggg {
    width: 100%;
  }

  .fffff {
    font-size: 12px !important;
  }
}

/* ===============================
   PROCESS SECTION – HOW IT WORKS
=============================== */

.process-section {
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

/* SECTION TITLE */
.process-section h2 {
  font-size: 32px;
  color: #0e3e78;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.process-section h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #c40018;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* STEPS CONTAINER */
.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* STEP CARD */
.step {
  background: #ffffff;
  padding: 30px 25px;
  width: 240px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

/* NUMBER CIRCLE */
.step span {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #0e3e78;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
}

/* TEXT */
.step p {
  font-size: 17px;
  color: #444;
  line-height: 1.5;
}

/* HOVER EFFECT */
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 62, 120, 0.18);
}

/* ===============================
   TABLET VIEW
=============================== */
@media (max-width: 991px) {
  .process-steps {
    gap: 25px;
  }

  .step {
    width: 220px;
    padding: 26px 22px;
  }
}

/* ===============================
   MOBILE VIEW
=============================== */
@media (max-width: 767px) {
  .process-section {
    padding: 60px 15px;
  }

  .process-section h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .step {
    width: 100%;
    max-width: 360px;
  }

  .step p {
    font-size: 16px;
  }
}
/* ===============================
TESTIMONIAL SECTION
=============================== */
.testimonial-section {
    background: #f6f9ff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.testimonial-section h2 {
    font-size: 34px;
    color: #0e3e78;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.testimonial-section h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #c40018;
    display: block;
    margin: 14px auto 0;
    border-radius: 3px;
}

/* ===============================
SLIDER WRAPPER
=============================== */
.testimonial-slider {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* ===============================
CARD DESIGN
=============================== */
.testimonial-card {
    min-width: 330px;
    max-width: 330px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 60px;
    color: #c40018;
    font-family: serif;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* ===============================
CLIENT INFO
=============================== */
.client-info strong {
    display: block;
    font-size: 16px;
    color: #0e3e78;
}

.client-info span {
    font-size: 14px;
    color: #777;
}

/* ===============================
NAV BUTTONS
=============================== */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #0e3e78;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #c40018;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonial-track {
        gap: 15px;
    }

    .testimonial-card {
        min-width: 90%;
        max-width: 90%;
        margin: auto;
    }
}
.prevention-section h2 {
  font-size: 26px;
  color: #0e3e78;
  margin-bottom: 20px;
}