/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
}

:root {
  --blue: #1F86D8;
}

/* ---------- TOP BAR ---------- */
.topbar {
  width: 100%;
  background: #F5F8FD;
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 800px;
}

.topbar-left span {
  margin-right: 25px;
  font-size: 14px;
  color: var(--blue);
}

.topbar-left i {
  margin-right: 6px;
  color: var(--blue);
}

.topbar-right a {
  background: var(--blue);
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: 8px;
}
.logo img {
    width: 120px;
}
.box_header {
    padding-top: 84px;
}
/* ---------- NAVBAR ---------- */
.navbar {
  width: 100%;
  background: white;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 800px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.menu a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.cta-btn {
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* ---------- MOBILE MENU (SLIDE RIGHT) ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  text-align: right;
  font-size: 24px;
  margin-bottom: 20px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu .apply {
  color: white;
  background: var(--blue);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 480px) {

  .topbar, .navbar {
    min-width: unset;
    padding: 10px 20px;
  }

  .topbar-left span:nth-child(n+2) {
    display: none;
  }

  .menu {
    display: none;
  }

  .cta-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .box_header {
    padding-top: 30px;
}

/*.box_contact_left {*/
/*    flex: 1 1 350px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*    display: none !important;*/
/*    visibility: none;*/
/*}*/
.box_contact_left {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 38%;
    width: 37%;
    max-width: 49%;
}
}




/* banner */
.hero {
    width: 100%;
    min-height: 788px;
    background: url("assets/images/bannerimg.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.hero-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    min-width: 800px;
}

.hero-content {
    width: 50%;
    color: white;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-content p {
    margin-top: 20px;
    font-size: 20px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #1F86D8;
    padding: 12px 25px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.btn-review {
    background: #fff;
    border: 1px solid #00B67A;
    padding: 12px 20px;
    color: #191919;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FORM */
.hero-form {
    width: 45%;
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    color: #fff;
}

.hero-form h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 11px;
    left: 10px;
    color: #1F86D8;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 5px;
    border: none;
    background: #FCFCFC;
}

.captcha {
    background: #F9F9F9;
    padding: 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.btn-submit {
    width: 100%;
    background: #1F86D8;
    border: none;
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* 📱 MOBILE: 480px */
@media (max-width: 480px) {
    .hero-container {
        flex-direction: column;
        min-width: auto;
    }

    .hero-content, .hero-form {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-review {
        width: 100%;
        justify-content: center;
    }
}


/* ends */







/* steps */
.steps-section {
    width: 100%;
    min-width: 800px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.steps-title {
    font-size: 42px;
    font-weight: 700;
    color: #102C45;
    font-family: Poppins, sans-serif;
}

.steps-subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #4B4B4B;
    line-height: 28px;
    font-family: Poppins, sans-serif;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.step-card {
    width: 33%;
    background: white;
    border-radius: 18px;
    border: 1px solid #E4EDF7;
    padding: 30px 20px;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #1F86D8;
    border-radius: 20px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon i {
    font-size: 28px;
    color: #fff;
}

.step-card h3 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #0E385F;
    font-family: Poppins, sans-serif;
}

.step-card p {
    margin-top: 15px;
    font-size: 17px;
    line-height: 26px;
    color: #4D4D4D;
    font-family: Poppins, sans-serif;
}

.steps-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.btn-primary {
    background: #1F86D8;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #1F86D8;
    color: #1F86D8;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary i,
.btn-outline i {
    margin-left: 8px;
}


/* ---------------- MOBILE 480px ---------------- */
@media (max-width: 480px) {
    .steps-section {
        min-width: auto;
        padding: 20px;
    }

    .steps-title {
        font-size: 28px;
    }

    .steps-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        width: 100%;
    }

    .steps-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ends */





/* pricing */

 /* Outer wrapper for full width */
  .pricing-section {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
  }

  /* Inner container limited to 1140px and centered */
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1140px;
    width: 100%;
    justify-content: center;
  }

  .pricing-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .pricing-header h1 {
    font-size: 2.2rem;
    color: #0D2F4F;
    font-weight: 700;
  }

  .pricing-header p {
    font-size: 1rem;
    color: #666666;
    margin-top: 10px;
  }

  .card {
    background: white;
    flex: 1 1 300px; /* flexible with minimum 300px */
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
    outline: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
  }

  .card:hover {
    box-shadow: 0 0 20px #1F86D8;
    transform: translateY(-10px);
  }

  .card.best-seller {
    box-shadow: 0 6px 26px rgba(31,134,216,0.25);
    outline: 1px solid #1F86D8;
  }

  .card .title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D2F4F;
    margin: 20px 0 10px;
  }

  .card .subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: #555555;
    margin-bottom: 20px;
  }

  .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
  }

  .price .old {
    text-decoration: line-through;
    color: #888888;
    font-size: 0.875rem;
  }

  .price .new {
    color: #1F86D8;
    font-size: 2rem;
    font-weight: 700;
  }

  .fee {
    text-align: center;
    font-size: 0.75rem;
    color: #444444;
    margin-bottom: 20px;
  }

  .features {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .features div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #333333;
  }

  .features div span {
    color: #1F86D8;
    margin-right: 8px;
    font-weight: 700;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1F86D8;
    border-radius: 25px;
    height: 40px;
    margin: 0 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: white;
  }

  .button:hover {
    box-shadow: 0 0 15px #1F86D8, 0 0 25px #1F86D8 inset;
  }

  .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1F86D8;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
  }

  .badge.recommended {
    background: #0D4C82;
  }

  /* Mobile responsiveness */
  @media screen and (max-width: 800px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
    .card {
        max-width: 100%;
        width: 88%;
        height: 100%;
    }
    .card {
    background: white;
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    outline: 1px solid #E2E8F0;
    transition: all 0.3s 
ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
  }

  @media screen and (max-width: 480px) {
    .pricing-section {
      padding: 30px 10px;
    }
    .pricing-header h1 {
      font-size: 1.5rem;
    }
    .pricing-header p {
      font-size: 0.875rem;
    }
    .card .title {
      font-size: 1.2rem;
    }
    .price .new {
      font-size: 1.5rem;
    }
  }
/* ends */





/* about */ .trademark-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1140px;
    min-width: 800px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .trademark-left {
    flex: 1 1 570px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .trademark-left h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0D2F4F;
    line-height: 1.2;
  }

  .feature-card {
    position: relative;
    background: #F8FBFF;
    border-radius: 10px;
    border: 1px solid #E6EEF7;
    padding: 20px 20px 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: 20px;
    top: 20px;
    border-radius: 50%;
    background: #1F86D8;
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    box-shadow: 0 0 15px #1F86D8, 0 0 25px #1F86D8 inset;
    transform: translateY(-5px);
  }

  .feature-card:hover::before {
    background: #0DF8FF;
    box-shadow: 0 0 10px #0DF8FF, 0 0 15px #1F86D8 inset;
  }

  .feature-card .title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0D2F4F;
  }

  .feature-card .desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
  }

  .trademark-right {
    flex: 1 1 485px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .trademark-right img {
    width: 100%;
    max-width: 485px;
    border-radius: 14px;
    border-left: 5px #1F86D8 solid;
    border-bottom: 5px #1F86D8 solid;
    box-shadow: 0px 10px 28px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }

  .trademark-right img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 0 25px #1F86D8, 0 0 35px #0DF8FF inset;
  }
.trademark-section {
    padding-top: 60px;
}
  /* Responsive */
  @media screen and (max-width: 800px) {
    .trademark-section {
      flex-direction: column;
      min-width: unset;
    }
    .trademark-left, .trademark-right {
      flex: 1 1 100%;
    }
    .trademark-left h1 {
      font-size: 1.8rem;
    }
        .trademark-left, .trademark-right {
        flex: 1 1 100%;
        padding: 0 19px;
    }
  }

  @media screen and (max-width: 480px) {
    body {
      padding: 10px;
    }
    .trademark-left h1 {
      font-size: 1.5rem;
    }
    .feature-card {
      padding: 15px 15px 15px 40px;
    }
    .feature-card .title {
      font-size: 1rem;
    }
    .feature-card .desc {
      font-size: 0.85rem;
    }
        .trademark-left h1 {
        font-size: 1.5rem;
        text-align: center !important;
    }
  }

/* ends */









/* trade regis */
  /* Container */
  .box_section {
    max-width: 1200px;
    min-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* Header */
  .box_header {
    text-align: center;
    color: #1F86D8;
  }
  .box_header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .box_header p {
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
  }

  /* Features Grid */
  .box_features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .box_card {
    position: relative;
    flex: 1 1 280px;
    max-width: 290px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
    border: 1px solid #DBE8F5;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
  }

  .box_card:hover {
    box-shadow: 0 0 15px #1F86D8, 0 0 25px #0DF8FF outset;
    transform: translateY(-5px);
  }

  .box_icon {
    width: 58px;
    height: 58px;
    background: #1F86D8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .box_card:hover .box_icon {
    background: #0DF8FF;
    box-shadow: 0 0 10px #0DF8FF, 0 0 15px #1F86D8 inset;
  }

  .box_title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2B4D;
    margin-bottom: 10px;
  }

  .box_desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
  }

  /* CTA Section */
  .box_cta_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(169deg, #1F86D8 0%, #176BB1 100%);
    border-radius: 15px;
    padding: 52px 68px;
    color: white;
    align-items: center;
    justify-content: space-between;
  }

  .box_cta_text {
    flex: 1 1 500px;
    max-width: 600px;
  }

  .box_cta_text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .box_cta_text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
  }

  .box_cta_button {
    flex: 1 1 300px;
    max-width: 520px;
    background: white;
    color: #1F86D8;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .box_cta_button:hover {
    box-shadow: 0 0 15px #0DF8FF, 0 0 25px #1F86D8 inset;
    transform: translateY(-3px);
  }

  .box_cta_button i {
    font-size: 1.2rem;
  }

  /* Responsive */
  @media screen and (max-width: 800px) {
    .box_section {
      min-width: unset;
      padding: 0 10px;
    }
    .box_header h1 {
      font-size: 2rem;
    }
    .box_cta_section {
      flex-direction: column;
      align-items: flex-start;
    }
    .box_cta_button {
      width: 100%;
      justify-content: center;
    }
  }

  @media screen and (max-width: 480px) {
    .box_header h1 {
      font-size: 1.5rem;
    }
    .box_card {
      flex: 1 1 100%;
    }
    .box_cta_text h2 {
      font-size: 1.5rem;
    }
    .box_cta_text p {
      font-size: 0.9rem;
    }
    .box_cta_text {
    flex: 1 1 292px;
    max-width: 665px;
}
.box_cta_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(169deg, #1F86D8 0%, #176BB1 100%);
    border-radius: 15px;
    padding: 52px 27px;
    color: white;
    align-items: center;
    justify-content: space-between;
}
    .box_cta_button {
        width: 100%;
        justify-content: center;
        height: 20px;
        max-height: 61px;
    }
    .box_card {
    position: relative;
    flex: 1 1 280px;
    max-width: 346px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #DBE8F5;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}
  }


/* ends */




/* reviews */
.review_section {
  background: #F5F8FD;
  padding: 60px 20px;
  min-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Poppins, sans-serif;
}

/* Header */
.review_header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
}
.review_header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0D385D;
}
.review_header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* Cards Container */
.review_cards {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Each Card */
.review_card {
  width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: all .35s ease;
  border: 1px solid #E5EEF7;
}

/* Neon Hover (outer glow premium effect) */
.review_card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 12px #1F86D8,
    0 0 22px #1F86D8,
    0 0 45px #4EDBFF;
}

/* Quote Icon */
.review_quote {
  font-size: 50px;
  color: #00B67A;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}

/* Review Text */
.review_text {
  color: #1F86D8;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

/* User Info */
.review_user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review_user img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  border: 2px solid #1F86D8;
}
.review_user h4 {
  margin: 0;
  font-size: 16px;
  color: #0D385D;
  font-weight: 700;
}
.review_user span {
  font-size: 13px;
  color: #999;
}

/* Button */
.review_btn {
  background: #1F86D8;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  margin-top: 50px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.35s ease;
}

.review_btn:hover {
  box-shadow:
    0 0 10px #4EDBFF,
    0 0 22px #1F86D8;
  transform: translateY(-3px);
}

/* Responsive 800px */
@media (max-width: 800px) {
  .review_section {
    min-width: unset;
  }
  .review_cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .review_header h2 {
    font-size: 28px;
  }
  .review_card {
    width: 100%;
  }
  .review_btn {
    width: 100%;
    justify-content: center;
  }
}

/* ends */




/* faq */
.faq_section {
  background: #F5F8FD;
  padding: 60px 20px;
  font-family: Poppins, sans-serif;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.faq_header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0D385D;
  text-align: center;
  margin-bottom: 50px;
}
.faq_header h2 span {
  color: #1F86D8;
}

/* Content Flex */
.faq_content {
  display: flex;
  gap: 50px;
  justify-content: center;
  /* flex-wrap: wrap; */
}

/* FAQ List */
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 550px;
  width: 100%;
}

/* Each FAQ Item */
.faq_item {
  background: #fff;
  border-left: 4px solid #1F86D8;
  border-radius: 12px;
  padding: 20px 20px 20px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Neon Outer Glow Hover */
.faq_item:hover {
  /* box-shadow:
    0 0 12px #1F86D8,
    0 0 22px #1F86D8,
    0 0 35px #4EDBFF; */
  /* transform: translateY(-4px); */
}

/* Question Section */
.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #1F86D8;
}
.faq_question i {
  transition: transform 0.3s ease;
}

/* Answer Section (Initially Hidden) */
.faq_answer {
  display: none;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-top: 10px;
  line-height: 24px;
}

/* Expand FAQ on Click */
.faq_item.active .faq_answer {
  display: block;
}
.faq_item.active .faq_question i {
  transform: rotate(180deg);
}

/* Image Section */
.faq_image img {
  max-width: 537px;
  border-radius: 15px;
  border-left: 4px solid #1F86D8;
  border-bottom: 4px solid #1F86D8;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive 800px */
@media (max-width: 800px) {
  .faq_content {
    flex-direction: column-reverse;
    align-items: center;
  }
  .faq_image img {
    max-width: 90%;
    margin-bottom: 30px;
  }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .faq_header h2 {
    font-size: 28px;
  }
  .faq_list {
    width: 100%;
  }
  .faq_item {
    padding: 15px 15px 15px 20px;
  }
}

/* ends */



/* contact form */
/* Contact Section */
.box_contact_section {
  background: #f5f8fd;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.box_contact_container {
  display: flex;
  gap: 50px;
  min-width: 800px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* Left Section */
.box_contact_left {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box_contact_title {
  font-family: Poppins,sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #0d385d;
  line-height: 43px;
}
.box_contact_title span {
  color: #1f86d8;
}
.box_contact_subtitle {
  font-family: Poppins,sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1f86d8;
}
.box_contact_text {
  font-family: Poppins,sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 25px;
}
.box_contact_info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.box_contact_item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: Poppins,sans-serif;
  color: #1f86d8;
  font-weight: 500;
  cursor: pointer;
}
.box_contact_icon {
  width: 40px;
  height: 40px;
  background: #1f86d8;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: 0.3s;
}
.box_contact_icon:hover {
  box-shadow: 0 0 15px #1f86d8, 0 0 30px #1f86d8;
}
.box_contact_socials {
  display: flex;
  gap: 15px;
}
.box_social {
  width: 45px;
  height: 45px;
  background: #1f86d8;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.box_social:hover {
  box-shadow: 0 0 15px #1f86d8, 0 0 30px #1f86d8;
}

/* Right Form */
.box_contact_right {
  flex: 1 1 400px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 15px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box_form_title {
  font-family: Poppins,sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1f86d8;
}
.box_contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.box_contact_form label {
  font-family: Poppins;
  font-weight: 700;
  color: #0d385d;
}
.box_contact_form label span {
  color: #1f86d8;
}
.box_contact_form input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: Inter;
  font-size: 14px;
}
.box_contact_form input:focus {
  outline: none;
  box-shadow: 0 0 8px #1f86d8;
  border-color: #1f86d8;
}
.box_contact_form button {
  background: #1f86d8;
  color: white;
  padding: 12px 0;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.box_contact_form button:hover {
  box-shadow: 0 0 15px #1f86d8, 0 0 30px #1f86d8;
}

/* Responsive */
@media (max-width: 800px) {
  .box_contact_container {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .box_contact_title {
    font-size: 28px;
  }
  .box_contact_subtitle {
    font-size: 20px;
  }
}

/* ends */


/* footer */
/* Services Section */
.box_services_section {
  background: black;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box_services_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 800px;
  gap: 20px;
}

.box_services_img {
  width: 288px;
  /* height: ; */
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.box_services_img:hover {
  transform: scale(1.05);
  /* box-shadow: 0 0 20px #1f86d8, 0 0 40px #1f86d8; */
}

.box_services_labels {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.box_service_item {
  color: white;
  font-family: Poppins;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.box_service_item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #1f86d8;
  box-shadow: 0 0 8px #1f86d8, 0 0 16px #1f86d8;
  transition: 0.3s;
}
.box_service_item:hover::after {
  width: 100%;
}
.box_service_item:hover {
  color: #1f86d8;
  text-shadow: 0 0 5px #1f86d8, 0 0 10px #1f86d8;
}

/* Footer */
.box_services_footer {
  margin-top: 20px;
  color: white;
  font-family: Poppins;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
  .box_services_container {
    min-width: 100%;
  }
  .box_services_labels {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .box_services_img {
    width: 200px;
    /* height: 200px; */
  }
  .box_service_item {
    font-size: 14px;
  }
  .box_services_labels {
    flex-direction: column;
    gap: 15px;
  }
}


/* ends */





/* modal */
/* Basic modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal_content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal_close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.modal_content h2 {
  margin-bottom: 20px;
  color: #1F86D8;
}

.modal_content label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

.modal_content input,
.modal_content textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
  outline: none;
}

.modal_content textarea {
  resize: vertical;
}

.modal_content button {
  background: #1F86D8;
  color: white;
  font-weight: 700;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
}

.modal_content button:hover {
  box-shadow: 0 0 10px #1F86D8, 0 0 20px #1F86D8;
}

/* Form message */
.form_message {
  margin-top: 10px;
  font-size: 14px;
  color: green;
}

/* Responsive */
@media (max-width: 480px) {
  .modal_content {
    padding: 20px;
  }
}

 /* ends */