*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

/* *** Navbar Start *** */
.navbar_btn {
    background: transparent;
    position: relative;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(255,0,0);
    border-radius: 6rem;
    outline: none;
    overflow: hidden;
    /* color: rgb(255,0,0); */
    color: white;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

.navbar_btn span {
    margin: 10px;
}

.navbar_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.navbar_btn:hover {
    color: #fff;
    border: 1px solid rgb(255,0,0);
}

.navbar_btn:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 0, 0);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.nav-item .nav-link {
    color: white !important;
    font-weight: bold;
    padding: 20px;
}

.nav-item .nav-link:hover{
    color: red !important;
}

#navbar-button{
    padding: 8px 20px;
    background-color: transparent;
    color: white;
    border-radius: 6rem;
    border: 2px solid red ;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-custom {
    /* background-color: rgba(0, 0, 0, 0.5) !important; */
    border-bottom: 2px solid red;
    position: absolute;
    top: 0;
    width: 89%;
    z-index: 2;
    color: white;
}

/* .navbar-nav-center {
    margin: 0 auto;
} */

/* .navbar-nav-right {
    margin-left: auto;
} */

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    /* font-size: 3vw; */
    z-index: 1;
}

.centered-text h1{
    font-size: 4rem;
    color:  black;
    margin-top: 2rem;
}

.centered-text p{
    margin-top: 2rem;
}

.centered-text button{
    padding: 10px 30px;
    background-color: transparent;
    color: black;
    border-radius: 6rem;
    border: 2px solid red ;
    margin-top: 2rem;

}

@media (max-width: 768px) {
    .centered-text {
        font-size: 5vw;
    }

    .navbar-custom{
        background-color: black !important;
    }
    .navbar_btn{
        margin-left: 10px;
      }

      .features{
        margin-left: -12px;
      }
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/about-bg-2.jpg); */
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 0 0;
    height: 68vh;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .tab-class .nav .nav-item a.active {
    background-color: transparent;
    border: 2px solid red !important;
    border-radius: 10px;
    color: red;
}

.about .tab-class .nav .nav-item a{
    border-radius: 10px;
    font-weight: bold;
    color: black;
}

.tab-class{
    background-color: #d2d3d3;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

.about_btn button{
    padding: 10px 30px;
    border: none;
    background-color: transparent;
    border-color: #f8b864;
    transition: 0.5s;
    font-weight: bold;
    border: 2px solid red;
    border-radius: 6rem;
}

.about_title{
    color: red;
    font-weight: bold;
}

/*** About End ***/
/*** Members information start ***/
.features {
    margin-top: 60px;
    /* background: url("../images/bg/v175_501.png") no-repeat; */
  }
  
  .feature-item {
    flex-basis: 33.33%;
    margin: 0px 10px;
    padding: 40px 30px;
    /* background-color: #fff; */
    border-radius: 15px 15px 15px 15px;
    /* box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1); */
  }
  
  .feature-item .feature-icon i {
    font-size: 50px;
    color: #223a66;
  }
  
  .feature-item h4 {
    color: #223a66;
  }
  
  .feature-item p {
    font-size: 14px;
  }
  
  .feature-section.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
  
  .w-hours li {
    padding: 6px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* ////////////////////////////////////////////////////////
    About card css start 
//////////////////////////////////////////////////////// */
/* .card {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 32px;
    padding: 3px;
    position: relative;
    box-shadow: #604b4a30 0px 70px 30px -50px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 20px;
  }
  
  .card .mail {
    position: absolute;
    right: 2rem;
    top: 1.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .card .mail svg {

  stroke: red;
  stroke-width: 3px;
  }
  
  .card .mail img:hover {

  stroke: red;
  }
  
  .card .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #fbb9b6;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
  }
  
  .card .profile-pic img{
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  
  .card .bottom {
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  
  .card .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
  }
  
  .card .bottom .content .name {
  display: block;
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
  }
  
  .card .bottom .content .about-me {

  font-weight: bolder;
  }
  
  .card .bottom .bottom-bottom {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  
  .card .bottom .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;
  }
  
  .card .bottom .bottom-bottom .social-links-container svg {
  height: 20px;
  fill: black;
  filter: drop-shadow(0 5px 5px rgba(165, 132, 130, 0.1333333333));
  }
  
  .card .bottom .bottom-bottom .social-links-container svg:hover {
  fill: red;
  transform: scale(1.2);
  }
  
  .card .bottom .bottom-bottom .button {
  background: white;
  color: #fbb9b6;
  border: none;
  border-radius: 20px;
  font-size: 0.6rem;
  padding: 0.4rem 0.6rem;
  box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
  }
  
  .card .bottom .bottom-bottom .button:hover {
  background: #f55d56;
  color: white;
  }
  
  .card:hover {
  border-top-left-radius: 55px;
  }
  
  .card:hover .bottom {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
  }
  
  .card:hover .profile-pic {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #D2D3D4;
  box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
  }
  
  .card:hover .profile-pic:hover {
  transform: scale(1.3);
  border-radius: 0px;
  }
  
  .card:hover .profile-pic img {
  transform: scale(1.5);
  -o-object-position: 0px 25px;
  object-position: 0px 10px;
  transition: all 0.5s ease-in-out 0.5s;
  }
  
  .card:hover .profile-pic svg {
  transform: scale(2.5);
  transition: all 0.5s ease-in-out 0.5s;
  } */
  /* ////////////////////////////////////////////////////////
      About card css End 
  //////////////////////////////////////////////////////// */
/*** Members Information End ***/



/*** Footer Start ***/
.footer {
    border-top: 3px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-style: dotted;
    border-color: var(--bs-light);
  }
  .footer .footer-item a,
  .footer .footer-item p {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
    color: white;
    text-decoration: none;
  }
  
  .footer .footer-item a:hover {
    color: red;
    letter-spacing: 1px;
  }
  
  .footer .footer-item .footer-gallery {
    position: relative;
    overflow: hidden;
  }
  
  .footer .footer-item .footer-gallery img {
    width: 300px;
    height: 120px;
    transition: 0.5s;
  }
  
  .footer .footer-item .footer-gallery:hover img {
    transform: scale(1.2);
  }
  
  .footer .footer-item .footer-gallery .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
  }
  
  .footer .footer-item .footer-gallery:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
  }
  /*** Footer End ***/
  
  /*** copyright Start ***/
  .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
  }
  /*** copyright end ***/

  .third_members_section_sm{
    display: none;
  }



 /* Mobile devices (portrait and landscape) */
