/* html {
  scroll-behavior: smooth !important;
} */
 body{
 margin: 0;
 padding: 0;
 overflow-x: hidden;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 }
 #mb-nav{
display: none;
 }

   @font-face {
    font-family: myFont;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
    font-weight: bold;
  }

  @font-face {
    font-family: myFontBold;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
    font-weight: bold;
  }
  @font-face {
    font-family: myFontSemiBold;
    src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
    font-weight: bold;
  }


   h1{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }
   h2{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }
   h3{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }
   h4{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }
   h5{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }
   h6{
    font-family: myFontBold !important;
    color: var(--bs-primary);
   }

   p{
    font-family: myFont !important;
    color: var(--bs-primary);
   }
   a{
    text-decoration: none;
   }

   .txt-primary{
   color: var(--bs-primary);

   }


  .banner-image {
    /* background-image: url('../img/RebwarMiran9.jpg'); */
    background-image: url('../img/2.jpg'); /* Add your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
  }
  .banner-image {
    position: relative;
  }



  .fab-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 9999;
  }

  .fab-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .bottom-div {
    background-image: url('../img/Shape.png');
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
     top: 16vh;
     left: 5% ;
     height: 140px;
     width: 90%  !important;
    background-color:transparent !important; /* Change to your preferred color */
    /* background-color: rgba(255, 255, 255,0.15); Change to your preferred color */
    /* color: white; Text color */
    display: flex;
    justify-content: center;
    align-items: center;
  }
.baner-logos{

 height: auto; max-height: 70px;

}



  .baner-text-center{
      width: 500px;
      height:80px;
      margin-left: auto;
      margin-top: 80vh;
      padding: 10px;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      /* padding-top:90vh; */
      background-color: rgba(255, 255, 255, 0.8);
  }

  .baner-text-center p{
    padding: 0px;
    margin: 0px;
    font-size: 20px;
    font-family: myFontSemiBold !important;
}
  .contact-banner-image {
    position: relative;
    background-image: url('../img/photo.png'); /* Add your image path */
    background-size: cover;
    background-position: center;
    height: 200px !important;
    background-repeat: no-repeat; /* Ensures the image does not repeat */
    /* filter: blur(8px); Applies a Gaussian blur */
}

.contact-banner-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black overlay with 50% opacity */
    z-index: 1;
}

.contact-banner-image > * {
    position: relative;
    z-index: 2;
}




  .logo {
    width: 200px !important;
    height: 80px !important;
    fill: var(--bs-primary)!important;
      }


 .logo-white {
  width: 200px !important;
  height: 80px !important;
  fill: white !important;
  }

  nav{
    height: 70px;
  }
   /* Rotate the arrow when the collapse is open */
   .nav-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Optional: Adjust the transition for smooth rotation */
.nav-link::after {
    transition: transform 0.3s ease;
}

  .menu a {
    padding-left: 0px !important;
    margin-left: 0px !important;
    padding-right: 0px !important;
    margin-right: 0px !important;
  }
  .menu .nav-item {
    padding-left: 0px !important;
    margin-left: 0px !important;
    display: block;
    height: 100%;
    margin-right: 20px;
    position: relative;
    display: flex;
    align-items: end;

    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  }


  /* Style 3: Just animate the :after element's width from 0 to 100% */

  .menu .nav-item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    display: flex;
    transition: all 0.3s ease;
    bottom: 5px;
  }
  .menu li:hover::after {
    width: 100%;
    height: 1px;
    background-color: var(--bs-primary);
  }

  .menu {

    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .menu li.active::after {
    width: 100%;
    height: 1px;
    background-color: var(--bs-primary);
  }
  .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    transition: 0.5s;
    border: none;
    background-color: var(--bs-secondary);
    color: white;
    z-index: 99;
}
.back-to-top:hover {
  background-color: var(--bs-secondary);
   opacity: 50%;
  color: white;
}

.dropdown-menu-custom{
    border-radius: 0px !important;
    text-align: start !important;;
    margin: 0px;
    padding: 0px;
    border: none;


}

