body{
  margin: 0;
}

/* ----- Global Font ----- */
body, h1, h2, h3, p, a, button {
  font-family: 'Plus Jakarta Sans', serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
}

/* Header */
.hero .header {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5%;
  z-index: 10;
}

.hero .header .logo img {
  height: 50px; /* adjust logo size */
}

/* Desktop buttons (compact) */
.hero .header_btn {
  display: flex;
  gap: 10px;
}

.hero .header_btn .login_btn,
.hero .header_btn .secondary_btn {
  min-width: 105px;          /* shrink to fit content */
  padding: 0 30px;          /* compact horizontal padding */
  height: 40px;             /* smaller height */
  font-size: 16px;          /* smaller font */
  font-weight: 500;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Login button (primary) */
.hero .header_btn .login_btn {
  background-color: rgb(15, 103, 211);
  color: #fff;
  border: none;
}

.hero .header_btn .login_btn:hover {
  background-color: rgb(10, 80, 165);
}

/* Secondary button (Contact Us) */
.hero .header_btn .secondary_btn {
  background-color: rgba(9, 22, 38, 0.57);
  border: 1px solid #0F67D3;
  color: #fff;
}

.hero .header_btn .secondary_btn:hover {
  background-color: rgba(15, 103, 211, 0.85);
  border-color: rgb(15, 103, 211);
  color: #fff;
}

/* Hamburger */
.hero .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;       /* increased gap between bars */
  cursor: pointer;
  z-index: 999;
}

