/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
     box-sizing: border-box !important;
}

html {
     scroll-behavior: smooth;
}


body {
    background-color: black;
  }

  .about {
    text-align: center;
    padding: 50px 0;
  }
  
  .about h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about-text {
  color: white;
  font-size: 24px;
  padding: 0 50px; /* Adjust the padding as per your preference */
}
  
  
  
  .logo_section {
    display: flex;
    align-items: center;
    padding-top: 20px;
  }
  
  .logo_section {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center;
    padding-top: 20px;
  }
  
  .logo {
    margin: 0 auto;
    text-align: center;
  }
  
  .logo img {
    width: 150px; /* Adjust the width to make the logo smaller */
    height: auto; /* Maintain the aspect ratio */
  }
  
  
  
  .navbar {
    justify-content: flex-start;
    padding-left: 0;
  }
  
  .loader_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loader {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader img {
    width: 280px;
}

.team {
  text-align: center;
  padding: 50px 0;
}

.team h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 30px;
}

.team-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.team-member {
  flex: 1 0 320px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}


.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-overlay p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

.team-member:hover .team-member-overlay {
  opacity: 1;
}





  
  