:root {
  --surface-color: #1b262c;
  --bg-color: #031119;
  --text-color: #ffffff;
  --accent-color: #e3a127;
  --circle-bg: #0e1117;
  --nav-color: rgba(255, 255, 255, .8);
  --nav-hover-color: #e3a127;
  --nav-dropdown-background-color: #29343a;
  --nav-dropdown-hover-color: #e3a127;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0;
  padding: 0;
}

.main_section-services {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  padding-top: 115px;
  padding-bottom: 120px;
}

.main_header-section {
  margin-bottom: 34px;
}

.main_header-section .main_title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
  color: var(--text-color);
}

.main_header-section .main_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.main_header-section .main_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: var(--circle-bg);
  border-radius: 3px;
}

.main_header-section .main_description {
  font-size: 14px;
  color: var(--nav-color);
  font-family: 'oy=', sans-serif;
}

.main_single-service {
  position: relative;
  margin-top: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.main_single-service .main_content {
  position: relative;
  z-index: 20;
}

.main_circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border: 6px solid var(--circle-bg);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s ease;
}

.main_single-service:hover .main_circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.main_icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: var(--text-color);
  font-size: 30px;
  transition: all 0.3s ease;
}

.main_single-service:hover .main_icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
}

.main_title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color 0.3s ease;
}

.main_single-service:hover .main_title {
  color: var(--surface-color);
}

.main_description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color 0.3s ease;
  color: var(--nav-color);
}

.main_single-service:hover .main_description {
  color: var(--text-color);
}

.main_learn-more {
  position: relative;
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main_single-service:hover .main_learn-more {
  color: var(--surface-color);
}

.main_learn-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: background-color 0.3s ease;
}

.main_single-service:hover .main_learn-more::after {
  background-color: var(--text-color);
}


/* our mission and vision  start  */
.main-vision-mission-section {
  padding: 60px 20px;

  background-color: #0E2148;
  background-image: radial-gradient(circle at 1px 1px, #1d305f 1px, transparent 0);
  background-size: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #E3D095;
  /* gold text base */
}

.main-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E3D095;
  /* gold heading */
}

.main-section-title p {
  font-size: 16px;
  color: #D9C68A;
  /* softer gold */
  margin-bottom: 40px;
}

.main-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-col {
  background: #0E2148;
  /* violet card background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  flex: 1 1 300px;
  max-width: 500px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 2px solid #e3a127;
}

.main-col:hover {
  transform: translateY(-5px);
  background-color: #7965C1;
  /* soft purple on hover */
}

.main-col h3 {
  font-size: 24px;
  color: #E3D095;
  /* gold heading inside cards */
  margin-bottom: 15px;
}

.main-col p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .main-row {
    flex-direction: column;
    align-items: center;
  }

  .main-col {
    max-width: 100%;
  }
}

/* our mission and vision  End  */


/* whychoose section start  */

.main-why-choose-section {
  padding: 60px 20px;
  background-color: var(--nav-dropdown-background-color);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
}

.main-section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 10px;
}

.main-section-title p {
  color: var(--nav-color);
  font-size: 16px;
  margin-bottom: 40px;
  font-family: 'outfit';
}



