* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/* html,
body {
  height: 100%;
  scroll-behavior: smooth;
  font-size: clamp(15px, 1.7vw, 14px) !important;
} */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


body {
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  /* scroll-behavior: smooth; */
  background-color: rgba(231, 218, 224, 0.3);
  min-width: 300px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  min-width: 300px;
}
nav {
  background: url(assets/img/landing_page_img_revised/nvbg.jpg) center/cover no-repeat;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 5px, rgba(0, 0, 0, 0.34) 0px 3px 5px;
  padding: 0 4%;
  z-index: 999;
  display: flex;
  position: relative;
  height: 64px;
}
.text_container {
  display: flex;
  flex-direction: column;
}
.republic,
.bfp,
.quote {
  color: white;
  line-height: 1.1;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  justify-content: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-size: clamp(0.6rem, 1vw, 0.7rem) !important;
}
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(139, 0, 0, 0.8), rgba(160, 17, 46, 0.8), rgba(139, 0, 0, 0.8));
  z-index: 1;
}

.nav_left a {
  display: flex;
  gap: 1rem;

  align-items: center;
  justify-content: start;
  color: white;
  font-weight: bold;
}
.bplogo,
.bfplogo {
  width: 43px;
  height: 43px;
}

.bfplogo {
  /* width: clamp(30px, 4vw, 50px);
  height: auto; */
  background-color: white;
  border-radius: 50%;
}

.nav_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.nav_left a {
  flex: 0 0 auto;
}

.nav_middle {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav_right {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}
.nav_middle ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  color: white;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 26px);
}
nav a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(0.6rem, 1vw, 0.8rem) !important;
}
.nav_middle ul li {
    position: relative; 
    padding: 0 10px; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    transition: background-color 0.3s ease-out;
}

.nav_middle ul li::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%; 
    width: 0; 
    height: 2px; 
    background-color: white; 
    box-shadow: 0 0 5px white;
    transition: width 0.3s ease-out, left 0.3s ease-out, box-shadow 0.3s ease-out;
}

.nav_middle ul li:hover::after {
    width: 100%; 
    left: 0; 
    box-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.8);
}

.nav_middle ul li:hover a {
    color: white; 
    text-shadow: 0 0 5px white, 0 0 10px rgba(255, 255, 255, 0.5); 
}

nav a {
    transition: color 0.3s ease-out, text-shadow 0.3s ease-out;
    text-shadow: none; 
}
.burger_nav {
  display: none;
}
/* .responsive_menu {
  display: none;
} */

.page1_revise {
  position: relative;
  background: url("assets/img/landing_page_img_revised/firebg.jpg") center/cover no-repeat;
  height: max-content;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page1_revise:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(207, 207, 207, 0.685);
  z-index: 1;
}

.image-slider {
  max-height: 500px;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2 / 1; /* Maintains  ng proportion without fixed vw height */
  /* margin-top: 64px;
  margin: 64px auto 0 auto; */
  overflow: hidden;
  position: relative;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  position: relative;
  width: 80%;
  overflow: hidden;
  display: flex;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  height: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide img {
  width: 80%;
  height: 68%;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: clamp(5px, 0.5rem, 10px);
  cursor: pointer;
  font-size: clamp(14px, 1.5vw, 24px);
  border-radius: 50%;
}

.prev {
  left: 70px;
}
.next {
  right: 70px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.page-number {
  position: absolute;
  bottom: 25px;
  right: clamp(50%, 2vw, 50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: clamp(3px, 0.5vh, 8px) clamp(5px, 1vw, 12px);
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1vw, 18px);
}
@media (min-width: 801px) {
  .responsive_menu {
    display: none;
  }
}
@media (max-width: 800px) {
  .nav_middle,
  .nav_right {
    display: none;
  }
  .burger_nav {
    display: flex;
    background-color: rgba(226, 226, 226, 0.386);
    border: none;
    padding: 3px;
    border-radius: 7px;
    cursor: pointer;
  }
  .burger_nav:hover {
    background-color: rgba(204, 204, 204, 0.481);
  }
  .responsive_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: linear-gradient(to right, rgba(95, 0, 0, 0.8), rgba(119, 3, 22, 0.89), rgba(139, 0, 0, 0.8));
    z-index: 998;
    /* transform: translateY(-5px); */
    transition: opacity 0.5s ease, max-height 1s ease-out, transform 1s ease;
    padding: 10px 0; /* Add padding when visible */
  }
  .responsive_menu.active {
    max-height: 300px; /* large enough to contain all items */
    opacity: 1;
    /* transform: translateY(0); */
  }
  .responsive_menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    flex-wrap: nowrap;
    color: white;
    justify-content: space-between;
    /* gap: clamp(10px, 2vw, 16px); */
  }
  .responsive_menu ul li {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .responsive_menu ul li a {
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .responsive_menu ul li:hover {
    background-color: rgba(199, 199, 199, 0.486);
  }
}
@media (max-width: 400px) {
  .text_container,
  .bplogo {
    display: none;
  }
}

/* ........................................................................ */

.application_steps_section {
    background-color: #f8f8f8; 
    max-width: 1420px;
    margin: 10px auto; 
    padding: 3px; 
    border-radius: 5px;
}

.step_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    gap: 6px; 
}
.steps_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px; 
}