@media (max-width: 576px) {
  /* Styles for mobile devices */
  .navbar-custom{
    background-color: black;
    width: 89%;
    margin-left: 10px;
  }

  .navbar_btn{
    width: 48%;
    margin-left: 8px;
  }

  .nav-item{
    position: relative;
    left: 60px;
  }

  .features{
    margin-left: 30px;
  }

  .mission_section{
      position: relative;
      right: 50px;
  }
  
  .bai_img{
    margin-top: 10px;
  }

  .third_members_section{
    /* position: relative;
    left: 30%; */
    display: none;
  }

  .third_members_section_sm{
    display: block;
  }
}

/* Tablets and small desktops */
@media (min-width: 577px) and (max-width: 768px) {
  /* Styles for tablets and small desktops */
}

/* Medium devices (laptops/desktops) */
@media (min-width: 769px) and (max-width: 992px) {
  /* Styles for laptops/desktops */
  .navbar-custom{
    background-color: black !important;
    width: 89%;
  }
  
}

/* Large devices (large desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
  /* Styles for large desktops */
  .navbar-custom{
    /* background-color: black !important; */
    width: 99%;
  }

  
}

/* Extra large devices (extra large desktops, TVs) */
@media (min-width: 1201px) and (max-width: 1800px) {
  /* Styles for extra large desktops */
  .navbar-custom{
    width: 89% !important;
  }

  .nav-item{
    position: relative;
    left: 5px;
  }
}

/* Ultra large devices (ultra large desktops, large TVs) */
@media (min-width: 1401px) {
  /* Styles for ultra large desktops and large TVs */
  .navbar-custom{
    width: 69%;
  }

  .nav-item{
    position: relative;
    right: 10px;
  }
  
  
}






.card {
  overflow: visible;
  position: relative;
  width: 190px;
  height: 300px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.card:before,
.card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  transition: 0.5s;
  z-index: -99;
}

.details {
  position: absolute;
  left: -10px;
  right: 0;
  bottom: 5px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
}

/*Image*/
.imgbox {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #222;
  transition: 0.5s;
  z-index: 1;
}

.img1 {
  background: #4158D0;
  background-image: url('../images/Members_img/Dr.Hemant_Antani(2).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img2 {
  background: #4158D0;
  background-image: url('../images/Members_img/Mr.Avinash_desai(2).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img3 {
  background: #4158D0;
  background-image: url('../images/Members_img/Ramesh_pathak.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img4 {
  background: #4158D0;
  background-image: url('../images/Members_img/Gaurav_bhatt(2).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img5 {
  background: #000;
  background-image: url('../images/Members_img/dummy_img.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img6 {
  background: #000;
  background-image: url('../images/Members_img/dummy_img.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img7 {
  background: #000;
  background-image: url('../images/Members_img/Neal_Patel\(2\).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img8 {
  background: #000;
  background-image: url('../images/Members_img/dummy_img.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img9 {
  background: #000;
  background-image: url('../images/Members_img/Mayur_kotak\(2\).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img10 {
  background: #000;
  background-image: url('../images/Members_img/Nikunj\(2\).jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img11 {
  background: #000;
  background-image: url('../images/Members_img/dummy_img.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*Text*/
.title {
  font-weight: 600;
  font-size: 15px;
  color: #777;
}

.caption {
  font-weight: 500;
  font-size: 16px;
  color: #4158D0;
  display: block;
  /* margin-top: -15px; */
}

/*Hover*/
.card:hover .imgbox {
  bottom: 80px;
}

.card:hover:before {
  transform: rotate(20deg);
}

.card:hover:after {
  transform: rotate(10deg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}


/* Button styles */
.important-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

.important-btn:hover{
  animation: none;
}

/* Icon styling */
.important-btn i {
  margin-right: 8px;
}

.bai_img{
  position: relative;
  top: 5px;
}