.dropdown-menu-custom li a{
   font-size: 14px;
   margin: 0px;
   padding: 0px;
   padding-left: 10px !important;
   padding-top: 5px !important;
   color: var(--bs-primary);
}


.dropdown-menu-mobile {
 list-style: none;
 margin: 0px !important;
 padding: 0px !important;
 padding-left: 5px !important;
 }
 .dropdown-menu-mobile li a {

     font-size: 14px !important;
     font-family: my !important;
    }
.dropdown-menu-custom  div{
    margin: 0px;
    padding: 0px;
 }
.dropdown-menu-custom div p{
    color: var(--bs-secondary);
    background-color: transparent;
    font-size: 16px;
    margin: 0px;
    padding: 0px;

    padding-left: 10px !important;
 }



 .accordion-menu{
border: none !important;
  padding:0;
  margin:0;
  border: none;
  padding-left: 5px;
  padding-right: 5px;
 }
 .accordion-item{
    padding:0;
    margin:0;
    border: none;
 }
 .accordion-menu h6 {

   height: 40px !important;
   border: none !important;
   padding:0px !important;
   margin:0px !important;

    }

 .accordion-button{
     font-family: myFont !important;
    color: var(--bs-primary);
    height: 40px !important;
    font-size: 14px !important;
    padding:0px !important;
    margin:0px !important;
    padding-left: 5px !important  ;
    padding-right: 10px !important;
     }

     .accordion-menu-ul {
        list-style-type: none !important;
        padding:0px;
        margin:0px;
        border: none !important;
        padding-left: 20px ;
        padding-top: 10px;
        padding-bottom: 5px;

         }

         .accordion-menu-ul li{

font-size: 14px;
             }
   /* Change the background color and text color for the active accordion button */
   .accordion-button:not(.collapsed) {
    border: none;
    background-color: transparent; /* Change to your desired color */
    color: var(--bs-primary); /* Change text color */
}

.accordion-button {
    background-color: transparent ; /* Default background color */
    color:var(--bs-primary); /* Default text color */
    border: none;
    transition: background-color 0.3s ease; /* Smooth transition */
}

.accordion-button::after{
background-color: var(--bs-primary) !important;
  border-radius: 100% !important;
  padding: 1px !important;
}


/* Optional: Add hover effect */
.accordion-button:hover {
    background-color: #e2e6ea; /* Change hover color */
    border: none;
}


  ul.custom-bullets li {
    margin-top: 0px !important; /* Adds margin above each list item */
  }

  ul.custom-bullets li::marker {

    font-size: 1.8em; /* Adjusts the bullet size */
    color: #f29000 !important; /* Changes the bullet color */

  }
  ul.custom-bullets li p {
    font-size: 14px !important;
    font-family: myFont !important;
  }



  #our-history-img {
    position: relative; /* Ensure the element is positioned relative */
    min-height: 60vh;
    width: 100%;

}

#our-history-img::before {
    content: "";
    background-image: url('../img/World-Icon-Victor3.png'); /* Add your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 10%; /* Set the opacity for the background image */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Place the pseudo-element behind the content */
}

#LEGACY-TXT{

    margin-top: 20vh;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
  }


#our-success-img {
  position: relative; /* Ensure the element is positioned relative */
  min-height: 500px;
  width: 100%;
  z-index: 99;
}

#our-success-img::before {
  content: "";
  background-image: url('../img/World-Icon-Victor22.png'); /* Add your image path */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 100%; /* Set the opacity for the background image */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; /* Place the pseudo-element behind the content */
}



.goal-card {
  background-color: white;
  border-radius: 15px;
  height: 340px;
  width: 240px;
  margin: 10px;
  padding-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.20);
  display: flex;
  flex-direction: column; /* Stacks elements vertically */
  justify-content: flex-start; /* Aligns content at the top */
  align-items: center; /* Centers content horizontally */
  transition: transform 0.8s ease, background-color 0.3s ease;
}

.goal-card:hover {
  background-color: var(--bs-secondary);
 transform: translateY(-10px);

}


.goal-card svg{
  fill:var(--bs-primary);

}

.goal-card img{
  fill:var(--bs-primary);

}
.goal-card:hover svg {
  fill: white;

}

