* {
    margin: 0;
    padding: 0;
    font-family: "Roboto Slab", sans-serif;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }

  body{
    /* background:#dadbddf2; */
    background: #fafafa;
  }
  
  
  /*-----------Header Navigation Start--------*/
  
  /*Cover Page*/
  .home {
      background: linear-gradient(rgba(12, 3, 51, 0.4), rgba(12, 3, 51, 0.1)),
        url(/Images/ap.jpg);
      background-size: cover;
      height: 100vh;
      position: relative;
      top: -140px;
      z-index: 1;
    }
    
    /*------------Logo----------*/
    
    /*-----Logo Wrapper - Social Icon - LinkedIn---*/
    .logo-wrapper{
      width: 8%;
    }
    
    .logo {
      width: 7.5rem;
      margin: 0.625rem 0.625rem 0.625rem 1.875rem;
      border: solid #000;
      background: #000;
      border-radius: 100px;
      transition: background 0.5s;
      transition: 0.5s;
    }
    
    .logo:hover {
      background-color: rgb(218,219,221, 0.95);
      transform: scale(0.9);
    }
    
    /* Navigation Bar */
    
    .header {
      background: transparent;
      transition: 0.3s ease-in-out;
      position: sticky;
      z-index: 2;
      top: 0;
      height: 140px;
    }
    
    .scrolled {
      background: #262626;
      transition: 0.3s ease-in-out;
      height: 90px;
      opacity: 0.9;
    }
    
    .scrolled .logo {
      width: 70px;
    }
    
    .scrolled .nav{
      width: 70%;
    }

    .scrolled .nav-list a{
      color: #f8f7f7;
    }

    .scrolled .navitem .dropdown-list{
      top: 65px;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.875rem;
    }
    
    .nav {
      width: 70%;
    }
    
    .nav-list {
      list-style: none;
      display: flex;
      justify-content: space-between;
      width: 100%;
    }
    
    .nav-list a {
      
      /*color: #2596be; */
      color: #222222;
      text-decoration: none;
      font-size: 1.2rem;
      position: relative;
      font-weight: 600;
    }
    
    .nav-list a::after {
      content: "";
      width: 0%;
      height: 3px;
      background: #1a3144;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.5s;
    }
    
    .nav-list a:hover::after {
      width: 100%;
    }

    .navitem a{
      cursor: context-menu;
    }
    
    .navitem .dropdown-list {
      position: absolute;
      background: #262626;
      z-index: 1;
      top: 85px;
      line-height: 40px;
      list-style: none;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
      pointer-events: none;
      transform: translateY(20px);
      opacity: 0;
      transition: 0.5s;
      transition-property: transform, opacity;
    }
    
    .navitem:hover .dropdown-list {
      pointer-events: all;
      transform: translateY(0);
      opacity: 1;
      transition-delay: 0.5s;
    }
    
    .navitem .dropdown-list .sub-item {
      position: relative;
      padding: 0.5rem 0;
      cursor: pointer;
      box-shadow: inset 0px -30px 5px -30px rgb(255, 255, 255, 0.2);
      transition: 0.3s;
    }
    
    .navitem .dropdown-list .sub-item a {
      color: #fff;
      font-size: 1rem;
      padding: 0 0.6rem;
      transition: 0.5s;
      cursor: pointer;
    }
    
    .navitem .dropdown-list .sub-item a:hover {
      color: #086ab5;
    }
    
    .navitem .dropdown-list .sub-item:hover {
      background: #e7e7e7;
    }
    
    .navitem .dropdown-list .sub-item:last-child:hover {
      border-radius: 0 0 8px 8px;
    }
    
    .social-icons {
      text-decoration: none;
      font-size: 2.5rem;
      color: #ababab;
    }

    .social-icons i{
      transition: 0.5s ease-in-out;
    }
    
    .social-icons i:hover {
      transform: translateY(-8px);
      color: #1a3144;
    }
  
    /*---Hamburger Menu Icon - Mobile Start ----*/
  
  .btn {
      display: none;
      width: 48px;
      cursor: pointer;
      right: 0;
      z-index: 100;
    }
    
    .menubtn {
      display: block;
      width: 100%;
      box-shadow: 0 2px 10px 0 rgba(0,0,0,0.4);
      border-radius: 3px;
      height: 4px;
      background: #fff;
      transition: all .3s;
      position: relative;
    }
    
    .not-active .menubtn + .menubtn{
      margin-top: 0.5rem;
    }
    
    .active .menubtn + .menubtn {
      margin-top: 18px;
    }
    
    .active .menubtn:nth-child(1) {
      animation: ease .7s top forwards;
    }
    
    .not-active .menubtn:nth-child(1) {
      animation: ease .7s top-2 forwards;
    }
    
    .active .menubtn:nth-child(2) {
      animation: ease .7s scaled forwards;
    }
    
    .not-active .menubtn:nth-child(2) {
      animation: ease .7s scaled-2 forwards;
    }
    
    .active .menubtn:nth-child(3) {
      animation: ease .7s bottom forwards;
    }
    
    .not-active .menubtn:nth-child(3) {
      animation: ease .7s bottom-2 forwards;
    }
    
    @keyframes top {
      0% {
        top: 0;
        transform: rotate(0);
      }
      50% {
        top: 22px;
        transform: rotate(0);
      }
      100% {
        top: 22px;
        transform: rotate(45deg);
      }
    }
    
    @keyframes top-2 {
      0% {
        top: 22px;
        transform: rotate(45deg);
      }
      50% {
        top: 22px;
        transform: rotate(0deg);
      }
      100% {
        top: 0;
        transform: rotate(0deg);
      }
    }
    
    @keyframes bottom {
      0% {
        bottom: 0;
        transform: rotate(0);
      }
      50% {
        bottom: 22px;
        transform: rotate(0);
      }
      100% {
        bottom: 22px;
        transform: rotate(135deg);
      }
    }
    
    @keyframes bottom-2 {
      0% {
        bottom: 22px;
        transform: rotate(135deg);
      }
      50% {
        bottom: 22px;
        transform: rotate(0);
      }
      100% {
        bottom: 0;
        transform: rotate(0);
      }
    }
    
    @keyframes scaled {
      50% {
        transform: scale(0);
      }
      100% {
        transform: scale(0);
      }
    }
    
    @keyframes scaled-2 {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    
    .overlay{
      height: 0%;
      width: 0%;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: rgba(0,0,0, 0.9);
      overflow-y: hidden;
      transition: linear 0.5s;
    }
    
    .mobile-nav{
      position: relative;
      width: 100%;
      text-align: center;
      display: none;
    }
    
    .mobile-nav a{
      padding: 12px;
      text-decoration: none;
      font-size: 2rem;
      color: #C0C0C0 ;
      display: block;
      transition: ease 0.3s;
    }
    
    .mobile-nav a:hover{
      color: #fff;
    }

/*----Mobile Dropdown Sub List Starts---*/

.dropdown-content {
  display: none;
  flex-direction: column;
}

.dropdown-content a {
  font-size: 1.5rem;
  padding-left: 24px;
}

.dropdown-content a:hover {
  color: #fff;
}

.plus-minus-container {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  margin-right: 8px;
}

.horizontal, .vertical {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C0C0C0;
  transition: transform 0.3s ease;
}

.horizontal {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.vertical {
  top: 43%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.active .overlay {
  height: 100%;
  width: 100%;
}

.active .mobile-nav {
  display: block;
}

.dropdown-content.active {
  display: flex;
  transition: 0.3s ease-in-out;
}

.dropdown-toggle.active .vertical {
  transform: translateX(-50%);
}

/*----Mobile Dropdown Sub List Ends---*/
    
    /*---Hamburger Menu Icon - Mobile Start ----*/
    
    /*-----------Header Navigation End--------*/

    /*-------Our Team Starts--------*/
/* For Reference
.team-list2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 15px;
} */


.title{
  text-align: center;
  font-size: 24px;
  margin: 3rem 0;
}

.team-container{
  margin: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-container .director{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28%;
  padding: 1rem;
}

.team-container .director img{
  border-radius: 50%;
  width: 100%;
  margin: 1.2rem;
  transition: 0.5s;
  filter: grayscale();
}

.team-container .director img:hover{
  filter: none;
}

.team-container .director h1{
  margin: 0.5rem;
  font-size: 24px;
}

.team-container .director p{
  margin: 0.5rem;
  font-size: 18px;
  font-weight: 500;
  color: rgb(154, 154, 154);
}

.director a{
  text-decoration: none;
  font-size: 30px;
  margin: 0.5rem 0;
  transition: 0.5s ease;
  color: #000;
}

.director a:hover{
  color: #0a66c2;
}

.team-container .team1{
  display: grid;
  grid-template-columns: repeat(3, 18.5rem);
  grid-auto-rows: 1fr;
  justify-content: center;
}

.team-container .team1 h1{
  font-size: 24px;
  margin: 0.5rem;
  font-weight: 600;
}

.team-container .team1 p{
  margin: 4px;
  font-weight: 500;
  color: #9a9a9a;
  font-size: 16px;
}

.team-container .team1 img{
  width: 100%;
  border-radius: 50%;
  margin: 0.8rem;
  transition: 0.5s ease-in-out;
  filter: grayscale();
}

.team-container .team1 img:hover{
  filter: none;
}


.team1-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  padding: 1rem;
}

.team1-content a{
  text-decoration: none;
  font-size: 30px;
  margin: 0.8rem 0;
  transition: 0.5s ease;
  color: #000;
}

.team1-content a:hover{
  color: #0a66c2;
}

  
  /*-----Copyright---*/
  .site-footer {
    text-align: center;
    padding: 20px;
    background-color: #262626;
  }
  
  .footer{
    color: #e7e7e7;
    font-size: 12px;
  }
  
  .footer .linkedin-link {
    font-size: 1em;
    color: #fff; /* LinkedIn color */
    text-align: center;
    transition: 0.5s ease-in-out ;
  }
  
  .footer .linkedin-link:hover {
    color: #0073b1; /* LinkedIn hover color */
  }
  
  
  /*-------Mobile Screens----*/
  
  @media (max-width:991px) {
  
    .title{
      font-size: 24px;
      margin: 2.5rem 0;
    }
    
    .team-container .director{
      width: 33%;
    }
    
    
    .team-container .director h1{
      font-size: 24px;
    }

    .team-container .director p{
      font-size: 20px;
      margin: 0.3rem;
    }

    .director a{
      margin: 0.5rem 0;
    }

    .team-container .team1{
      grid-template-columns: repeat(3, minmax(256px, 1fr));
      grid-auto-rows: 1fr;
    }
    
    .team-container .team1 h1{
      font-size: 20px;
      margin: 0.4rem;
      font-weight: 600;
    }
    
    .team-container .team1 p{
      margin: 4px;
      font-weight: 500;
      font-size: 16px;
    }
    
    .team-container .team1 img{
      margin: 0.8rem;
    }
    
    .team1-content a{
      font-size: 26px;
      margin: 0.6rem 0;
    }
    
  }
  
  @media (max-width:768px) {
    /*---Hamburger Menu Start---*/  
    .btn{
      display: block;
    }
    
    .overlay{
      height: 0%;
      width: 100%;
      top: -100%;
      position: fixed;
      z-index: 1;
      background-color: rgba(0,0,0, 0.9);
      overflow-y: hidden;
      padding: 8rem;
      transition: 2s;
    }
    
    .overlay.active{
      top: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    
    
    .mobile-nav.active{
      display: block;
    }
    
    /*---Hamburger Menu End---*/
  
    .nav-list{
      display: none;
    }
  
    .logo-wrapper{
      display: none;
    }

    .logo{
      margin: 0.625rem 0;
    }

    .team-container .director{
      width: 50%;
    }

    .team-container .director h1{
      font-size: 20px;
      margin: 0.3rem;
    }

    .team-container .director p{
      font-size: 16px;
    }

    .director a{
      margin: 0.4rem 0;
    }

  .team-container .team1{
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    grid-auto-rows: 1fr;
  }

  .team-container .team1 h1{
    font-size: 16px;
  }

  .team-container .team1 p{
    margin: 4px;
    font-size: 14px;
    text-align: center;
  }

  .team-container .team1 img{
    margin: 0.8rem;
    width: 85%;
  }

  .team1-content a{
    font-size: 26px;
    margin: 0.6rem 0;
  }

  .team1-content{
    margin: 0.2rem;
    padding: 0rem;
  }
    

    
  }
  
  @media (max-width:480px) {
   
    .title{
      font-size: 18px;
    }


    .team-container .director{
      width: 80%;
    }

    .team-container .director h1{
      font-size: 22px;
    }

    .team-container .director p{
      font-size: 18px;
    }

    .team-container .team1{
      grid-template-columns: repeat(1, minmax(160px, 1fr));
      grid-auto-rows: 1fr;
    }

    .team1-content{
      padding: 0;
      margin: 20px;
    }

    .team-container .team1 h1{
      font-size: 20px;
    }
  
    .team-container .team1 p{
      font-size: 16px;
    }


    .mobile-nav a{
      font-size: 2rem;
      padding: 16px 6px;
    }
  
    .overlay{
      padding: 8rem 1rem;
    }
  
    .dropdown-content a{
      font-size: 1.25rem;
    }

  }
  
  @media (min-width:320px) {
      
  }
  
  @media screen and (max-height: 450px) {
      .overlay {overflow-y: auto;}
      .overlay a {font-size: 20px}
      }