*{
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background-color: #161D27;
  color: whitesmoke;
  font-family: Arial, Helvetica, sans-serif;
}

/* header section */

header {
  background-color: #161D27;
  height: 70px;
  align-content: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #E0094A;
  margin: 0 40px;
  font-size: 30px;
  text-decoration: underline;
}

header nav .nav-header h5 {
  color: #E0094A;
  margin: 0 43px;
}

.nav-menu {
  display: flex;
  align-items: center
}

.nav-links {
  margin: 0 20px;
  color: #E0094A;
  transition: 0.7s ease;
  border: 2px solid transparent;
}

.nav-links:hover {
  color: whitesmoke;
  border-bottom-color: whitesmoke;
}

header .contact img{
  width: 30px;
  cursor: pointer;
}

header .contact a{
  text-align: center;
   margin: auto 20px;
   cursor: pointer;
   color: #E0094A;
   background: whitesmoke;
   padding: 12px 10px;
   border-radius: 20px;
   font-weight: bold
 }


.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  background-color:#E0094A;
  height: 2px;
  width: 30px;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
  .hamburger {
    display: block;
    align-content: center;
    margin: 0 20px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .logo {
    margin: 0 20px
  }

  header nav .nav-header h5 {
    color: #E0094A;
    margin: 0 22px;
  }

  .nav-menu {
    display: block;
    position: absolute;
    top: 70px;
    left: -100%;
    background: #161D27;
    text-align: center;
    width: 100%;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-items {
    margin: 30px;
  }

  .nav-menu.active {
    left: 0;
  }
  header .contact {
    display: none;
  }
}


/* slider */


.slider{
  height: 90vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.slider .list .item{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.slider .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .list .item .content{
  position: absolute;
  top: 80%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: black;
  text-shadow: 0 5px 10px #0004;
}

.slider .list .item .trailer a{
  border: none;
  background-color: #eee;
  font-family: Poppins;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  letter-spacing: 2px;
color: black;
padding: 10px
}


.slider .list .item .button button:hover{
  letter-spacing: 3px;
}
.slider .list .item .button button:nth-child(2){
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}





/* Thumbnail Section  */
.thumbnail{
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item{
  width: 100px;
  height: 150px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}


/* nextPrevArrows Section  */
.nextPrevArrows{
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.nextPrevArrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: black;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
  cursor: pointer;
}
.nextPrevArrows button:hover{
  background-color: #fff;
  color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1){
  z-index: 1;
}


/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .buttons
{
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
  to{
      transform: translateY(0px);
      filter: blur(0px);
      opacity: 1;
  }
}
.slider .list .item:nth-child(1) .content .title{
  animation-delay: 0.4s !important;
}
.slider .list .item:nth-child(1) .content .type{
  animation-delay: 0.6s !important;
}
.slider .list .item:nth-child(1) .content .description{
  animation-delay: 0.8s !important;
}
.slider .list .item:nth-child(1) .content .buttons{
  animation-delay: 1s !important;
}




/* Animation for next button click */
.slider.next .list .item:nth-child(1) img{
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
  to{
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
  }
}

.slider.next .thumbnail .item:nth-last-child(1){
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}
.slider.prev .list .item img{
  z-index: 100;
}


@keyframes showThumbnail{
  from{
      width: 0;
      opacity: 0;
  }
}


.slider.next .thumbnail{
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
  from{
      transform: translateX(150px);
  }
}



/* Animation for prev button click */
.slider.prev .list .item:nth-child(2){
  z-index: 2;
}

.slider.prev .list .item:nth-child(2) img{
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame{
  to{
      width: 150px;
      height: 220px;
      bottom: 50px;
      left: 50%;
      border-radius: 20px;
  }
}

.slider.prev .thumbnail .item:nth-child(1){
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}
.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button{
  pointer-events: none;
}


.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons
{
  animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
  to{
      transform: translateY(-150px);
      filter: blur(20px);
      opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .slider .list .item .content{
      padding-right: 0;
      top: 70%;
  }
}

/* logo slider */
.logo-slider{
  height: 150px;
  margin: 0 auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: -50px;;
}

.logo-slide-track{
  display: flex;
  width: calc(250px * 10);
  animation: round 40s linear infinite;
}

@keyframes round {
  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(calc(-250px * 5));
  }
}


.logo-slide{
  height: 200px;
  width: 400px;
  display: flex;
  align-items: center;
  padding: 15px;
}

.logo-slide img{
  width: 50%;
}
/* divya dhristi player */

.divya-drishti h2{
  margin: 40px 0 60px 50px;
  font-size: 40px;
}
.divya-drishti span{
  color: #E0094A
}

.divya-slider{
  height: 100%;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: 20px;
}

.divya-slide-track{
  display: flex;
  width: calc(250px * 14);
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(calc(-250px * 7));
  }
}


.divya-slide{
  height: 100%;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
}

.divya-slide img{
  width: 100%;
}

@media only screen and (max-width:678px){
  .divya-drishti h2{
    font-size: 25px;
    margin: 20px 0 0 20px;
  }
}

/* service */

.service h2{
  margin: 40px 0 60px 50px;
  font-size: 40px;
}
.service span{
  color: #E0094A
}

.service-list1 ,.service-list2{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.service-list1 .list1 , .service-list2 .list1{
  margin-bottom: 60px
}
.service-list1 h4 , .service-list2 .list1 h4{
  text-transform: capitalize;
  font-size: 20px;
  margin-top: 20px
}


@media only screen and (max-width:678px){
  .service h2{
    font-size: 30px;
    margin: 20px 0 20px 20px;
  }
  
  @media only screen and (max-width:1025px){
    .service-list1 , .service-list2{
      flex-direction: column; 
    }
    .list1{
      margin-bottom: 20px;
    }
    .service-list2{
      margin-top: 0px;
    }
  }
  
  
}
/* project */

.our-project h2{
  margin: 40px 0 60px 50px;
  font-size: 40px;
  text-transform: capitalize;
}
.our-project span{
  color: #E0094A
}
.projectlist1 , .projectlist2 , .projectlist3{
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
}

.projectlist1 .project-list ,.projectlist2 .project-list , .projectlist3 .project-list{
  margin-bottom: 50px;
}

.project-list{
  width: 250px;
}
.project-list img{
  width: 220px;
  margin-top: 20px
}
.project-list h4{
  font-size: 20px;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
}
.project-list p{
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 0px;
}
.project-list span{
  color: #E0094A
}


@media only screen and (max-width:678px){
  .our-project h2{
    font-size: 25px;
    margin: 20px 0 20px 20px;
  }
  
  .projectlist2 , .projectlist3{
    margin-top: 0
  }
}
/* team */

.our-team h2{
  margin: 40px 0 60px 50px;
  font-size: 40px;
}
.our-team span{
  color: #E0094A
}
.teamlist1{
  display: flex;
  justify-content: center;
  text-align: center;
  width: 90%;
  align-items: center;
  margin: 0 auto;
}
.teamlist1 h3{
  font-size: 30px;
  color: #E0094A;
  margin-top: 10px;
}

.teamlist1 h4{
  font-size: 25px;
}
.teamlist1 img{
  width: 350px
}
.teamlist2{
  display: flex;
  width: 90%;
  margin: 20px auto;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
}
.teamlist2 img{
  width: 200px;
  margin-top: 20px;
}
.teamlist2 .team-list h3{
  text-transform: capitalize;
  font-size: 21px;
  color: #E0094A;
  margin-top: 10px;
}

.teamlist2 .team-list h4{
  font-size: 19px;
  text-transform: capitalize;
}

@media only screen and (max-width:678px){
  .our-team h2{
    font-size: 30px;
    margin: 20px 0 20px 20px;
  }
}

/* footer */
iframe{
  width: 100%;
  margin-top: 40px;
}

.footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.footer-list{
  padding: 80px 50px;
}

.footer-list h3{
  font-size: 30px;
  color: #E0094A;
  text-transform: capitalize;
}

.footer-list p{
  font-size: 17px;
  margin-top: 20px;
  text-transform: capitalize;
}

.copyright{
  text-align: center;
  font-size: 18px;
  padding: 30px;
}

.copyright span{
  color: #E0094A ;
}





/* about css */

* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  color: whitesmoke;
}

body{
  background-color: #161D27;
  font-family: Arial, Helvetica, sans-serif;
}

/* header */

header {
  background-color: #161D27;
  height: 70px;
  align-content: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #E0094A;
  margin: 0 40px;
  font-size: 30px;
  text-decoration: underline;
}

header nav .nav-header h5 {
  color: #E0094A;
  margin: 0 43px;
}

.nav-menu {
  display: flex;
  align-items: center
}

.nav-links {
  margin: 0 20px;
  color: #E0094A;
  transition: 0.7s ease;
  border: 2px solid transparent;
}

.nav-links:hover {
  color: whitesmoke;
  border-bottom-color: whitesmoke;
}

header .contact img {
  width: 30px;
  cursor: pointer;
}

header .contact a{
  text-align: center;
   margin: auto 20px;
   cursor: pointer;
   color: #E0094A;
   background: whitesmoke;
   padding: 12px 10px;
   border-radius: 20px;
   font-weight: bold
 }


.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  background-color: #E0094A;
  height: 2px;
  width: 30px;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
  .hamburger {
      display: block;
      align-content: center;
      margin: 0 20px;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg)
  }

  .logo {
      margin: 0 20px
  }

  header nav .nav-header h5 {
      color: #E0094A;
      margin: 0 22px;
  }

  .nav-menu {
      display: block;
      position: absolute;
      top: 70px;
      left: -100%;
      background: #161D27;
      text-align: center;
      width: 100%;
      transition: 0.3s;
      z-index: 999;
  }

  .nav-items {
      margin: 30px;
  }

  .nav-menu.active {
      left: 0;
  }

  header .contact {
      display: none;
  }
}


/* main */

.back h2{
  background: url(../images/Capture.PNG);
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  color: whitesmoke;
}
.about-detail .about-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 40px auto;
}

.about-detail .about-list img {
  width: 300px;
}

.about-detail .about-list p {
  width: 80%;
  margin: 10px 20px;
  font-size: 18px;

}


@media screen and (max-width: 995px) {

  .about-detail #about-list1,
  #about-list3,
  #about-list5 {
      flex-direction: column;
  }

  .about-detail #about-list2,
  #about-list4 {
      flex-direction: column-reverse
  }

  .about-detail .about-list p {
      font-size: 15px;
      text-align: center;
      width: 90%;
  }

  .about-detail .about-list img {
      margin-top: 10px;
  }
}