#steps_title {
    color: #B9282a; 
    font-size: 1.2rem;
    font-weight: 700; 
    text-transform: uppercase;
    margin: 0; 
}

.translate_btn {
    background-color: #a44249; 
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.6rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

.translate_btn:hover {
    background-color: #8c363c; 
}

.step_item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; 
    background-color: #484b90; 
    color: white;
    margin-bottom: 3px; 
    padding: 5px 25px;
    border-radius: 4px;
    border-left: 8px solid #a44249; 
    border-right: 8px solid #a44249;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
}

.step_number {
    background-color: #a44249; 
    border-radius: 15%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 30px; 
    flex-shrink: 0; 
}
.step_text {
    flex-grow: 1;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 900px) {
    .step_list {
        grid-template-columns: 1fr; 
        gap: 10px; 
    }

    .application_steps_section {
        max-width: 90%; 
        margin: 20px auto; 
        padding: 20px 15px;
    }
}


@media (max-width: 600px) {
    .application_steps_section {
        padding: 20px 15px; 
        margin: 10px 5px; 
        max-width: 100%; 
    }
    
    .step_list {
        grid-template-columns: 1fr; 
        gap: 8px;
    }
    .steps_header {
        flex-direction: column; 
        align-items: flex-start;
        width: 100%;
        margin-bottom: 10px;
    }

    #steps_title {
        font-size: 0.9rem;
        margin-bottom: 8px; 
    }

    .translate_btn {
        width: 100%; 
        font-size: 0.6rem; 
        padding: 8px 13px;
    }

    .step_item {
        padding: 10px 15px; 
    }

    .step_number {
        margin-right: 15px;
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .step_text {
        font-size: 0.75rem; 
        width: 100%; 
        padding-top: 5px; 
    }
}

@media ( min-width:600px) and (max-width: 1024px) {
    .step_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    gap: 6px; 
    }
    .application_steps_section {
        max-width: 95%;
        margin: 30px auto;
        padding: 20px 10px;
        margin-bottom: 5px;
    }

    .step_item {
       margin-bottom:5px;
    }
}
@media (min-width:1028px ) {
    .step_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    gap: 6px; 
    }
    .application_steps_section {
        max-width: 95%;
        margin: 5px auto;
        padding: 10px 5px;
        margin-bottom: 5px;
    }

    .step_item {
       margin-bottom:5px;
    }
}
.map_section {
    margin: 5px auto 10px auto; 
    background-color: #ffffff; 
    padding-right: 50px;
    padding-left: 50px;
  position: relative;
  /*background: url("assets/img/landing_page_img_revised/firebg.jpg") center/cover no-repeat;*/
  height: max-content;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map_section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(207, 207, 207, 0.355);
  z-index: -1;
}
.map_details {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #333;
}
.map_container {
    height: 350px; 
    width: 100%;
    border: 1px solid #ddd;
    overflow: hidden; 
}

.map_container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .map_section {
        margin: 20px auto; 
    }
    
    .map_container {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .map_section {
        margin: 10px 0; 
    }
    
    #map_title, .map_details {
        padding: 0 10px; 
    }
    
    .map_container {
        height: 180px; 
        border-left: none;
        border-right: none;
    }
    
    #map_title { 
        font-size: 1.3rem; 
    }
    
    .map_details {
        font-size: 0.85rem;
    }
}

.contact_us_section {
    max-width: 1530px; 
    margin: 15px auto; 
    padding: 0 50px; 
}

.contact_title {
    color: #B9282a; 
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1px;
    margin-left: 5px;

}

