@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/

/******* fonts *********/

@import url('../fonts//Noto_Serif_Ethiopic/stylesheet.css');

/******* fonts *********/

/* body{
    overflow-x: hidden;
} */

html {
  scroll-behavior: smooth;
}

.page_content {
  overflow: hidden;
}

h1{
    font-family: 'Noto Serif Ethiopic';
    font-size: 75px;
    color:#112b69;
    font-weight: 500;
}

h2{
    font-family: 'Noto Serif Ethiopic';
    font-size: 55px;
    color:#112b69;
}

h3{
    font-family: 'Noto Serif Ethiopic';
    font-size: 24px;
}

h4{
  font-size: 21px;
  font-family: 'Noto Serif Ethiopic';
  color: #323232;
}

.mission_text p {
  max-width: 480px;
  line-height: 1.8;
}
h5{
  font-size: 15px;
  font-family: 'Noto Serif Ethiopic';
}

h6{
  font-family: 'Noto Serif Ethiopic';
  font-size: 30px;
}

p{
    font-size: 18px;
    font-family: 'Noto Serif Ethiopic';
    letter-spacing: 0.5px;
    color: #323232;
}

.text_blue{
    color:#0C1946;
}

.text_light_blue{
    color:#112b69;
}

.bg_text{
  font-size:78px;
}

.bg_img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.dark_text a:hover{
  color: #b01565;
}

.dark_text.light a:hover{
  color: #fd97c5;
}

.dark_text a{
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.small_text{
  font-size: 12px !important;
}

/* navbar*/

.logo_div{
  width: 50px;
  position: relative;
  z-index: 99;
  transition: width 0.5s ease, height 0.5s ease;
}

.nav_bar .nav-item .nav-link {
  font-family: 'Noto Serif Ethiopic';
  font-size: 14px;
  font-weight: 400;
  color: black;
  transition: font-size 0.5s ease, padding 0.5s ease;
}

.nav_bar .nav-item .nav-link:hover {
  color: #071994;
}

.nav_bar .nav-item .nav-link.active {
  color: #071994 !important;
  border-bottom: 1px solid #071994;
  padding-bottom: 5px;
}

/* navbar*/

/* hero section */

.header_wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1030;
background-color: #ffffffd9;
backdrop-filter: blur(20px);
box-shadow: 0 2px 10px #0000001a;
transition: transform 0.4s ease;
}

.header_wrapper.hidden {
  transform: translateY(-100%);
}

.header_wrapper.scrolled {       
  backdrop-filter: blur(5px);       
}

.hero_sticky {
width: 100%;
height: 100vh;
background-size:cover;
background-position:center top;
background-repeat: no-repeat;
}

/* Navbar after scroll */

.header_navbar {
  transition: background-color 0.4s ease, padding 0.4s ease;
  /* will-change: transform; */
  padding: 0;
}

.header_navbar.scrolled {
  padding: 0;
}

.header_navbar.scrolled .logo_div {
    width: 50px; 
    transition: width 0.8s ease, height 0.8s ease;
}

.header_navbar.scrolled .nav-link {
  font-size: 14px;
  transition: font-size 0.8s ease, padding 0.8s ease;
}

.header_navbar.scrolled .navbar-toggler{
  width: 45px;
  height: 45px;
  transition: width 0.8s ease, height 0.8s ease;
}

/* hero section */