/* timeline */

* {
  margin: 0;
  padding: 0;
}

.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
}

.timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 0 0;
  transition: 0.4s;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

.timeline__content-desc {
  margin: 0;
  font-size: 15px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, .7);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  line-height: 25px;
}

.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, .07);
}

@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}

.timeline-item {
  padding: 40px 0;
  opacity: 0.3;
  filter: blur(2px);
  transition: 0.5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
  transform: translateY(-80px);
}

.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-family: 'Pathway Gothic One', sans-serif;
  border-left: 2px solid rgba(255, 255, 255, .5);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
}

.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, .5);
  padding-right: 15px;
}

.timeline-item--active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.timeline-item--active:before {
  top: 50%;
  transition: 0.3s all 0.2s;
  opacity: 1;
}

.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }

  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }

  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}

.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .4);
}

.timeline-container {
  width: 100%;
  position: relative;
  padding: 80px 0;
  transition: 0.3s ease 0s;
  background-attachment: fixed;
  background-size: cover;
}

.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
}

.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-header__title {
  color: #fff;
  font-size: 58px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  margin: 0;
}

.timeline-header__subtitle {
  color: rgba(255, 255, 255, .5);
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
}

.demo-footer {
  padding: 60px 0;
  text-align: center;
}

.demo-footer a {
  color: #999;
  display: inline-block;
  font-family: Cardo;
}

/* footer */
iframe{
  width: 100%;
  margin-top: 40px;
}

.footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.footer-list{
  padding: 80px 50px;
}

.footer-list h3{
  font-size: 30px;
  color: #E0094A;
  text-transform: capitalize;
}

.footer-list p{
  font-size: 17px;
  margin-top: 20px;
  color: whitesmoke;
  text-transform: capitalize;
}

.copyright{
  text-align: center;
  font-size: 18px;
  padding: 30px;
}

.copyright span{
  color: #E0094A ;
}