/*Time Line Slider*/
.time_line_desctiption_holder {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.time_line_image {
    flex: 1 1 40%;
    max-width: 40%;
}

.time_line_image img.timeline_image {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.time_line_desctiption {
    flex: 1 1 60%;
    max-width: 60%;
    padding: 40px 80px;
    background: #c5e2ec69;
}

.slider-for {
    margin-top: 30px;
}

.slider-for .slick-slide:nth-child(even) .time_line_desctiption_holder {
    flex-direction: row-reverse;
}
.slider-for .slick-slide:nth-child(even) .time_line_desctiption_holder .time_line_desctiption {
    padding-left: 40px;
}
.time_line_year {
    border-top: 1px dashed #285477;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    position: relative;
    margin-top: 28px;
    padding-top: 23px;
}

.time_line_title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #285477;
}

.time_line_year h5 {
    color: transparent !important;
    -webkit-text-stroke: 2px var( --e-global-color-primary );
    font-size: 40px !important;
    margin-bottom: 0;
    margin-top: 0;
}
.slide-btn {
    color: transparent !important;
    -webkit-text-stroke: 2px var(--e-global-color-primary );
    font-size: 35px !important;
    margin-bottom: 0px;
    margin-top: 0;
    line-height: 1.8;
    text-align: center;
}

button.slide-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translate(0%, -50%);
    border-radius: 10px !important;
    background: #285477 !important;
}
button.slide-arrow:hover {
    background: #e7f3f7 !important;
}
.slider-nav {
    position: relative;
}
.slick-current .slide-btn {
    -webkit-text-fill-color: #285477;
}
button.slide-arrow.prev-arrow {
    left: 0px;
}

button.slide-arrow.next-arrow {
    right: 0px;
}

button.slide-arrow.next-arrow:before {
    content: ">";
}
button.slide-arrow.prev-arrow:before {
    content: "<";
}
button.slide-arrow:before {
    color: #7ddfff;
    line-height: 1.5;
    font-size: 23px;
}
button.slide-arrow:hover:before{
  color: #285477;
}

/*Team member css*/
.member_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
}

.gride_of_2 .member_card {
    flex: 1 1 calc( 50% - 20px);
    max-width: calc( 50% - 20px);
}
.gride_of_3 .member_card {
    flex: 1 1 calc( 33.33% - 20px);
    max-width: calc( 33.33% - 20px);
}
.gride_of_4 .member_card {
    flex: 1 1 calc( 25% - 20px);
    max-width: calc( 25% - 20px);
}
.gride_of_5 .member_card {
    flex: 1 1 calc( 20% - 20px);
    max-width: calc( 20% - 20px);
}
.gride_of_6 .member_card {
    flex: 1 1 calc( 16.60% - 20px);
    max-width: calc( 16.60% - 20px);
}

.dialog-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #1e1e1e;
  color: #b0b0b0;
  border-radius: 12px;
  padding: 20px;
  width: 50%;
  border: 2px solid #444;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.dialog-box div {
    width: 100%;
}