.contact_card {
    display: flex; 
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 10px; 
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative; 
    overflow: hidden;
}

.contact_image_container {
    flex-shrink: 0; 
    width: 35%; 
    height: auto; 
    max-width: 350px; 
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.contact_image_container img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover;
}

.contact_details_container {
    flex-grow: 1; 
    padding: 0 30px 0 10px; 
    position: relative;
    z-index: 2; 
}

.contact_detail_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.detail_label {
    font-weight: bold;
    color: #0b0231; 
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.detail_value {
    color: #a44249; 
    font-weight: 600;
    font-size: 0.8rem; 
    text-align: right;
    white-space: nowrap; 
    overflow-wrap: break-word; 
    word-break: break-all;
}

.contact_line {
    height: 1px;
    background-color: #e0e0e0;
    margin: 5px 0;
}
a{
  text-decoration-line: none;
  color: #a44249;
  
}

@media (max-width: 900px) {
    .contact_us_section {
        max-width: 95%; 
        padding: 0 15px;
    }

    .contact_title {
        font-size: 0.8rem;
        font-weight: 700;
        padding-left: 10px; 
    }
    
    .contact_card {
        flex-direction: column; 
        padding: 10px 5px;
    }

    .contact_image_container {
        width: 100%; 
        max-width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
        height: 0;
        padding-bottom: 30%; 
        position: relative;
    }
    
    .contact_details_container {
        padding: 10px 0;
        width: 100%;
    }
    
}

@media (max-width: 600px) {
    .contact_us_section {
        max-width: 100%; 
        margin: 20px 0; 
        padding: 0; 
    }
    
    .contact_title {
        font-size: 0.8rem;
        font-weight: 700;
        padding-left: 10px; 
    }
    
    .contact_card {
        border-radius: 0; 
        box-shadow: none; 
        padding: 15px 10px; 
    }

    .contact_image_container {
        padding-bottom: 45%; 
    }

    .detail_label, 
    .detail_value {
        font-size: 0.7rem;
    }
    
    .detail_value {
        white-space: normal; 
        text-align: left; 
    }

    .contact_detail_item {
        flex-direction: column; 
        align-items: flex-start;
        margin: 10px 0;
    }
    
    .detail_label {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

.faqs_container {
    background-color: #ffffff; 
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.faqs_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.faqs_title {
    color: #B9282a; 
    font-size: 1.1rem; 
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 5px;
    padding-left: 40px; 

}

.faqs_translate_btn {
    background-color: #a44249;
    color: white;
    padding: 8px 15px;
    margin-right: 30px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.6rem; 
    white-space: nowrap;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
    flex-shrink: 0;
}

.faqs_content {
    display: flex;
    width: 100%;
    align-items: flex-end; 
}

.faqs_list {
    flex-grow: 1;
    width: 50%; 
    padding-right: 20px;
}

.faqs_image_container {
    flex-shrink: 0;
    width: 60%; 
    max-width: 200px; 
    max-height: 150px; 
    
    display: flex; 
    justify-content: center; 
    align-items: flex-end; 
    
    text-align: right; 
    overflow: hidden; 
    position: relative;
    margin-left: 20px; 
    margin-top: 10px; 
    background-color: transparent; 
}

.fire_img {
    width: 85%; 
    height: 100%; 
    object-fit: contain; 
    display: block;
    transform: translateY(0);
    margin-right: 50px;
}

.fire_women {
    width: 45%; 
    height: 100%;
    object-fit: contain; 
    display: block;
    margin: 0; 
    transform: translateY(0);
}

@media (max-width: 900px) {    
    .faqs_image_container {
        order: -1; 
        max-height: 120px; 
        max-width: 150px; 
        margin-bottom: 15px;
        margin-left: auto; 
        margin-right: auto;
        text-align: center; 
    }
    
    .fire_img {
        width: auto; 
        height: 100%; 
        object-fit: contain;
        margin-left: auto;
        margin-right: auto;
    }
    
}

@media (max-width: 600px) {    
    .faqs_image_container {
        max-height: 80px; 
        max-width: 100px; 
        margin-bottom: 10px;
    }
}
@media (max-width: 900px) {    
    .faqs_content {
        flex-direction: row; 
        align-items: flex-start; 
        justify-content: space-between; 
    }
    
    .faqs_list {
        width: 65%; 
        padding-right: 15px; 
    }
    
    .faqs_image_container {
        width: 35%; 
        max-height: 120px; 
        max-width: 150px; 
        margin: 0; 
        display: flex; 
        flex-direction: row; 
        justify-content: center; 
        align-items: flex-end; 
    }
    
    .fire_img, .fire_women {
        width: 50%; 
        height: 100%;
        margin: 0 2px;
    }
        .fire_img{
        display: none;
        /*width: 50%; */
        /*height: 100%;*/
        /*margin: 0 2px;*/
    }
}

@media (max-width: 600px) {
    .faqs_content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .faqs_list {
        width: 60%;
        padding-right: 10px;
    }
    
    .faqs_image_container {
        width: 40%;
        max-width: 120px; 
        max-height: 100px;
    }
    
    .fire_img, .fire_women {
        width: 50%; 
        height: 100%;
    }
}

.faq_item {
    margin-bottom: 0;
}
p{
  margin-left: 30px;
}

.faq-question {
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    font-size: 0.8rem; 
    color: #0b0231;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-left: 40px; 
    transition: color 0.3s;
    line-height: 1.3;
}

.faq-question:hover {
    color: #a44249;
}

.faq-question::after {
    content: '\25BC'; 
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg); 
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-question.active::after {
    /* content: '-'; */
    transform: translateY(-50%) rotate(180deg); 
}

.faq-answer {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 10px;
    padding-right: 10px;
}

.faq-answer p, .faq-answer ul {
    font-size: 0.9rem;
    color: #333;
    padding: 5px 0 10px 0; 
}

.faq-answer ul {
    list-style: disc; 
    padding-left: 20px;
    margin-left: 10px;
}

.faq_line {
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 900px) {
    /* .faqs_section {
        max-width: 95%; 
        padding: 0 15px;
        padding-left: 40px;

    } */
    .faqs_container {
        padding: 5px;
        padding-left: 25px;

    }

    .faqs_content {
        flex-direction: column; 
        align-items: center;
    }
    
    .faqs_list, .faqs_image_container {
        width: 100%; 
        padding-right: 0;
    }
    
    .faqs_image_container {
        order: -1; 
        max-height: 200px; 
        margin-bottom: 15px;
    }
    
    .fire_img {
        transform: translateY(0);
        margin: 0 auto; 
    }
        .faqs_title {
        font-size: 0.9rem;
        padding-left: 5px;

    }
    
    .faq-question {
        font-size: 0.9rem;
        padding-left: 5px;

    }
}

@media (max-width: 600px) {
        .faqs_header {
        flex-direction: column; 
        align-items: flex-start;
        width: 100%; 
    }

    .faqs_title {
        font-size: 0.9rem;
        margin-bottom: 1px; 
        /* margin-right: 5px; */
        padding-left: 5px;

    }

    .faqs_translate_btn {
        padding: 3px 5px; 
        font-size: 0.75rem;
        width: 100%; 
        text-align: center;
      
    }
    p{
        margin-left:-5px;
      }    
    .faqs_section {
        max-width: 100%; 
        margin: 20px 0;
    }

    .faqs_container {
        border-radius: 0;
        box-shadow: none;
        padding: 10px;
    }
    
    .faqs_image_container {
        max-height: 150px;

    }

    .faq-question {
        font-size: 0.85rem;
        padding-right: 25px;
        padding-left: 5px;
    }
}


.footer_content {
    background-color: #0b0231; 
    color: white;
    text-align: center;
    padding: 15px 0; 
    width: 100%; 
    box-sizing: border-box;
    margin-top: 5px; 
}

.footer1 {
    max-width: 1530px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer1 p {
    font-size: 0.85rem; 
    margin: 0; 
}

@media (max-width: 600px) {
    .footer_content {
        padding: 10px 0;
        margin-top: 15px; 
    }

    .footer1 p {
        font-size: 0.7rem; 
    }
}

#backToTopBtn {
    display: none; 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 99; 
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #d9534f; 
    color: white; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-size: 18px; 
    opacity: 0.9;
    transition: background-color 0.3s, opacity 0.3s, transform 0.3s;
}

#backToTopBtn:hover {
    background-color: #c9302c; 
    opacity: 1;
    transform: scale(1.1); 
}

@media (max-width: 600px) {
    #backToTopBtn {
        width: 48px; 
        height: 44px; 
        font-size: 15px;
        bottom: 15px;
        right: 15px;
    }
}