.main-why-box h3 {
  color: var(--accent-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.main-why-box p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'outfit';
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .main-why-row {
    flex-direction: column;
    align-items: center;
  }

  .main-why-box {
    max-width: 100%;
  }
}

/* whychoose section End  */



/* Testmonials  section Start */
/* Section Title */

    .testi_wrapper {
      text-align: center;
      width: 90%;
      max-width: 1000px;
      margin: auto;
      padding: 50px;
    }

    .testi_title {
      font-size: 2rem;
      margin-bottom: 20px;
      position: relative;
    }

    .testi_title::after {
      content: '';
      width: 50px;
      height: 3px;
      background: orange;
      display: block;
      margin: 10px auto;
      border-radius: 2px;
    }

    .testi_slider {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-wrap: wrap;
    }

    .testi_card {
      background: #f7f7f7;
      padding: 30px;
      border-radius: 10px;
      width: 60%;
      position: relative;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: opacity 0.5s ease-in-out;
      opacity: 1;
    }

    .testi_card.fade-out {
      opacity: 0;
    }

    .testi_main_img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .testi_card h3 {
      margin: 10px 0;
      font-size: 1.3rem;
    }

    .testi_card p {
      font-size: 1rem;
      color: #555;
      line-height: 1.5;
    }

    .testi_nav {
      margin-top: 20px;
    }

    .testi_nav button {
      background: orange;
      color: white;
      border: none;
      padding: 8px 14px;
      margin: 0 5px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .testi_side {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 10px;
      cursor: pointer;
    }

    .testi_side img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .testi_side.left {
      margin-right: 30px;
    }

    .testi_side.right {
      margin-left: 30px;
    }

    .rating {
      position: absolute;
      top: -10px;
      right: -10px;
      background: white;
      color: orange;
      padding: 5px 8px;
      border-radius: 50%;
      font-weight: bold;
      font-size: 0.8rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    @media(max-width: 768px) {
      .testi_card {
        width: 100%;
      }
      .testi_slider {
        flex-direction: column;
      }
      .testi_side {
        margin: 15px 0;
      }
    }

/* Testmonials  section End */


/* Contact   section start */
.home_cta_section {
  background-color: var(--nav-dropdown-background-color);
  color: var(--text-color);
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  width: 100%;
}

.home_cta_container {
  max-width: 900px;
  margin: 0 auto;
}

.home_cta_title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--text-color);
}

.home_cta_subtext {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
}

.home_cta_btn {
  padding: 14px 36px;
  font-size: 1rem;
  background-color: var(--accent-color);
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.home_cta_btn:hover {
  background-color: #c38820;
}

@media (max-width: 600px) {
  .home_cta_title {
    font-size: 1.6rem;
  }

  .home_cta_btn {
    width: 100%;
    padding: 12px;
  }
}

/* Contact   section ENd */


/* main logos slider style start here  */

.main_slider_logo_scorlling {
  height: fit-content;
  background-color: #fff;
}
@keyframes main_logo_slider_slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.main_logo_slider_wrapper {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.main_logo_slider_wrapper::before,
.main_logo_slider_wrapper::after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.main_logo_slider_wrapper::before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.main_logo_slider_wrapper::after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.main_logo_slider_items {
  display: inline-block;
  animation: 35s main_logo_slider_slides infinite linear;
}

.main_logo_slider_wrapper:hover .main_logo_slider_items {
  animation-play-state: paused;
}

.main_logo_slider_items img {
  height: 100px;
}

/* main logos slider style  End here  */

  /* new testiomonofkljnsadjvfn   dammuy name start */
  .test_section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .test_title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 40px;
      color: #0d6efd;
    }

    .swiper {
      padding-bottom: 50px;
    }

    .swiper-slide {
      background: #fff;
      border-radius: 12px;
      padding: 25px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .test_img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .test_name {
      font-weight: 600;
      font-size: 1.1rem;
    }

    .test_role {
      color: #777;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .test_quote {
      font-style: italic;
      font-size: 0.95rem;
      color: #333;
      padding: 0 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #0d6efd;
    }

    .swiper-pagination-bullet-active {
      background: #0d6efd;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .test_title {
        font-size: 1.6rem;
        margin-bottom: 30px;
      }

      .swiper-slide {
        min-height: 280px;
        padding: 20px 15px;
      }

      .test_quote {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .test_img {
        width: 60px;
        height: 60px;
      }

      .test_name {
        font-size: 1rem;
      }

      .test_role {
        font-size: 0.85rem;
      }
    }
  /* new testiomonofkljnsadjvfn  */
/* FAQ   section Start */

.faq_section {
  background-color: var(--accent-color);
  padding: 60px 20px;
}

.faq_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  align-items: start;
}

.faq_image {
  grid-column: span 4;
}

.faq_image img {
  width: 100%;
  border-radius: 10px;
  display: block;
  height: 60vh;
  object-fit: cover;
}

.faq_content {
  grid-column: span 8;
}

.faq_content h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--primary-color);
}

.faq_item {
  background-color: var(--bg-color);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq_question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: var(--text-color);
}

.faq_plus {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq_answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq_item.active .faq_answer {
  max-height: 400px;
  padding: 15px 20px;
}

.faq_item.active .faq_plus {
  transform: rotate(45deg);
}

/* Tablets and below */
@media (max-width: 991px) {
  .faq_container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq_image,
  .faq_content {
    grid-column: span 12;
  }

  .faq_image img {
    height: 40vh;
  }
}

/* Mobile - small phones */
@media (max-width: 576px) {
  .faq_section {
    padding: 40px 12px;
  }

  .faq_content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .faq_question {
    font-size: 16px;
    padding: 12px 16px;
  }

  .faq_answer {
    font-size: 15px;
    padding: 0 16px;
  }

  .faq_item.active .faq_answer {
    padding: 12px 16px;
  }

  .faq_image img {
    height: auto;
  }
}

/* Very small screens like 300px */
@media (max-width: 350px) {
  .faq_content h2 {
    font-size: 18px;
    text-align: center;
  }

  .faq_question {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .faq_plus {
    align-self: flex-end;
  }

  .faq_answer {
    font-size: 14px;
    padding: 0 12px;
  }

  .faq_item.active .faq_answer {
    padding: 10px 12px;
  }

  .faq_image img {
    height: auto;
    max-height: 200px;
  }
}


/* FAQ   section End */