/* ========== Global Reset ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== Body ========== */
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-color: #fff;
}

/* ========== Header ========== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
  transition: background-color 0.3s ease;
}

.sticky-header .container {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  height: 120px;
  padding: 30px 16px;
}


/* .sticky-header.scrolled {
  background-color: #000 !important;
} */

.topHeader {
  width: 100%;
  max-width: 100%;
}

/* ========== Navbar ========== */
.navbar-nav {
  column-gap: 41px;
  row-gap: 16px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.nav-link {
  color: #0d141a;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Inter';
  cursor: pointer;
  line-height: 1.5;
  padding: 0;
}

.nav-link:hover {
  color: #0d141a;
  text-decoration: underline;
  text-underline-offset: 7px;
}


.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 7px;
}

/* ========== Brand Logo/Text ========== */
.navbar-brand {
  width: 100%;
  max-width: 269px;
  padding: 0;
}

/* ========== Connexion Button ========== */
.btn-connexion {
  background-color: #f31a15;
  color: #fff;
  border-width: 0;
  /* margin-left: 34px; */
  margin-left: 88px;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-connexion:hover {
  background-color: #1d1e20;
  color: #fff;
}

/* ========== Mobile Menu ========== */
.navbar-toggler {
  background: none;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0px;
  cursor: pointer;
  z-index: 15;
}

.toggler-icon {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Toggle animation when open */
.navbar-toggler.active .toggler-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Submenu (Trading Dropdown) ===== */
.nav-item.dropdown {
  position: relative;
}

.nav-item .fa-angle-down {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* ===== Submenu (Trading Dropdown) ===== */
.nav-item.dropdown {
  position: relative;
}

.nav-item .fa-angle-down {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Submenu container */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

/* Submenu links */
.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.submenu li a:hover {
  color: #cdae5a;
}

/* Show submenu on hover (Desktop only) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===== Responsive (Mobile) Submenu ===== */
@media (max-width: 991px) {
  .submenu {
    position: static;
    background-color: #000;
    box-shadow: none;
    padding: 0;
    min-width: 100%;
    border-radius: 0;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none;
  }

  .submenu.show {
    display: block;
    visibility: visible;
  }

  .submenu li a {
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .submenu li a:hover {
    color: #cdae5a;
    background: transparent;
  }

  .nav-item .fa-angle-down {
    color: #fff;
  }
}


/* ========== Responsive Design ========== */
@media (max-width: 991px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-brand {
    max-width: 160px;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 20px;
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    align-items: flex-end !important;
  }

  .navbar-nav.show {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
  }

  .btn-connexion {
    display: block;
    text-align: center;
    margin-left: -135px;
    /* margin-top: 10px; */
  }

  .navbar-toggler {
    display: flex;
  }

  .d-lg-inline-block {
    display: none !important;
  }

  .nav-link {
    /* color: #fff; */
    font-size: 1rem;
    text-align: center;
  }

  .sticky-header .container {
    padding: 24px 32px;
    height: auto;
  }


}

@media (max-width: 767px) {
  /* .btn-connexion {
    border: 1px solid #cdae5a;
    color: #cdae5a;
    padding: 3px 13px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    margin-left: -100px;
  } */
}

@media (max-width: 480px) {
  .navbar-brand img {
    /* max-width: 100px; */
  }

  .btn-connexion {
    margin-left: -50px;
    margin-top: 10px;
  }
}












/* ========= FOOTER BASE STYLE ========= */

footer {
  color: #040404;
  position: relative;
  overflow: hidden;
  min-height: 442px;
}

/* Main footer content */
.footer-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  margin-top: 35px;
}

footer .container {
  width: 100%;
  max-width: 1224px;
}

footer .fLogo {
  display: block;
  width: 100%;
  max-width: 194px;
  margin-bottom: 30px;
}

footer .fLogo img {
  border-radius: 6px;
}

.fLogo+div {
  max-width: 50%;
  font-size: 14px;
}

.fLogo+div span {
  font-weight: 500;
  font-family: Poppins, serif;
}

/* Headings */
footer h5 {
  color: #040404;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 1rem;
}

/* Links */
footer a {
  color: #040404;
  text-decoration: none;
  transition: color 0.3s;
}


/* Background Video */
.background-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

/* Footer bottom text */
.footer-bottom {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* ========= Innovation Form ========= */
.innovation-form input {
  padding: 16px;
  border-radius: 10px;
}

.innovation-form button {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 14px;
  height: 49px;
  display: flex;
  align-items: center;
}

/* ========= RESPONSIVE STYLES ========= */

/* ---------- Tablet (<=991px) ---------- */
@media (max-width: 991px) {
  footer {
    min-height: 695px;
  }

  footer .footer-content {
    padding: 50px 20px 25px;
    padding-bottom: 0px;
    max-width: 370px;
    margin: 0 auto;
  }

  /* Stack all columns vertically */
  footer .footer-content .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-desktop {
    display: none;
  }

  footer .footer-content .row .footer-logo {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  footer .col-md-4 h5 {
    font-size: 1.2rem;
  }

  footer hr {
    width: 40%;
  }

  footer .footer-bottom {
    font-size: 0.85rem;
  }

  /* remove large padding */
  footer .col-md-4[style] {
    padding-left: 20px !important;
  }

  .footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-mobile .col-12 {
    text-align: center;
  }

  .footer-mobile .btn {
    padding: 14px 36px;
    font-size: 14px;
    height: 49px;
  }

  .footer-mobile h5 {
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
  }

  .footer-mobile .contact-info {
    margin-bottom: 20px;
  }

  .footer-mobile .fLogo {
    max-width: 180px;
    margin-bottom: 0px;
  }
}

/* ---------- Mobile (<=767px) ---------- */
@media (max-width: 767px) {
  footer .footer-bottom {
    font-size: 0.8rem;
    padding: 10px 5px;
    text-align: center;
  }

  footer hr {
    width: 60%;
  }

  .footer-mobile .contact-info {
    padding: 10px;
  }

  .footer-mobile .btn {
    width: 100%;
  }
}

/* ---------- Small Mobile (<=480px) ---------- */
@media (max-width: 480px) {
  footer .footer-content {
    padding: 40px 15px 20px;
    padding-bottom: 0px;
  }

  footer .footer-bottom {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 5px;
  }

  footer .footer-bottom a {
    display: inline-block;
    font-size: 0.75rem;
  }

  footer hr {
    width: 70%;
  }
}

/* ---------- Extra Small Mobile (<=320px) ---------- */
@media (max-width: 320px) {
  footer .footer-content {
    padding: 35px 10px 15px;
  }

  footer h5 {
    font-size: 0.95rem;
  }

  footer p {
    font-size: 0.8rem;
  }

  footer ul li {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  footer ul li img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  footer hr {
    width: 80%;
  }

  footer .footer-bottom {
    font-size: 0.7rem;
    line-height: 1.3;
    padding: 10px;
  }
}

/* footer style end */





/* section1 start  */

/* ---------- Parent Section ---------- */
.first_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ---------- Background Video ---------- */
.first_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Overlay ---------- */
.first_section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  opacity: 0.45;
  z-index: 1;
}

/* ---------- Main Content Wrapper ---------- */
.first_section .container_custom {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  text-align: center;
  /* padding-top: 360px;
  padding-bottom: 240px; */
  padding-top: 200px;
  padding-bottom: 200px;
}

/* ---------- Text Styling ---------- */
.first_section h1 {
  font-size: 64px;
  font-family: 'Outfit', sans-serif;
  font-weight: bolder;
  line-height: 1.3;
  margin-bottom: 24px;
}

.first_section .mission {
  font-size: 24px;
  line-height: 1.27;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.first_section .stars {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ---------- Form Style ---------- */


.first_section .form_box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #f31a15ba;
  border: 1px solid #f31a15ba;
  border-radius: 6px;
  padding: 20px;
}


.first_section .form_box label {
  font-size: 16px;
  text-align: left;
  display: block;
  margin-bottom: 0px;
  color: #fff;
}

.first_section .form_box .form-control {
  background: #f1f1f1;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  padding: 16px;
  border-radius: 0;
  font-size: 14px;
}

.first_section .form_box .fieldd {
  margin-bottom: 22px;
}

.form_box .form-control:hover {
  background: #fff;
}

.first_section .form_box .form-control::placeholder {
  color: gray;
}

.first_section .form_box .buttonForm {
  background: #fff;
  border-radius: 10px;
  padding: 16px 40px;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
  border: none;
  color: #f31a15;
}

.first_section .form_box .buttonForm:hover {
  background: #1d1e20;
  color: #fff;
  border: none;
}

/* ----- 1400px ----- */
@media (max-width: 1400px) {
  .first_section h1 {
    font-size: 54px;
  }

  .first_section .mission {
    font-size: 22px;
  }

  .first_section .container_custom {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}


/* ----- 1200px ----- */
@media (max-width: 1200px) {
  .first_section h1 {
    font-size: 48px;
  }

  .first_section .mission {
    font-size: 20px;
  }
}


/* ----- 991px (Tablet) ----- */
@media (max-width: 991px) {
  .first_section .container_custom {
    padding: 160px 20px;
    /* left-right 20px required */
  }

  .first_section h1 {
    font-size: 40px;
    line-height: 1.3;
  }

  .first_section .mission {
    font-size: 18px;
  }

  .first_section .form_box {
    max-width: 420px;
  }
}


/* ----- 767px (Small Tablet / Landscape Mobile) ----- */
@media (max-width: 767px) {
  .first_section .container_custom {
    padding: 140px 20px;
    /* maintain 20px left-right */
    text-align: center;
  }

  .first_section h1 {
    font-size: 34px;
  }

  .first_section .mission {
    font-size: 17px;
  }

  .first_section .stars {
    font-size: 16px;
  }

  .first_section .form_box {
    max-width: 100%;
    padding: 18px;
  }
}


/* ----- 576px (Mobile) ----- */
@media (max-width: 576px) {
  .first_section .container_custom {
    padding: 120px 20px;
    /* fixed 20px padding */
  }

  .first_section h1 {
    font-size: 28px;
    line-height: 1.35;
  }

  .first_section .mission {
    font-size: 16px;
  }

  .first_section .form_box {
    padding: 16px;
  }

  .first_section .form_box .form-control {
    font-size: 13px;
    padding: 14px;
  }

  .first_section .buttonForm {
    font-size: 16px;
    padding: 14px 30px;
  }
}


/* ----- 480px (Small Mobile) ----- */
@media (max-width: 480px) {
  .first_section h1 {
    font-size: 24px;
  }

  .first_section .mission {
    font-size: 15px;
  }
}


/* ----- 375px (iPhone Mini) ----- */
@media (max-width: 375px) {
  .first_section h1 {
    font-size: 22px;
  }

  .first_section .buttonForm {
    font-size: 15px;
    padding: 12px 26px;
  }
}


/* ----- 320px (Smallest Phones) ----- */
@media (max-width: 320px) {
  .first_section h1 {
    font-size: 20px;
  }

  .first_section .mission {
    font-size: 14px;
  }

  .first_section .container_custom {
    padding: 100px 20px;
  }
}

/* section1 end  */



/* section2 start  */

/* ---------- Parent Section ---------- */
.second_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Overlay */
.second_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2826263d;
  /* overlay darkness adjust here */
  z-index: 1;
}

/* ---------- Background Video ---------- */
.second_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------- Main Content Wrapper ---------- */
.second_section .container_custom {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.second_section .leftBox {
  padding-right: 80px;
}

/* Section Title */
.second_section .section_title {
  font-size: 48px;
  font-weight: bolder;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
  text-align: left;
}

/* Paragraph Text */
.second_section .section_text {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 32px;
  text-align: left;
  line-height: 1.5;
  font-weight: 400;
}

/* Right Image */
.second_section .section_image {
  width: 100%;
  border-radius: 12px;
}

/* 1200px */
@media (max-width: 1400px) {
  .second_section .section_title {
    font-size: 42px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .second_section .section_title {
    font-size: 38px;
  }
}

/* 991px — padding left/right 20px FIX */
@media (max-width: 991px) {

  .second_section .container_custom {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    text-align: center;
  }

  /* Left Box padding remove */
  .second_section .leftBox {
    padding-right: 0 !important;
  }

  .second_section .section_title {
    font-size: 36px;
    text-align: center;
  }

  .second_section .section_text {
    font-size: 15px;
    margin-bottom: 28px;
    text-align: center;
  }

  .second_section .section_image {
    max-width: 600px;
    margin-top: 20px;
  }
}

/* 768px */
@media (max-width: 768px) {

  .second_section .section_title {
    font-size: 32px;
  }

  .second_section .section_text {
    font-size: 15px;
    line-height: 1.45;
  }

  .second_section .section_image {
    border-radius: 10px;
  }
}

/* 576px */
@media (max-width: 576px) {

  .second_section .section_title {
    font-size: 28px;
  }

  .second_section .section_text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .second_section .section_image {
    border-radius: 8px;
  }
}

/* 430px */
@media (max-width: 430px) {

  .second_section .section_title {
    font-size: 24px;
  }

  .second_section .section_text {
    font-size: 13.5px;
    line-height: 1.45;
  }
}

/* 360px */
@media (max-width: 360px) {

  .second_section .section_title {
    font-size: 22px;
  }

  .second_section .section_text {
    font-size: 13px;
  }
}

/* section2 end  */




/* section3 start  */

.third_section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
    background: #2826263d;
}

/* Background Video */
.third_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.third_section .container_custom {
  max-width: 1224px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Titles */
.third_section .small_title {
  font-size: 14px;
  text-align: center;
}

.third_section .main_title {
  font-size: 48px;
  font-weight: bolder;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 60px;
}

/* Feature Box */
.third_section .feature_box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.third_section .feature_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Content over Image */
.third_section .feature_content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
  color: #fff;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.third_section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-decoration: underline;
}

.third_section p {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  margin: 0;
}

/* 1400px */
@media (max-width: 1400px) {
  .third_section .main_title {
    font-size: 42px;
  }

}

/* -------------------------
   1200px (Large Tablets)
-------------------------- */
@media (max-width: 1200px) {

  .third_section .main_title {
    font-size: 38px;
  }

  .third_section .feature_content {
    padding: 32px;
  }

  .third_section h4 {
    font-size: 18px;
  }

  .third_section p {
    font-size: 15px;
  }
}

/* -------------------------
   991px — padding 20px fixed
-------------------------- */
@media (max-width: 991px) {

  .third_section .container_custom {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .third_section .main_title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .third_section .small_title {
    font-size: 13px;
  }

  .third_section .feature_content {
    padding: 28px;
  }

  .third_section h4 {
    font-size: 18px;
  }

  .third_section p {
    font-size: 14px;
  }
}

/* -------------------------
   768px (Tablets)
-------------------------- */
@media (max-width: 768px) {

  .third_section .main_title {
    font-size: 32px;
  }

  .third_section .feature_content {
    padding: 24px;
  }

  .third_section h4 {
    font-size: 17px;
  }

  .third_section p {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* -------------------------
   576px (Mobile)
-------------------------- */
@media (max-width: 576px) {

  .third_section .main_title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .third_section .small_title {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .third_section .feature_content {
    padding: 20px;
  }

  .third_section h4 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .third_section p {
    font-size: 18px;
  }

  .third_section .feature_img {
    max-height: 100%;
    object-fit: contain;
  }
}

/* -------------------------
   430px (Small Mobile)
-------------------------- */
@media (max-width: 430px) {

  .third_section .main_title {
    font-size: 24px;
  }

  .third_section .feature_content {
    padding: 18px;
  }

  .third_section h4 {
    font-size: 20px;
  }

  .third_section p {
    font-size: 16px;
  }

  .third_section .feature_img {
    max-height: 100%;
  }
}

/* -------------------------
   360px (Extra Small)
-------------------------- */
@media (max-width: 360px) {

  .third_section .main_title {
    font-size: 22px;
  }

  .third_section h4 {
    font-size: 18px;
  }

  .third_section p {
    font-size: 14px;
  }

  .third_section .feature_content {
    padding: 16px;
  }

  .third_section .feature_img {
    max-height: 100%;
  }
}


/* section3 end  */


/* section4 start  */

.fourth_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Overlay */
.fourth_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* overlay darkness adjust here */
  z-index: 1;
}

/* Background Video */
.fourth_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.fourth_section .container_custom {
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Titles */
.fourth_section .small_title {
  font-size: 16px;
  text-align: center;
  color: #040404;
}

.fourth_section .main_title {
  font-size: 48px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10px;
}

/* Spacing */
.fourth_section .firstRow,
.fourth_section .secondRow {
  margin-top: 70px;
}

/* Remove fixed height and make equal height */
.fourth_section .leftBoxFirst,
.fourth_section .rightBoxFirst,
.fourth_section .leftBoxSecond,
.fourth_section .rightBoxSecond {
  padding: 0 60px;
  height: auto;
  /* FIX */
  display: flex;
  /* FIX */
  flex-direction: column;
}

/* Extra padding fix */
.fourth_section .leftBoxFirst {
  padding-right: 100px;
}

.fourth_section .leftBoxSecond {
  padding-right: 100px;
}

/* Section Title */
.fourth_section .section_title {
  font-size: 20px;
  font-weight: bolder;
  text-align: left;
  text-decoration: underline;
  line-height: 1.3;
}

/* Paragraph Text */
.fourth_section .section_text {
  font-size: 16px;
  margin-bottom: 42px;
  text-align: left;
  line-height: 1.5;
}

/* Images FULL stretch */
.fourth_section .section_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

/* 1400px */
@media (max-width: 1400px) {
  .fourth_section .main_title {
    font-size: 42px;
  }

  .fourth_section .section_title {
    font-size: 18px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .fourth_section .main_title {
    font-size: 38px;
  }

  .fourth_section .leftBoxFirst,
  .fourth_section .rightBoxFirst,
  .fourth_section .leftBoxSecond,
  .fourth_section .rightBoxSecond {
    padding: 0 40px;
  }
}

/* 991px — padding 20px fixed */
@media (max-width: 991px) {

  .fourth_section .container_custom {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .fourth_section .mImage {
    display: flex;
    justify-content: space-between;
    align-items: center;

  }

  /* Desktop spacing reduce */
  .fourth_section .main_title {
    font-size: 32px;
    text-align: center !important;
  }

  .fourth_section .small_title {
    font-size: 15px;
    text-align: center !important;
  }

  /* Padding reduce for columns */
  .fourth_section .leftBoxFirst,
  .fourth_section .rightBoxFirst,
  .fourth_section .leftBoxSecond,
  .fourth_section .rightBoxSecond {
    padding: 0 20px !important;
  }

  /* Stack layout spacing */
  .fourth_section .firstRow {
    margin-top: 50px;
  }

  .fourth_section .secondRow {
    margin-top: 0;
  }

  /* Section titles */
  .fourth_section .section_title {
    font-size: 18px;
    text-align: center !important;
  }

  .fourth_section .section_text {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: center !important;
  }

  /* Hide desktop images on tablet + mobile */
  .leftBoxFirst,
  .rightBoxSecond {
    display: none !important;
  }

  /* Mobile images height */
  .fourth_section .section_image {
    max-height: 600px;
    object-fit: contain;
    width: 100%;
  }
}

/* 768px */
@media (max-width: 768px) {

  .fourth_section .main_title {
    font-size: 28px;
  }

  .fourth_section .section_title {
    font-size: 17px;
  }

  .fourth_section .section_text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .fourth_section .section_image {
    max-height: 480px;
  }
}

/* 576px */
@media (max-width: 576px) {

  .fourth_section .mImage {
    flex-direction: column;
  }

  .fourth_section .sClass {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .fourth_section .main_title {
    font-size: 24px;
  }

  .fourth_section .small_title {
    font-size: 14px;
    line-height: 1.4;
  }

  .fourth_section .section_title {
    font-size: 16px;
  }

  .fourth_section .section_text {
    font-size: 14px;
    line-height: 1.45;
  }

  .fourth_section .section_image {
    max-height: 100%;
  }
}

/* 430px */
@media (max-width: 430px) {

  .fourth_section .main_title {
    font-size: 22px;
  }

  .fourth_section .section_title {
    font-size: 15px;
  }

  .fourth_section .section_text {
    font-size: 13px;
  }

  .fourth_section .section_image {
    max-height: 100%;
  }
}

/* 360px */
@media (max-width: 360px) {

  .fourth_section .main_title {
    font-size: 20px;
  }

  .fourth_section .section_title {
    font-size: 14px;
  }

  .fourth_section .section_text {
    font-size: 12.5px;
  }

  .fourth_section .section_image {
    max-height: 100%;
  }
}


/* section4 end  */


/* section5 start  */

.fifth_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background Video */
.fifth_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.fifth_section .container_custom {
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Titles */
.fifth_section .small_title {
  font-size: 16px;
  text-align: center;
  color: #040404;
  margin-bottom: 70px;
}

.fifth_section .main_title {
  font-size: 48px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10px;
}

/* Price Cards */
.fifth_section .price_card {
  background: #f31a15;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fifth_section .price_card .card_img img {
  width: 100%;
  height: 100%;
  max-height: 410px;

  object-fit: cover;
}

.fifth_section .price_card .card_body {
  padding: 15px;
  text-align: center;
  color: #fff;
}

.fifth_section .price_card .title {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'Outfit', sans-serif;
}

.fifth_section .price_card .price {
  font-size: 35px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin: 6px 0;
}

.fifth_section .price_card .bonus {
  font-size: 30px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

.fifth_section .price_card .btn_more {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

/* 1400px */
@media (max-width: 1400px) {
  .fifth_section .main_title {
    font-size: 42px;
  }

  .fifth_section .price_card .title {
    font-size: 34px;
  }

  .fifth_section .price_card .price {
    font-size: 30px;
  }

  .fifth_section .price_card .bonus {
    font-size: 26px;
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .fifth_section .main_title {
    font-size: 38px;
  }

  .fifth_section .price_card .title {
    font-size: 32px;
  }

  .fifth_section .price_card .price {
    font-size: 28px;
  }

  .fifth_section .price_card .bonus {
    font-size: 24px;
  }
}

/* 991px → padding 20px required */
@media (max-width: 991px) {

  .fifth_section .container_custom {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .fifth_section .main_title {
    font-size: 34px;
  }

  .fifth_section .small_title {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .fifth_section .price_card .title {
    font-size: 30px;
  }

  .fifth_section .price_card .price {
    font-size: 26px;
  }

  .fifth_section .price_card .bonus {
    font-size: 22px;
  }

  .fifth_section .price_card .btn_more {
    padding: 14px 26px;
    font-size: 14px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .fifth_section .main_title {
    font-size: 30px;
  }

  .fifth_section .price_card .title {
    font-size: 28px;
  }

  .fifth_section .price_card .price {
    font-size: 24px;
  }

  .fifth_section .price_card .bonus {
    font-size: 20px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .fifth_section .main_title {
    font-size: 26px;
  }

  .fifth_section .small_title {
    font-size: 14px;
  }

  .fifth_section .price_card {
    border-radius: 18px 18px 0 0;
  }

  .fifth_section .price_card .title {
    font-size: 24px;
  }

  .fifth_section .price_card .price {
    font-size: 22px;
  }

  .fifth_section .price_card .bonus {
    font-size: 18px;
  }

  .fifth_section .price_card .btn_more {
    padding: 12px 22px;
    font-size: 13px;
  }

  .fifth_section .price_card .card_img img {
    max-height: 320px;
  }
}

/* 430px */
@media (max-width: 430px) {
  .fifth_section .main_title {
    font-size: 22px;
  }

  .fifth_section .price_card .title {
    font-size: 22px;
  }

  .fifth_section .price_card .price {
    font-size: 20px;
  }

  .fifth_section .price_card .bonus {
    font-size: 16px;
  }

  .fifth_section .price_card .card_img img {
    max-height: 280px;
  }
}

/* 360px */
@media (max-width: 360px) {
  .fifth_section .main_title {
    font-size: 20px;
  }

  .fifth_section .price_card .title {
    font-size: 20px;
  }

  .fifth_section .price_card .price {
    font-size: 18px;
  }

  .fifth_section .price_card .bonus {
    font-size: 15px;
  }

  .fifth_section .price_card .btn_more {
    font-size: 12px;
    padding: 10px 18px;
  }
}

/* section5 end  */


/* section6 start  */

.sixth_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Background Video */
.sixth_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.sixth_section .container_custom {
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Titles */
.sixth_section .small_title {
  font-size: 16px;
  text-align: center;
  color: #040404;
  margin-bottom: 70px;
}

.sixth_section .main_title {
  font-size: 48px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10px;
}

/* Review Box */
.sixth_section .review_box {
  padding: 10px 40px 30px;
  color: #fff;
}

/* Stars */
.sixth_section .review_box .stars {
  font-size: 23px;
  font-family: 'Inter';
  margin-bottom: 10px;
}

/* Review Text */
.sixth_section .review_box .review_text {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

/* User */
.sixth_section .review_box .review_user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sixth_section .review_box .review_user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.sixth_section .review_box .review_user span {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Large Screens (max 1400px) */
@media (max-width: 1400px) {
  .sixth_section .main_title {
    font-size: 42px;
  }
}

/* Tablet Landscape (max 1200px) */
@media (max-width: 1200px) {
  .sixth_section .main_title {
    font-size: 38px;
  }

  .sixth_section .review_box {
    padding: 10px 30px 25px;
  }
}

/* Tablet (max 991px) */
@media (max-width: 991px) {

  /* Left-Right padding 20px */
  .sixth_section .container_custom {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sixth_section .main_title {
    font-size: 34px;
  }

  .sixth_section .small_title {
    margin-bottom: 50px;
    font-size: 15px;
  }

  .sixth_section .review_box {
    padding: 10px 25px 25px;
  }

  .sixth_section .review_box .review_text {
    font-size: 15px;
  }
}

/* Mobile Large (max 768px) */
@media (max-width: 768px) {

  .sixth_section .container_custom {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sixth_section .main_title {
    font-size: 30px;
  }

  .sixth_section .small_title {
    font-size: 14px;
  }

  .sixth_section .review_box .stars {
    font-size: 20px;
    text-align: center;
  }

  .sixth_section .review_box .review_text {
    text-align: center;
  }

  .sixth_section .review_box .review_user span {
    font-size: 15px;
    text-align: center;
  }

  .sixth_section .review_box .review_user {
    justify-content: center;
  }
}

/* Mobile Medium (max 576px) */
@media (max-width: 576px) {
  .sixth_section .main_title {
    font-size: 26px;
  }

  .sixth_section .small_title {
    margin-bottom: 40px;
  }

  .sixth_section .review_box {
    padding: 10px 20px 20px;
  }

  .sixth_section .review_box .review_text {
    font-size: 14px;
    line-height: 1.5;
  }

  .sixth_section .review_box .review_user img {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Small (max 430px) */
@media (max-width: 430px) {
  .sixth_section .main_title {
    font-size: 22px;
  }

  .sixth_section .small_title {
    font-size: 13px;
  }

  .sixth_section .review_box .review_text {
    font-size: 13px;
  }
}

/* Mobile Extra Small (max 360px) */
@media (max-width: 360px) {
  .sixth_section .main_title {
    font-size: 20px;
  }

  .sixth_section .review_box {
    padding: 10px 16px 18px;
  }

  .sixth_section .review_box .review_text {
    font-size: 12.5px;
  }
}


/* section6 end  */

/* section7 start  */

.seventh_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Overlay */
.seventh_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2826263d;
  /* overlay darkness adjust here */
  z-index: 1;
}

/* Background Video */
.seventh_section .video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.seventh_section .container_custom {
  max-width: 1224px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #040404;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Titles */
.seventh_section .small_title {
  font-size: 16px;
  text-align: center;
  color: #040404;
  margin-bottom: 40px;
}

.seventh_section .main_title {
  font-size: 48px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10px;
}

/* ---------- Form Style ---------- */


.seventh_section .form_box {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background-color: #f31a15ba;
  background-color: #f31a15ba;
  border-radius: 20px;
  padding: 32px;
}


.seventh_section .form_box label {
  font-size: 14px;
  text-align: left;
  display: block;
  margin-bottom: 0px;
  color: #fff;
}

.seventh_section .form_box .form-control {
  background: #fff;
  border: 1px solid #1a1a1a;
  color: #000;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
}

.seventh_section .form_box .fieldd {
  margin-bottom: 22px;
}

.seventh_section .form_box .form-control:hover {
  background: #fff;
}

.seventh_section .form_box .form-control::placeholder {
  color: gray;
}

.seventh_section .form_box .buttonCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seventh_section .form_box .buttonForm {
  background: #f31a15ba;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
  border: none;
  text-align: center;
  color: #fff;
}


/* 1400px ↓ (large screens optimize) */
@media (max-width: 1400px) {
  .seventh_section .main_title {
    font-size: 42px;
  }
}

/* 1200px ↓ */
@media (max-width: 1200px) {
  .seventh_section .main_title {
    font-size: 38px;
  }
}

/* 991px ↓ (tablet + mobile) */
@media (max-width: 991px) {
  .seventh_section .container_custom {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .seventh_section .main_title {
    font-size: 34px;
  }

  .seventh_section .small_title {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .seventh_section .form_box {
    padding: 28px;
  }
}

/* 768px ↓ (mobile landscape) */
@media (max-width: 768px) {
  .seventh_section .main_title {
    font-size: 30px;
  }

  .seventh_section .form_box {
    padding: 24px;
  }
}

/* 576px ↓ (normal phones) */
@media (max-width: 576px) {
  .seventh_section .main_title {
    font-size: 26px;
  }

  .seventh_section .small_title {
    font-size: 14px;
  }

  .seventh_section .form_box {
    padding: 20px;
  }

  .seventh_section .form_box .form-control {
    padding: 14px;
    font-size: 15px;
  }

  .seventh_section .form_box .buttonForm {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* 420px ↓ (small phones) */
@media (max-width: 420px) {
  .seventh_section .main_title {
    font-size: 22px;
  }

  .seventh_section .form_box {
    padding: 18px;
  }
}

/* 360px ↓ (ultra small phones) */
@media (max-width: 360px) {
  .seventh_section .main_title {
    font-size: 20px;
  }

  .seventh_section .form_box {
    padding: 16px;
  }
}

/* section7 end  */