* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/*-----------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: #202020;
    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--------*/

/*--------Home Page Content Starts--------*/

/*-------------Content--------*/

.title{
  text-align: center;
  font-size: 2rem;
  padding: 1.5rem;
}

.title h1{
  padding: 1rem;
}


.container{
  width: 90%;
  margin: 3rem auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin{
  position: relative;
  padding: 1.1rem;
  background: linear-gradient(to left, rgba(236, 235, 235, 0.5), rgb(236, 235, 235, 1) ); /*#ecebeb Hex Code*/
  border-style: outset;
  color: #000;
  z-index: 1;
  width: 35%;
  left: 3rem;
}

.origin h1{
  font-size: 2.5rem;
  margin: 8px 0;
}

.ap{
  filter: grayscale();
  border: solid #000;
  width: 45%;
  position: relative;
  right: 3rem;
}

.img2{
  position: relative;
  border: solid #000;
  border-width: 3px;
}

.our-aim{
  position: relative;
  padding: 1rem;
  background: linear-gradient(to right, rgba(236, 235, 235, 0.75), rgb(236, 235, 235, 1) ); /*#ecebeb Hex Code*/
  box-sizing: border-box;
  border-style: outset;
  color: #000;
  right: 5rem;
  z-index: 1;
  width: 35%;

}

.our-aim h1{
  font-size: 2.5rem;
  margin: 8px 0;
}

.title-content a h2{
  font-size: 26px;
}

/*--------Home Page Content Starts--------*/

.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) {

  .container{
    width: 90%;
    margin: 0 auto;
    padding: 1.2rem;
  }
  
  .origin{
    width: 45%;
    padding: 1rem;
  }
  
  .origin h1{
    font-size: 2rem;
    margin: 8px 0;
  }
  
  .ap{
    width: 55%;
  }

  .our-aim{
    padding: 0.8rem;
    width: 21.875;
  
  }
  
  .our-aim h1{
    font-size: 2rem;
    margin: 8px 0;
  }
  
  .our-aim img{
      left: 100px;
      bottom: 10px;
      border: solid #000;
      border-width: 3px;
      width: 22.4rem;
  }

}

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

    .title{
      font-size: 1.2rem;
    }

    .container{
      width: 95%;
      padding: 1rem;
      margin: 1.5rem 0;
    }
    
    .origin{
      width: 38%;
      padding: 0.6rem;
      left: 0.5rem;
    }
    
    .origin h1{
      font-size: 16px;
      margin: 8px 0;
    }
  
    .origin p{
      font-size: 12px;
    }
    
    .ap{
      width: 55%;
      right: 2.5rem;
    }

    .our-aim{
      padding: 1.4rem;
      right: 0rem;
      width: 95%;
    
    }
    
    .our-aim h1{
      font-size: 1.75rem;
      margin: 8px 0;
    }
    
    .img2{
      width: 55%;
      margin: 30px 15px;
    }
    



}

@media (max-width:480px) {

  .title{
    font-size: 1.1rem;
    padding: 0.2rem;
    }
  
  
  .container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  
  .origin{
    margin: 30px 15px;
    width: 95%;
    padding: 1.4rem;
    left: 0;
  }
  
  .origin h1{
    font-size: 1.75rem;
    margin: 8px 0;
  }

  .origin p{
    font-size: 1.1rem;
  }
  
  .ap{
    width: 90%;
    right: 0;
  }

  .our-aim{
    padding: 1.4rem;
    right: 0rem;
    width: 95%;
  
  }
  
  .our-aim h1{
    font-size: 1.75rem;
    margin: 8px 0;
  }
  
  .img2{
    width: 90%;
    margin: 30px 15px;
  }

  .title-content{
    display: block;
  }

  .title-content p{
    padding: 0.7rem;
  }

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