/* Pointer for dialog box pointing to the left */
.dialog-box-left::before, .dialog-box-left::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.dialog-box-left::before {
  width: 30px;
  right: 100%;
  height: 15px;
  background: #444; /* Border color */
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.dialog-box-left::after {
  right: calc(100% - 7px);
  width: 30px;
  height: 15px;
  background: #1e1e1e; /* Background color */
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* Pointer for dialog box pointing to the right */
.dialog-box-right::before, .dialog-box-right::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.dialog-box-right::before {
  left: calc(100% - 0px);
  width: 30px;
  height: 15px;
  background: #444; /* Border color */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.dialog-box-right::after {
  left: calc(100% - 7px);
  width: 30px;
  height: 15px;
  background: #1e1e1e; /* Background color */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.member_card img.member_image {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center center;
}

.member {
    display: flex;
    gap: 15px;
}

.member_detail:before {
    content: "";
    height: 1px;
    background: transparent linear-gradient(90deg, #FFFFFF00 0%, var(--unnamed-color-ffffff) 47%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #FFFFFF00 0%, #FFFFFF 47%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
    opacity: 0.5;
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.member_detail span.designation_of_member {
    display: block;
}

.member_name span {
    display: block;
    font-weight: 800;
    color: #285477;
}
.member_image_holder {
    display: block;
    border-radius: 10px !important;
    overflow: hidden;
    width: 50% !important;
}

/*modal*/
.model_trigger {
    cursor: pointer;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 6; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgb(125 125 125 / 27%); /* Black w/ opacity */
}
.modal.show {
    display: block;
}

.modal-header {
  padding: 2px 7% 2px 15px;
  background-color: #c5e2ec;
  color: white;
  position: relative;
}
.modal-header h2 {
    font-size: 25px !important;
    margin-bottom: 5px;
    text-align: center;
}
.modal-header span.designation_of_member {
    font-size: 18px;
    display: block;
}

/* Modal Body */
.modal-body {
    padding: 20px 25px;
}

.modal-body .member_img {
    width: 25%;
    float: left;
    margin-right: 15px;
}
.modal-body .member_desc p,.modal-body .member_desc ul li {
    font-size: 16px;
    line-height: 1.7;
}

/* Modal Footer */
.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 3% auto 3% auto;
  padding: 0;
  border: 1px solid #888;
  width: 75%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
  overflow: hidden;
}

/* Add Animation */
@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
.close {
  color: #c5e2ec;
  font-size: 28px;
  position: absolute;
  font-weight: bold;
  right: 0;
  background: #285477;
  top: 0px;
  width: 7%;
  height: 100%;
  line-height: 2.8;
  text-align: center;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
  background: #000;
}

/*  */
.main_slider {
    visibility: hidden;
}
#preloader {
    position: fixed;
    top: 15%;
    left: 0;
    width: 100%;
    height: 75%;
    background: #17181a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.offering_slider .main_slider {
/*     background: url(/wp-content/uploads/2024/11/Capabilities-Illustration.png) no-repeat; */
    background: url(https://assets.druvanta.com/wp-content/uploads/2025/01/21092448/Bulb-Waves-1.gif) no-repeat;
	background-position: center right;
	background-position-x: 90%;
	background-size: 45%;
}
/*  */

@media only screen and (max-width: 768px) {
  .section_header h2.elementor-heading-title {
	  font-size: 30px !important;
	}
	
	.gride_of_2 .member_card,
  .gride_of_3 .member_card,
  .gride_of_4 .member_card,
  .gride_of_5 .member_card{
      flex: 1 1 calc( 50% - 20px);
      max-width: calc( 50% - 20px);
  }
	.offering_slider .main_slider{
		background-size: 100%;
	}
  .modal-body .member_img {
      width: 45%;
  }
  .modal-content {
      width: 90%;
  }
  .modal-header h2 {
      font-size: 20px !important;
  }
  .close {
      font-size: 25px;
      width: 13%;
      line-height: 2.7;
  }

  /*  Time Line  */
  .time_line_desctiption_holder {
      flex-wrap: wrap;
  }
  .slider-for .slick-slide:nth-child(even) .time_line_desctiption_holder .time_line_desctiption {
      padding-left: 20px;
  }
  .time_line_desctiption {
      flex: 1 1 100%;
      max-width: 100%;
      padding: 20px 20px;
  }
  .time_line_image {
      flex: 1 1 100%;
      max-width: 100%;
  }
  .time_line_year {
      margin-top: 10px;
      padding-top: 0px;
  }
  .slide-btn {
    font-size: 25px !important;
  }
  .modal-header span.designation_of_member{
   font-size: 17px;
  }
  .modal-body .member_desc p,.modal-body .member_desc ul li {
      font-size: 15px;
      line-height: 1.7;
  }
  .modal-header {
      padding: 2px 13% 2px 16px;
  }

}
@media only screen and (max-width: 426px) {
    .gride_of_2 .member_card,
    .gride_of_3 .member_card,
    .gride_of_4 .member_card,
    .gride_of_5 .member_card{
        flex: 1 1 calc( 100% - 0px);
        max-width: calc( 100% - 0px);
    }
  .modal-body .member_desc p,.modal-body .member_desc ul li {
      font-size: 14px;
      line-height: 1.7;
  }
}



/*Home Page*/

.typewriter {
  display: inline-flex;
  align-items: center;
  font-family: "Nohemi", Sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: normal;
  color: #ffffff;
  overflow: hidden;
}

#typed-text {
  display: inline-block;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  font-size: 2rem;
  animation: blink 0.7s steps(2, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media only screen and (max-width: 768px) 
{ 
    .typewriter {
      font-size: 25px;
    }
    .cursor {
      font-size: 25px;
    }
}

@media only screen and (max-width: 426px) 
{ 
    .typewriter {
      font-size: 14px;
    }
    .cursor {
      font-size: 14px;
    }
}
@media only screen and (max-width: 393px) 
{ 
    .typewriter {
      font-size: 12px;
    }
    .cursor {
      font-size: 12px;
    }
}