/* button */ 
.button {
  display: inline-block;
  padding: 10px 35px;
  font-size: 16px;
  font-family: 'Noto Serif Ethiopic';
  color: #051744;
  background-color: #fff7f5;
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:before,
.button:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.button:before {
    left: -100%;
    background: linear-gradient(25deg, #ff00c8, #fff4f4, #ed167700);
    z-index: -1;
}


.button:hover:before {
  left: 0;
}

.button:after {
    right: -100%;
    background: linear-gradient(270deg, #ed1677, #fff4f4, #ed167700);
    z-index: -1;
}

.button:hover:after {
  right: 0;
}

.button:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* button */ 

/* button dark*/ 

.dark_button {
  display: inline-block;
  padding: 10px 35px;
  font-size: 17px;
  font-family: 'Noto Serif Ethiopic';
  color: #ffffff; 
  background-color: #041847; 
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.dark_button.feature_btn{
  padding: 15px 50px;
}

.dark_button:before,
.dark_button:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  opacity: 0.4; 
  pointer-events: none;
  transition: all 0.5s ease-in-out; 
  z-index: -1; 
}

.dark_button:before {
    left: -100%;
    background: linear-gradient(45deg, #0550ff , #4cabff , transparent);
}

.dark_button:hover:before {
  left: 0;
}


.dark_button:after {
    right: -100%;
    background: linear-gradient(270deg, #0550ff , #4cabff , transparent);
}

.dark_button:hover:after {
  right: 0;
}

.dark_button:active {
  transform: translateY(1px);
}


/* button dark*/ 

.dark_button_border {
  background-color: transparent;
  border: 2px solid #466dcb;
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 10px 35px;
  color: #466dcb; 
}

.dark_button_border:hover {
  color: #0637ac; 
  transition: all 0.5s ease-in-out; 
}

/* drop down button */ 

.dropdown_btn{
  padding: 10px 35px;
  font-size: 17px;
  font-family: 'Noto Serif Ethiopic';
  color: #ffffff; 
  background-color: #041847; 
  border: none;
  border-radius: 10px;
  text-align: center;
}

/* drop down button */ 

/* submit button */ 

.button.button_submit{
  padding: 12px 60px;
}

/* submit button */ 

/* Marquee Text */ 

.marquee{
  background: #071944;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
}
.marquee .scroll{
  width: 100%;
}
.marquee .scroll div{
  background: #071944;
  white-space: nowrap;
  animation: animate-marquee 80s linear infinite;
  animation-delay: -40s;
}
.marquee .scroll div:nth-child(2){
  animation: animate-marquee-2 80s linear infinite;
  animation-delay: -80s;
}

.category{
  font-size: 25px;
  font-weight: 100;
  clear: both;
  font-family: 'Noto Serif Ethiopic';
  display: inline-block;
  white-space: nowrap;
  padding: 20px 30px;
}
.category a{color:#FFF;text-decoration: none;}


/* Light Marquee Text */ 
.marquee.light_marquee{
  background: #f6f6f6;
  margin-top: 0;
}

.marquee.light_marquee .scroll div{
  background: #f6f6f6;
}

.category.light{
    color: #112B69;
}
.category.light a{color:#112B69;text-decoration: none;}

/*Responsive marquee*/
@media (max-width:767px){
  .category{font-size: 25px;}
  .marquee .scroll div{font-size: 25px;}
}

@keyframes animate-marquee{
	0%{
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100%{
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes animate-marquee-2{
	0%{
		-moz-transform: translateX(0%);
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	100%{
		-moz-transform: translateX(-200%);
		-webkit-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}

/* Marquee Text */ 

/* Safety section */ 

.safety_section{
    background-color: #f9fafa;
    padding: 40px 40px;
    border-radius: 20px;
}

.safety_section.accordion_section{
  padding: 30px 40px 20px 40px;
}

/* Safety section */ 

/* FAQ section */ 

.faq-section {
  background-color: #fff7f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.faq{
  background-color: #071944;
  padding-bottom: 60px;
  padding-top: 60px;
}

/* FAQ section */

/* Gradient section */

 @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
}

.gradient {
 position: absolute;
 /* Center the blob in the card */
  top: 0;
  left: 0;
  z-index: -1; 
            
  /* Your Animation Settings */
  width:  420px;
  height:  420px;
  filter: blur(calc( 420px / 5));
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
            
  /* The Animation */
  animation: rotate 10s ease-in-out alternate infinite;
  opacity: 0.6; /* Slight transparency to blend with card bg */
}

.gradient.footer_gradient{
  top:74%;
  left: 37%;
  width:  520px;
  height:  520px;
  filter: blur(calc( 520px / 5));
  z-index: 0;
}

.gradient.feature_grad {
  top: 234px;
  left: 350px;
  width: 520px;
  height: 520px;
  filter: blur(calc(520px / 5));
  z-index: 0;
}

/* Gradient section */

/* Map section */

.map_content{
  padding-left: 20px;
  padding-right: 20px;
}

.loading {
  margin-top: 160px;
  text-align: center;
  color: gray;
}

.custom-tooltip {
  min-width: 200px;
  max-width: 300px;
  white-space: normal;
}

.custom-tooltip h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  color: #1e2e60;
  font-weight: bold;
}

.custom-tooltip p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

#canada {
  height: 500px;      
  width: 100%;      
  margin: 0 auto;
  cursor: pointer;
}

#usa{
  height: 550px;     
  width: 100%;       
  margin: 0 auto;
  cursor: pointer;
}

.map_heading{
  font-size: 45px;
}
/* Map section */


/* Testimonial section */

.testimonial_content {
  min-height: 350px;
  width: 100%;
}

.text_wrapper {
  max-width: 480px;   
  width: 100%;
  margin: 0 auto;    
  padding: 0 20px;  
  padding: 30px 20px;  
}

.quote_icon.quote_start {
  top: 0;
  left: 0;
}

.quote_icon.quote_end {
  bottom: 0;
  right: 0;
}

/* Testimonial section */

/* footer section */

.safety_section.footer {
  background-color: #071742;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer hr{
  opacity: 0.3;
  color: #D9D9D9;
  height: 5px;
}

.footer a{
  font-size: 17px;
  font-family: 'Noto Serif Ethiopic';
  letter-spacing: 0.5px;
  color:#ffffff;
  text-decoration: none;
  /* margin-bottom: 8px; */
  font-weight: 300;
  width: fit-content;
  transition: color 0.3s ease;
}

.footer a:hover{
  color: #fd97c5;
}

.footer_brand_logo{
max-height: 70px;
max-width: 70px;
}

.footer_wrapper{
  z-index: 1;
  position: relative;
}

.footer_logo{
  width: 120px;
}

h4.footer_sub{
  font-size: 25px;
}

/* footer section */

/* About Us Page Starts Here */

/* principles */

.cards_wrapper{
  background-color: #fff7f5;
  border-radius: 15px;
  padding: 60px 0;
}

.company_cards{
  background: #071944;
  border-radius: 20px; 
  padding: 34px 23px;  
}

/* --- Optional: Ensure mobile looks good (Under 768px) --- */
@media (max-width: 767px) {
  .company_cards {
    padding: 30px 20px;
    margin-bottom: 15px; /* Extra safety for stacking */
  }
}
/* principles */

/* abt_project */

.faq-section.team_s{
  background-color: #071944;
  padding-top: 100px;
  padding-bottom: 100px;
}

.safety_section.project_s{
  background-color: #071944;
}

.project_logo{
max-height: 120px;
}

/* abt_project */

/* abt_team */

.team_card {
    max-width: 271px; 
    height: 347px;  
    border-radius: 20px;
    overflow: hidden;
    background-color: #FFF5F7;
    display: flex;
    /* Remove align-items so the image can stretch to full height */
    /* align-items: flex-end; */ 
    justify-content: center;
    position: relative; 
}

.team_card img {
    width: 100%;
    height: 100%;      
    object-fit: cover; 
    object-position: center top; 
    
    transition: transform 0.3s ease;
    transform: scale(1.02);
}

/* Hover Effect */
.team_card:hover img {
    transform: scale(1.05);
}

.team_group_wrapper {
    position: relative; /* This is the anchor */
    z-index: 1;
}

/* abt_team */

.gallery{
  color: #FFF7F5;
  padding: 30px;
}

.memories_badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background-color: #112B69;
  padding: 40px 20px;  
  width: 90%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.memories_tag{
  display: inline-block;
  font-size: 18px;
  color: #ebebeb;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* --- Polaroid Card Styling --- */
.polaroid-card {
  background-color: #fff;
  padding: 15px 15px 45px 15px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.polaroid-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.polaroid-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 15;
}

.top_row{
  margin-bottom: 154px;
}

/* --- 3. Rotations --- */
 .rot-left-1 { transform: rotate(-12deg); margin-top: 20px; }
  .rot-right-1 { transform: rotate(8deg); margin-top: 0px; }
    
  .rot-left-2 { transform: rotate(-6deg); margin-top: -30px; } /* Center Top */
  .rot-right-2 { transform: rotate(5deg); margin-top: 150px; } /* Center Bottom */
    
  .rot-left-3 { transform: rotate(-15deg); margin-top: 10px; }
  .rot-right-3 { transform: rotate(12deg); margin-top: 40px; }


  .side_images_wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 5;
  }

  /*  Left Image */
  .side_img.left {
    position: absolute;
    left: 5%; 
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 280px;
  }

  /*  Right Image */
  .side_img.right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 280px;
  }

/* Contact Us Page Starts Here */

.faq-section.team_s.contact_section{
  padding-top: 50px;
  padding-bottom: 50px;
}

.custom_input {
    background-color: #ffffff;
    border: none;
    border-radius: 7px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    font-family: 'Noto Serif Ethiopic';
    color: #797979;
}

.custom_input::placeholder {
    color: #797979;
}

.custom_input:focus {
    box-shadow: none;
}

textarea.custom_input {
    resize: none; 
    height: 150px;
}

iframe {
  width: 100%;
  height: 450px;
  filter: invert(90%) hue-rotate(180deg);
}

.icon_circle {
    width: 45px;
    height: 45px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon_circle:hover {
    background-color: #ffffff;
    color: #0e1b40;
}

/* Contact Us Page ends Here */

/* Resources Page Starts Here */

.section{
  padding-top: 100px;
  padding-bottom: 100px;
}

.trust_card{
  background: #FFFFFF;
  border-radius: 40px; 
  padding: 40px 30px;
  min-height: 260px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);   
  border:none;
  cursor: pointer; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 15px; /* Spacing between items */
  transition: all 0.3s ease;
  position: relative; 
  overflow: hidden; 
  z-index: 1;             
}

.trust_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #fff5f7;
}

.trust_logo {
  max-height: 180px;
}
  
.footer_brand_logo.resources_logo{
max-height: 120px;
max-width: 200px;
}


/* Resources Page ends Here */

/* Features Page start Here */

.features_accordion{
  padding-top: 30px;
  padding-bottom: 30px;
}

.scroll-pin-wrapper {
  height: 500vh;
  position: relative;
}

.sticky-section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: hidden;
  background: linear-gradient(135deg, #1e2156 0%, #3a1c52 50%, #521c45 100%); 
}

    @media (max-width: 991px) {
      .scroll-pin-wrapper {
        height: auto !important;
      }

      .sticky-section {
        position: static !important;
        height: auto !important;
        overflow-y: visible !important;
      }

      .dynamic-image-wrapper {
        width: 200px;
        height: 380px;
      }
    }

.scroll-accordion .accordion-body p {
  background-color: #0000000d;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  line-height: 1.6;
}

.dynamic-image-wrapper {
  position: relative;
  width: 300px;
  height: 600px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}

.scroll-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.scroll-img.active {
  opacity: 1;
  visibility: visible;
}

.sorora-accordion {
  min-height: 400px;
  align-self: flex-start;
}

.accordion-collapse {
  transition: height 0.25s ease !important;
}

.scroll-accordion.custom_accordion .accordion-item{
  border-bottom:2px solid #ffffff;
}

.scroll-accordion.custom_accordion .accordion-button::before{
  color: #ffffff;
}

.scroll-accordion .accordion-body p{
  background-color: #ffffff0d;
}

.scroll-accordion .accordion-button:not(.collapsed) .feature_header {
  color: #9FD0FF !important;
}

.feature_list li {
  font-family: 'TT Commons';
  font-size: 24px;
  letter-spacing: 0.5px;
}

.faq-section.team_s.features {
  min-height: 100vh;
}

/* Features Page end Here */

/* F&Q Section starts here */

.faq_footer a{
  color: #112B69;
}

.fq:hover {
  color: #B4509E ;
}

.page_btn.arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
/*  Accordion Styles */

.custom_accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1a2b4b;
    border-radius: 0;
}

.custom_accordion .accordion-button {
    background-color: transparent;
    padding: 30px 0; 
    box-shadow: none;
}

.custom_accordion .accordion-button::after {
    display: none; 
}

.custom_accordion .accordion-button::before {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    color: #1a2b4b;
    transition: transform 0.3s ease;
}

/* Rotate */
.custom_accordion .accordion-button:not(.collapsed)::before {
    transform: rotate(45deg);
}

.custom_accordion .accordion-button:not(.collapsed) {
    color: #1a2b4b;
    background-color: transparent;
    box-shadow: none;
}

/* The Answer Body */
.custom_accordion .accordion-body {
    padding: 0 0 25px 0;
}

/* Pagination Styling */
.page_btn {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1a2b4b;
    border-radius: 8px; 
    color: #1a2b4b;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page_btn.active {
    background-color: #1a2b4b;
    color: #ffffff;
}

.page_btn:hover:not(.active) {
    background-color: #e0e0e0;
}

/* scroll top */
.scroll_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; 
    width: 50px;
    height: 50px;
    background-color: #112B69; 
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll_top:hover {
    background-color: #d71d7f; 
}

/* scroll top */

/* Modal Background */
.custom_modal {
  background: #F5F5F5;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalPop 0.4s ease;
}

/* Smooth pop animation */
@keyframes modalPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Success Icon */
.success_icon i {
  font-size: 60px;
  color: #f39ac2;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Divider */
.modal_divider {
  height: 1px;
}

.text_small{
  font-size: 15px;
  font-family: 'Noto Serif Ethiopic';
}

.newsletter_form {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.newsletter_input {
  flex: 1 1 0;      
  min-width: 0;     
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Noto Serif Ethiopic';
  color: #333;
  background: transparent;
}

.newsletter_input::placeholder {
  color: #888;
}

.newsletter_btn {
  flex-shrink: 0;   
  background-color: #041847;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Noto Serif Ethiopic';
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter_btn:hover {
  background-color: #4F7C96;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px #4F7C96;
}



/*blur text effect*/
.hero_text_wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero_text_wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  
  /* This is the key — radial mask hides the rectangle shape */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, 
    black 30%, 
    transparent 75%
  );
  mask-image: radial-gradient(ellipse 80% 80% at center, 
    black 30%, 
    transparent 75%
  );
  
  z-index: -1;
}

/*blur text effect*/

/*preloader*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.preloader-curtain {
  position: absolute;
  inset: 0;
  background: #071944;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}

#preloader.preloader-hidden .preloader-curtain { transform: translateY(-100%); }
#preloader.preloader-hidden .preloader-inner   { opacity: 0; transition: opacity 0.2s ease; }

.preloader-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  gap: 15px;
}

.preloader-logo {
  opacity: 0;
  transform: translateY(10px);
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.preloader-logo img {
  width: 100px; 
  object-fit: contain;
}

.preloader-bar {
  width: 150px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preloader-fill {
  inset: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #73a9ad, #e292b6, #d71d7f);
  animation: fillBar 4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.preloader-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fillBar { to { width: 100%; } }

body.no-scroll { overflow: hidden; }


/*legal*/
.hero_sticky.legal{
  height: 350px;
}

.hero_sticky.legal h1{
	margin-top: 80px;
}

/* Privacy Policy */
.mb-policy h3 {
  font-size: 22px;
  color: #112b69;
  margin-top: 35px;
  margin-bottom: 10px;
}

.mb-policy h4 {
  font-size: 17px;
  color: #323232;
  margin-top: 15px;
  margin-bottom: 8px;
}

.mb-policy p {
  font-size: 16px;
}

.mb-policy ul, .mb-policy ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.mb-policy ul li {
  color: #444;
  line-height: 1.9;
  margin-bottom: 5px;
  list-style-type: disc;
  font-family: 'Noto Serif Ethiopic';
}

.mb-policy ol li {
  color: #444;
  line-height: 1.9;
  margin-bottom: 5px;
  font-family: 'Noto Serif Ethiopic';
}


.mb-policy ul li::marker {
  color: #112b69;
}

.mb-policy__contact {
  background-color: #f9fafa;
  border-left: 3px solid #112b69;
  padding: 20px 25px;
  border-radius: 8px;
  margin-top: 10px;
}

.mb-policy__contact a {
  color: #112b69;
  text-decoration: none;
}

.mb-policy__contact a:hover {
  color: #d71d7f;
}

/* Policy Table */
.policy_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-family: 'Noto Serif Ethiopic';
  margin-bottom: 20px;
}

.policy_table th {
  background-color: #112b69;
  color: #ffffff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

.policy_table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #444;
  vertical-align: top;
}

.policy_table tbody tr:nth-child(even) {
  background-color: #f9fafa;
}