.hero .hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile menu - dropdown below hamburger */
.hero .mobile_menu {
  /* display: none; */
  position: absolute;
  top: 50px;                /* just below header/hamburger */
  right: 20px;                /* align with right edge of header */
  width: auto;
  background: rgba(9, 22, 38, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
  min-width: 160px;         /* small compact box */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  top: 48px;
}

.hero .mobile_menu a {
    text-align: left;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: 0.2s;
    text-decoration: none;
    display: block;
}

.hero .mobile_menu a:hover {
  background-color: rgb(15, 103, 211);
  color: #fff;
}

/* Mobile menu active state */
.hero .mobile_menu.active {
  display: flex;
}

/* Hero background */
.hero .hero_bg {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero .hero_bg video {
  min-width: 100%;
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Overlay for readability */
.hero .hero_bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Hero text and Join button */
.hero .bnr_fig {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
  width:100%;
}

.hero .bnr_fig h1 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero .bnr_fig h2 {
  font-size: 24px;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero .bnr_fig h2 span {
  color: #0F67D3;
}

/* Join button (large) */
.hero .join_btn {
  min-width: 140px;
  height: 50px;
  padding: 0 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  background-color: rgb(15, 103, 211);
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.hero .join_btn:hover {
  background-color: rgb(10, 80, 165);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero .header_btn {
    display: none;
  }
  .hero .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero .bnr_fig h1 {
    font-size: 36px;
  }
  .hero .bnr_fig h2 {
    font-size: 20px;
  }
}
/* ------------------end---------------- */
/* ------------Helping------------- */
.helping {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

.helping h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.helping h1 span {
  color: #0F67D3;
}

.helping_inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.helping_inner .help_img {
  width: 50%;
  transition: 0.5s ease all;
}

.helping_inner .help_img:hover {
  transform: scale(1.05);
}

.helping_inner .help_img img {
  width: 100%;
  height: auto;
  display: block;
}

.helping_inner .help_cnt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.helping_inner .help_cnt h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: #fff;
  /* margin-bottom: 20px; */
  position: relative;
  padding-bottom: 20px;
}

/* Blue underline under h2 */
.helping_inner .help_cnt h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #5f6772;
  margin-top: 20px;
  border-radius: 2px;
  opacity: 1;
}

.helping_inner .help_cnt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0;
}

/* ✅ Responsive */
@media screen and (max-width: 992px) {
  .helping {
    padding: 60px 5% 0 5%;
  }

  .helping h1 {
    font-size: 40px;
  }

  .helping_inner {
    gap: 30px;
  }

  .helping_inner .help_cnt h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .helping_inner .help_cnt p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .helping h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .helping_inner {
    flex-direction: column;
    text-align: center;
  }

  .helping_inner .help_img,
  .helping_inner .help_cnt {
    width: 100%;
  }

  .helping_inner .help_cnt h2 {
    font-size: 22px;
    text-align: center;
    padding-bottom: 8px;
  }

  .helping_inner .help_cnt h2::after {
    margin: 10px auto 0;
  }

  .helping_inner .help_cnt p {
    font-size: 15px;
    text-align: center;
  }
}


/* ----------------end------------------- */



/* --------------------Benifits------------------ */
.benefits {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

.benefits h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  line-height: 63px;
}

.benefits h1 span {
  color: #0F67D3;
}

.benefits .box_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits .box_one_contain {
  display: flex;
  gap: 20px;
}

.benefits .contain_box {
  border: solid 1px #848B95;
  border-radius: 20px;
  padding: 40px 35px;
  color: #fff;
  text-align: center;
  width: 100%;
  transition: background-color 0.3s ease;
}

.benefits .contain_box:hover {
  background-color: #091626;
}

.benefits .contain_box h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 27px 0;
  line-height: 30px;
}

.benefits .contain_box p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.hidden {
  display: none;
}
/* ✅ Responsive */
@media screen and (max-width: 992px) {
  .benefits {
    padding: 50px 5% 0 5%;
  }

  .benefits h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .benefits h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .benefits .box_one_contain {
    flex-direction: column;
    gap: 20px;
  }

  .benefits .contain_box {
    padding: 20px 10px;
    width: auto;
  }

  .benefits .contain_box h1 {
    font-size: 18px;
    line-height: 24px;
    margin: 12px 0;
  }
  .hero .header {
    top: 0;
  }
}


/* ----------------------End------------------------ */


/* --------------------standout------------------ */
.standout {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

@media screen and (max-width: 992px) {
  .standout {
    padding: 50px 5% 0 5%;
  }
}

.standout h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.standout h1 span {
  color: #0f67d3;
}

@media screen and (max-width: 767px) {
  .standout h1 {
    font-size: 32px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .standout h1 {
    font-size: 40px;
  }
}

.standout .box_wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (max-width: 767px) {
  .standout .box_wrapper {
    gap: 0px;
  }
}

.standout .box_one_contain {
  display: flex;
  gap: 80px;
}

@media screen and (max-width: 767px) {
  .standout .box_one_contain {
    flex-direction: column;
    gap: 0px;
  }
}

.standout .contain_box {
  position: relative;
  text-align: center;
  width: 100%;
}

.standout .contain_box h1 {
  font-family: 'Maname' !important;
  font-size: 104px;
  font-weight: normal;
  color: #acc2de;
  margin-bottom: 85px;
}

@media screen and (max-width: 767px) {
  .standout .contain_box h1 {
    font-size: 80px;
    margin-bottom: 20px;
  }
}

.standout .contain_box h6 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .standout .contain_box h6 {
    font-size: 22px;
  }
}

.standout .contain_box p {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.standout .contain_box::after {
  content: "";
  width: 121px;
  height: 4px;
  background-color: #0f67d3;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  position: absolute;
  margin: auto;
  border-radius: 15px;
}


/* ----------------------end------------------- */

/* ---------------------solutions------------------- */
.solutions {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

@media screen and (max-width: 992px) {
  .solutions {
    padding: 50px 5% 0 5%;
  }
}

.solutions h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.solutions h1 span {
  color: #0F67D3;
}

@media screen and (max-width: 767px) {
  .solutions h1 {
    font-size: 32px;
  }
}

@media screen and (min-width:768px) and (max-width:1199px) {
  .solutions h1 {
    font-size: 40px;
  }
}

.main_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions_wrapper {
  display: flex;
  row-gap: 24px;
  column-gap: 24px;
}

@media screen and (max-width:767px) {
  .solutions_wrapper {
    flex-direction: column;
  }
}

.solutions_box {
  display: flex;
  align-items: center;
  background-color: #1C1C1C;
  border-radius: 10px;
  padding: 15px;
  gap: 25px;
  width: 50%;
  transition: all 0.3s ease;
}

@media screen and (max-width:768px) {
  .solutions_box {
    width: auto;
  }
}

@media screen and (min-width:768px) and (max-width:992px) {
  .solutions_box {
    flex-direction: column;
  }
}

@media screen and (max-width:480px) {
  .solutions_box {
    flex-direction: column;
  }
}

.icon_box {
  width: 115px;
  height: 115px;
  background-color: #1b2129;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 27px;
}

.icon_box svg {
  width: 61px;
}

.content_box h6 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .content_box h6 {
    text-align: center;
  }
}

.content_box p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .content_box p {
    text-align: center;
  }
}

.solutions_box:hover {
  background-color: #fff;
}

.solutions_box:hover h6,
.solutions_box:hover p {
  color: #1C1C1C;
}

/* -----------------------------end-------------------- */
/* -------------------------faq-------------- */
.faq {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

@media screen and (max-width: 992px) {
  .faq {
    padding: 50px 5% 0 5%;
  }
}

.faq h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.faq h1 span {
  color: #0F67D3;
}

@media screen and (max-width: 767px) {
  .faq h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .faq h1 {
    font-size: 40px;
  }
}

/* FAQ wrapper */
.faq_wrapper {
  padding: 26px 40px;
  background-color: #0F0F0F;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between questions */
}

@media screen and (max-width: 767px) {
  .faq_wrapper {
    padding: 26px 10px;
  }
}


/* -------------------------faq-------------- */
.faq {
  padding: 120px 5% 0 5%;
  background-color: #080807;
}

@media screen and (max-width: 992px) {
  .faq {
    padding: 50px 5% 0 5%;
  }
}

.faq h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.faq h1 span {
  color: #0F67D3;
}

@media screen and (max-width: 767px) {
  .faq h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .faq h1 {
    font-size: 40px;
  }
}

/* FAQ wrapper */
.faq_wrapper {
  padding: 26px 40px;
  background-color: #0F0F0F;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between items */
}

@media screen and (max-width: 767px) {
  .faq_wrapper {
    padding: 26px 10px;
  }
}

/* Accordion button */
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #0F0F0F;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: background 0.3s;
   color: #fff; /* default color for closed questions */
  background: #0F0F0F;
  gap: 10px;
  text-align: left;
}


.accordion-button:hover {
  background-color: #1c1c1c;
}

.accordion-button p {
  margin: 0;
}

/* Arrow */
.acco_arrow {
  /* position: absolute; */
  right: 20px;
  width: 20px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.accordion-button.active .acco_arrow {
  transform: rotate(-45deg);
}

/* Accordion content */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #1c1c1c;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  border-radius: 0 0 8px 8px;
}

.accordion-body p {
  font-size: 18px;
  color: #cacfd6;
  padding: 15px 0;
  margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .accordion-button {
    font-size: 18px;
  }
  .accordion-body p {
    font-size: 16px;
  }
}

/* Accordion button active - open question blue */
.accordion-button.active {
  color: #0F67D3;
  background: #1c1c1c;
}
/* ----------------------end------------------ */
/* ---------------------contact--------------- */
.contact {
  padding: 120px 5%;
  background-color: #080807;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .contact {
    padding: 50px 5% 50px 5%;
  }
}

.contact h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact h1 {
    font-size: 32px;
  }
}

@media screen and (min-width:768px) and (max-width:1199px) {
  .contact h1 {
    font-size: 40px;
  }
}

.contact h1 span {
  color: #0F67D3;
}

.success_message {
  color: green;
  text-align: center;
  padding-bottom: 30px;
  font-size: 16px;
}

/* wrapper aligned and max width */
.contact_wrapper {
  max-width: 827px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  border-radius: 12px;
}

@media screen and (max-width: 992px) {
  .contact_wrapper {
    padding: 20px;
  }
      .hero .mobile_menu a:hover {
    background-color:transparent !important;
    color: #e4e4e4 !important;
}
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.form_top {
  display: flex;
  gap: 25px;
  width: 100%;
}

@media screen and (max-width:576px) {
  .form_top {
    flex-direction: column;
    gap: 20px;
  }
}

.form_control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form_control label {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 20px;
}

.form_control input,
.form_control textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #5F6772;
  background-color: #0d0d0d;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px;
  box-sizing: border-box;
}

.form_control input {
  height: 55px;
}

.form_control textarea {
  height: 120px;
  resize: none;
}

.form_btn {
  width: 100%;
  height: 55px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  background-color: #0F67D3;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.form_btn:hover {
  background-color: #0d57b0;
}

/* --------------------end----------- */

/* -----------------footer------------- */
.footer {
  padding: 0 5% 30px 5%;
  background-color: #080807;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .footer {
    padding: 50px 5% 30px;
    flex-direction: column;
    gap: 12px;
  }
}

.footer_logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer p {
  color: #CACFD6;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer p {
    font-size: 14px;
    text-align: center;
  }
}

.footer_nav {
  display: flex;
  align-items: center;
}

.footer_nav ul {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer_nav li {
  list-style: none;
}

.footer_nav a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}

.footer_nav a:hover {
  color: #0F67D3;
}

@media screen and (max-width: 767px) {
  .footer_nav a {
    font-size: 14px;
  }
}

/* -------------end-------------- */