.goal-card:hover h6 {
  color: white;

}
.goal-card:hover p {
  color: white;

}

.mission-section{
  background-image: url('../img/RebwarMiran7_new.jpg'); /* Add your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; /* Ensures the image does not repeat */
}
.light-sweep {
  font-size: 22px;
  font-weight: 800;
  margin-top: 20px;
  display: inline-block;
  width: 300px;
  background: #111 -webkit-linear-gradient(left, #111, #fff) no-repeat 0 0 / 30px;
  background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.60);
  animation: sweep 2.5s ease-in infinite;
}


@keyframes sweep {
  0% {
      background-position: 0 0;
  }

  100% {
      background-position: 100% 100%;
  }
}



.legacy-text,
.future-text {
  color: #062f6d;
  font-size: 2.5rem;
  /* Default size for larger screens */
  white-space: nowrap;
  /* Prevents line breaks */
}


.sz-navbar{
    height: 48px; /* overriding default 64px height */
}

.sz-navbar-inner{
    padding: 0 24px;
}






@media (max-width: 768px) {

  /* Tablet size */
  .legacy-text,
  .future-text {
    font-size: 1.8rem;
  }
}






/* Responsive styles */
@media (max-width: 992px) {

  body{
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;

    }
    nav{
      height: auto;
    }

    .nav-item{
       border-bottom:rgb(242, 144, 0,0.3) solid 1px !important;
    }

    #pc-nav{
        display: none !important;
         }

         #mb-nav{
            display: block;
             }


  .logo {
    width: 150px !important;
    height: 50px !important;
    fill: var(--bs-primary)!important;
      }


 .logo-white {
  width: 150px !important;
  height: 50px !important;
fill: white !important;
  }





  .banner-image {
    height: 40vh !important; /* Adjust the height for tablets and mobile devices if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bottom-div {
    background-size: contain;
     top: 1vh;
     left: 5% ;
     height: 30vh !important;
     width: 90%  !important;
     /* background-color: rgba(255, 255, 255,0.15); Change to your preferred color */

    display: flex;

  }
.baner-logos{

 height: auto; max-height: 50px;

}

  .baner-text-center{
    width: 350px;
    height:60px;

    margin-left: auto;
    margin-top: auto;
    margin-bottom: 20px;

}

.baner-text-center p{
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  font-family: myFontSemiBold !important;
}


  .scrolldown_btn{
    font-size: 20px;
     margin-bottom:
      8px;z-index: 99999;

  }

   .scrolldown_btn{

    display: none;
   }

   #our-history-img {
    position: relative; /* Ensure the element is positioned relative */
    min-height: 30vh;
    width: 100%;

}
   #our-history-img::before {
     padding: 100% !important;

}
#LEGACY-TXT{

    margin-top: 10vh;
}

   .mission-section{
    background-image: url('../img/RebwarMiran71.jpg'); /* Add your image path */

  }
}

@media (max-width: 576px) {
  body{
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;

    }
     nav{
      height: auto;
    }
    .logo {
      width: 100px !important;
      height: 30px !important;
      fill: var(--bs-primary)!important;
        }


   .logo-white {
    width: 100px !important;
    height: 30px !important;
  fill: white !important;
    }





  /* Mobile size */
  .legacy-text,
  .future-text {
    font-size: 1.1rem;
  }



  .banner-image {
    height: 40vh !important; /* Adjust the height for tablets and mobile devices if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .bottom-div {
    background-size: contain;
     top: 1vh;
     left: 5% ;
     height: 30vh !important;
     width: 90%  !important;

    display: flex;

  }
.baner-logos{

 height: auto;
 max-height: 25px !important;

}

  .baner-text-center{
    width: 250px !important;
    height:50px !important;

    margin-left: auto !important;
    margin-top: auto !important;
    margin-bottom: 20px !important;

}

.baner-text-center p{
  padding: 0px;
  margin: 0px;
  font-size: 10px;
  font-family: myFontSemiBold !important;
}





  ul.custom-bullets li p {
    font-size: 12px !important;
    font-family: myFont !important;
  }

}
