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

html {
  scroll-behavior: smooth;
}


/* https://imagecolorpicker.com/color-code/0c3c5e *  check link out for blue shade colour scheme/


/*-----------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: 65%;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-list a {
  color: #f8f7f7;
  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--------*/

/*------Front Page Content-----*/
.header-text {
  width: fit-content;
  position: relative;
  top: 30%;
  text-align: center;
  margin: auto;
  padding: 1.2rem;
  color: #fff;
  background: linear-gradient(rgba(30,30,30, 0.8), rgba(30,30,30, 0.5) );
}

.header-text h1 span{
  font-size: 5rem;
  font-weight: 500;
  margin-top: 18px;
  transition: 0.5s;
}

.header-text h1 span:hover {
  -webkit-text-stroke: 2px #ffffffef;
  color: #1a3144;
}

.header-text p {
  font-size: 30px;
  font-weight: 250;
  margin-top: 10px;
}

.header-text h1 span {
  position: relative;
}

.header-text h1 span::after {
  content: "";
  width: 0%;
  height: 4px;
  background: #1a3144;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

.header-text h1 span:hover:after {
  width: 100%;
}

/*---Join Our Team Button - Start ----*/
.home-btn{
  position: relative;
  top: 42%;
  text-align: center;
  text-align: center;
  padding: 1rem;
}

.home-btn a{
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  background: #202020;
  border-radius: 5%;
  font-size: 1.2rem;
  transition: 0.5s ease-in-out;
}

.home-btn a:hover{
  color: rgb(30,30,30, 0.95);
  background: rgb(218,219,221, 0.95);
}

/*---Join Our Team Button - End ----*/

/*----------About Us - Start----------*/

.au-content {
  padding: 50px;
  background: #808080;
  width: 100%;
}

.au-content h1 {
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  font-family: "Montserrat";
}

.au-content p {
  font-size: 20px;
  font-weight: 100;
  margin: 25px auto;
  width: 60%;
  text-align: left;
  font-family: "Montserrat";
}

.container .au-content {
  width: 100%;
  background: #000;
}

/*----------About Us - End----------*/

/*------Core Values Starts ------*/
.content{
  background: #000;
  color: #fff;
}

.content h1{
  padding: 1.3rem;
  font-size: 2rem;
  margin-left: 1.2rem;
}

.values{
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
}

.values img{
  width: 20%;
}

.values-content{
  width: 68%;
  padding: 1.4rem;
}

.values-content h2{
  font-size: 36px;
}

.team-link{
  text-align: center;
  margin: 2rem 0;
}

.team-link a{
  text-decoration: none;
  color: #202020;
  position: relative;
}

/*------Core Values Ends ------*/



/*------Meet the Team Link-----*/

/*------Copyright - Start -----*/

.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) {
  .logo-wrapper{
    width: 5%;
  }

  .header-text h1 span{
    font-size: 3.2rem;
  }


  .logo{
    width: 6.6rem;
    margin: 0.625rem;
  }

  .nav{
    width: 73%;
  }

  .nav-list a{
    font-size: 1rem;
  }

  .scrolled .nav{
    width: 73%;
  }

  .header-content{
    padding: 0 1.5rem;
  }

  .values-content{
    width: 72%;
    margin-top: 8px;
    padding: 1.2rem;
  }

  .values-content h2{
    font-size: 24px;
  }

  .values-content p{
    font-size: 16px;
  }
.values img{
  width: 30%;
}

}

@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;
  }


  .header-text h1 span{
    font-size: 2rem;
  }

  .header-text p{
    font-size: 1.5rem;
  }

  .header-text{
    padding: 0.7rem;
  }

  .home-btn{
    top: 32%;
  }

  .content h1{
    font-size: 1.7rem;
    margin-left: 0rem;
    text-align: center;
  }

  .values{
    margin-left: 0;
  }

  .values-content{
    width: 75%;
    margin-top: 10px;
    padding: 0.5rem;
  }

  .values-content h2{
    font-size: 18px;
  }

  .values-content p{
    font-size: 14px;
  }

  .values img{
    width: 35%;
  }


}

@media (max-width:480px) {

  .header-text h1 span{
    font-size: 1.5rem;
  }

  .header-text p{
    font-size: 1.2rem;
  }

  .header-text{
    padding: 0.7rem;
  }

  .home-btn{
    top: 32%;
  }

  .mobile-nav a{
    font-size: 2rem;
    padding: 16px 6px;
  }

  .overlay{
    padding: 8rem 1rem;
  }

  .content h1{
    margin-left: 0;
    text-align: center;
  }

  .values{
    margin-left: 0;
    padding: 0.5rem;
  }

  .values img{
    width: 40%;
  }

  .values-content h2{
    font-size: 16px;
  }

  .values-content p{
    font-size: 12px;
  }

  .team-link h2{
    font-size: 1.2rem;
  }

  .au-content p{
    width: 85%;
  }

  .au-content{
    padding: 25px;
  }

  .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}
  }