:root {
    --nav-link-color: rgb(177, 201, 235);
    --nav-link-hover-color: rgb(3, 5, 6);
    --title-span-color: rgb(73, 86, 198);
    --hero-background: rgb(255, 255, 255);
    --hero-background-gradient: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(17, 57, 96, 1) 100%);
  
    --font-small: 0.5em;
    --font-medium: 1em;
    --font-medium-large: 1.25em;
    --font-large: 1.5rem;
    --font-x-large: 2rem;
    --font-2x-large: 3rem;
    --font-3x-large: 3.5rem;
    --font-4x-large: 4rem;
    --font-5x-large: 4.5rem;
    --font-6x-large: 5rem;
    --font-7x-large: 5.5rem;
  
    --text-color: rgba(7, 26, 44, 1);
  
    --transition-slow: 0.6s;
    --transition-medium: 0.4s;
    --transition-fast: 0.2s;
    --transition-fastest: 0.1s;
  }
  @keyframes scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
  }
  /*Large Desktop*/
  /*General CSS*/
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Quicksand", sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  h2,
  h3 {
    color: var(--title-span-color);
    font-weight: bold;
  }
  
  h2,
  h3,
  p {
    font-family: "Quicksand", sans-serif;
  }
  
  .container {
    width: 60%;
    margin: 0 auto;
  }
  
  /*Navigation*/
  
  .navigation {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    height: 60px;
    background: rgb(141,210,227);
    background: linear-gradient(90deg, rgba(141,210,227,1) 11%, rgba(29,97,253,1) 59%);
  }
  
  .nav-container {
    margin: 0 auto;
    width: 90%;
    height: 100%;
    display: flex;
  }
  
  .nav-container .links {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: large;
  }
  
  .nav-container .logo {
    display: flex;
    width: auto;
    align-items: center;
    min-width: 20%;
    font-family: "Courier New", monospace;
    color: rgb(6, 6, 6);
  }
  .nav-container .logo img {
    width: 180px;
  }
  
  .nav-container .logo span {
    color: var(--nav-link-hover-color);
  }
  .nav-container .logo img {
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .nav-container .links a,
  .nav-container .logo a {
    text-decoration: none;
    color: var(--nav-link-color);
    transition: var(--transition-fast);
  }
  
  .nav-container .links a {
    font-size: var(--font-medium);
  }
  
  .nav-container .logo a {
    font-size: var(--font-large);
  }
  
  .nav-container .links a:hover {
    color: var(--nav-link-hover-color);
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0001);
    background-color: rgba(141,210,227,1);
    box-shadow: 0 0 5px #03e914,0 0 15px #03e9f4, 0 0 25px #03e9f4;
    border-radius: 6px;
    display: block;
    content: "";
    transform: scaleX(1.2);
    transition: transform var(--transition-fastest) ease-in-out;
    transform-origin: 100% 50%;
  }
  
  .nav-container .logo a:hover:after,
  .nav-container .links a:hover:after {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }
  
  .mobile-button {
    display: none;
  }
  
  .mobile-logo {
    display: flex !important;
  }
  
  .mobile-logo .logo {
    width: auto;
  }
  
  .mobile-links {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: var(--transition-fast);
    padding-top: 20px;
    background: rgb(121,198,216);
    background: linear-gradient(90deg, rgba(121,198,216,1) 14%, rgba(29,97,253,1) 53%);
  }
  
  .mobile-links a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--nav-link-color);
    color: black;
    display: block;
    transition: 0.3s;
  }
  
  .mobile-links .m:hover {
    color: var(--nav-link-hover-color);
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0001);
    background-color: rgba(141,210,227,1);
    box-shadow: 0 0 5px #03e914,0 0 15px #03e9f4, 0 0 25px #03e9f4;
    border-radius: 6px;
    display: block;
    content: "";
    transform: scaleX(0.9);
    transition: transform var(--transition-fastest) ease-in-out;
    transform-origin: 100% 50%;
  }
  
  .mobile-links a:hover {
    color: #f1f1f1;
  }
  
  .mobile-links .closebtn {
    font-size: var(--font-x-large);
    margin-right: 25px;
  }
  
  /*Hero*/
  
  .hero {
    min-height: 300px;
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0px 0px 300px 2000px rgba(50, 49, 49, 0.5);
    place-items: center;
  }
  
  .hero .vedio-background{
    position: absolute;
    object-fit: cover;
    display: flex;
    width: 100%;
    height: max-content;
    overflow: var(--hero-background);
    z-index: -1;
    padding-top: 60px;
  }
  
  .hero .vedio-background video {
    height: 850px;
  }
  
  .hero .text {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    color: rgb(211, 214, 250);
  }
  .hero .text {
    display: flex;
    z-index: 1;
    padding-top: 50px;
  }
  
  .hero .slider-container {
    position: absolute;
    width: 100%;
    height: max-content;
    overflow: hidden;
    border-radius: 15px;
  }
  
  .hero .slider-container .image-container {
    display: flex; 
    width: max-content; 
    height: max-content;/* Make sure full images show */
    transition: transform 0.5s ease-in-out; 
  }
  
  .hero .slider-container .image-container img {
      width: 380px;
      height: fit-content;
  }
  
  .hero .slider-container .btn {
    position: absolute;
    top: 50%;
    color: rgb(227, 222, 222);
    font-size: 30px;
    transform: translateY(-80%);
    opacity: 0.8;
    cursor: pointer;
  }
  .hero .slider-container .btn.prev {
    left: 50px;
  }
  
  .hero .slider-container .btn.next {
    right: 50px;
  }
  
  .hero .slider-container .image-container .btn:hover {
    opacity: 1;
  }
  
  .hero .text .pre-title {
    font-size: var(--font-2x-large);
    font-size: 30px;
    z-index: 1;
  }
  .hero .text .title {
    font-size: var(--font-5x-large);
  }
  .hero .text .title span {
    color: var(--title-span-color);
    border-bottom: 5px solid var(--title-span-color);
  }
  .hero .text .post-title {
    font-size: xx-large;
    font-weight: bold;
  }
  .hero .text .mid-title {
    font-size: medium;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    z-index: 1;
  }
  
  /*About*/
  
  .about {
    min-height: 400px;
    display: flex;
    gap: 20px;
    padding-top: 50px;
    border: #04aa6d;
  }
  .about.container{
    width: 80%;
  }
  
  .about-us {
    min-height: 400px;
    padding: 200px;
  }
  
  .about .text-one {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 500px;
    width: 50%;
  }
  
  .about .text-one h2 {
    font-size: var(--font-3x-large);
    width: max-content;
  }
  
  .about .text-one p {
    font-size: var(--font-medium-large);
  }
  
  .about .text-one a {
    width: max-content;
  }
  
  /*Numbers*/
  
  .numbers {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .numbers .container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .numbers .container .text {
    text-align: center;
    color: aliceblue;
    font-size: var(--font-large);
  }
  
  .numbers h2 {
    font-size: var(--font-3x-large);
    color: aliceblue;
  }
  
  .numbers .container .text .number {
    font-size: var(--font-3x-large);
  }
  .orga{
    width: 80%;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .orga .org {
    border-color: blue;
    box-shadow:0 4px 10px 0 rgb(39, 116, 210),0 4px 20px 0 rgba(0, 0, 0, 0.27)
  }
  .orga .org img{
    width: 100%;
  }
  
  /*Industries*/
  .industries{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .industries.container{
    width: 85%;
  }
  
  .industries h3{
    margin: 0px;
  }
  
  .industries .blocks{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .industries .blocks .block {
    height: auto;
    max-height: 400px;
    overflow: auto;
    width: 30%;
    text-align: center;
  }
  .slide{
    display: none;
    width:100%;
  }
  .industries .blocks .block .block-img img{
    width: 100%;
    height: 100%;
  }
  /*Research*/
  
  .research{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .research.container{
    width: 90%;
  }
  .research .axis{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    border-bottom: 2px dotted gray;
    padding-bottom: 20px;
  }
  .research .axis .axisi{
    align-items: center;
    width: 40%;
    padding: 3%;
  }
  .research .axis .axism{
    width: 60%;
    padding-top: 8%;
  }
  .research .axis .axism h3{
    text-decoration: underline;
  }
  .research .ware{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
  }
  .research .ware .warem{
    width: 60%;
    padding-top: 12%; 
  }
  .research .ware .warem h3{
    text-decoration: underline;
  }
  .research .ware .warei{
    padding: 3%;
    width: 40%;
  }

  /*Products*/

  .products {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /*Services*/
  .services {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .services.container,
  .careers.container,
  .products.container {
    width: 80%;
  }
  
  .services h2,
  .careers h2,.clients h2,.training h2, .industries h2, .projects h2, .research h2, .products h2  {
    font-size: var(--font-3x-large);
  }
  
  .services .cards,
  .careers .cards,
  .products .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .services .cards .card,
  .products .cards .card {
    max-height: 300px;
    height: auto;
    overflow: auto;
    width: 80%;
    justify-content: center;
    text-align: center;
  }
  
  .services .cards .card h3,
  .careers .cards .card h3,
  .products .cards .card h3 {
    color: var(--title-span-color);
    font-size: var(--font-medium-large);
  }
  
  .services .cards .card .card-text p,
  .careers .cards .card .card-text p,
  .products .cards .card .card-text p {
    font-size: var(--font-medium-large);
  }
  
  /*Clients*/
  .clients{
    padding-top: 125px;
    padding-bottom: 110px;
    width: 80%;
  }
  .clients .cards {
    width: 100%;
    text-align: center;
  }
  .clients .cards .client {
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)
  }
  .clients .cards .client img {
    padding: 2px;
    margin: 5px;
    object-fit: contain;
  }
  /*Training*/
  
  .training {
    padding-top: 150px;
    padding-bottom: 150px;
    width: 80%;
    place-items: center;
  }
  
  .training .detail ul {
    font-size: large;
    font-weight: 600;
  }
  
  /*Projects*/
  .projects {
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: auto;
  }
  
  .projects .tab th {
    font-size: large;
    font-weight: bold;
    padding: 10px;
  }
  
  .projects .tab a {
    color: var(--title-span-color);
    font-size: medium;
    font-weight: bold;
    text-decoration: none;
  }
  
  .projects .tab td {
    padding: 10px;
  }
  
  /*Careers*/
  .careers {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .careers .cards .card {
    width: 30%;
    text-align: center;
  }
  
  .careers .cards .card header h3 {
    color: #fff;
  }
  
  .careers .cards .card footer {
    width: 100%;
  }
  
  .careers .cards .card .content {
    height: 400px;
    overflow: auto;
  }
  
  .careers .cards .card .card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /*Contact*/
  
  .contact {
    min-height: 730px;
    display: flex;
    justify-content: flex-end;
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 70px;
    width: 80%;
  }
  
  .contact .form .container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  
  .contact span {
    color: var(--title-span-color);
    transition: var(---transition-fast);
  }
  
  .contact span:hover {
    font-weight: bolder;
  }
  
  .contact .form .container form {
    width: 80%;
  }
  
  .contact .short-contact {
    display: flex;
    flex-direction: column;
    align-items: left;
    min-height: 400px;
    width: 50%;
  }
  .contact .form {
    width: 50%;
  }
  .contact h2 {
    font-size: var(--font-3x-large);
    width: max-content;
  }
  
  
  
  /*FOOTER*/
  #footer p span {
    color: var(--nav-link-hover-color);
  }
  
  /*Utilities*/
  
  .show-medium {
    display: none;
  }
  
  @media screen and (max-width: 1200px) {
    .nav-container {
      width: 80%;
    }
  
    .container {
      width: 80%;
    }
    .nav-container .links {
      display: none;
    }
  
    .mobile-button {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      align-items: center;
    }
  
    .mobile-button span {
      font-size: var(--font-x-large);
      color: var(--nav-link-hover-color);
    }
  
    .mobile-logo {
      display: flex;
    }
    .mobile-links-active {
      width: 40%;
    }
    .hero .vedio-background video {
      height: 800px;
      width: 100%;
    }

    .research.container{
      width: 90%;
    }
    .services.container,
    .careers.container,.industries.container, .products.container {
      width: 100%;
    }
    .services .cards .card .card-text p,
    .careers .cards .card .card-text p, .industries .blocks .block h3 {
      font-size: var(--font-medium);
    }
    .contact.container {
      width: 80%;
    }
    .footer.container{
      width: 100%;
    }
  }
  
  @media screen and (max-width: 1024px) {
    .nav-container {
      width: 80%;
    }
  
    .container {
      width: 80%;
    }
    .nav-container .links {
      display: none;
    }
  
    .mobile-button {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      align-items: center;
    }
  
    .mobile-button span {
      font-size: var(--font-x-large);
      color: var(--nav-link-hover-color);
    }
  
    .mobile-logo {
      display: flex;
    }
    .mobile-links-active {
      width: 40%;
    }
  
    .hero .text .pre-title {
      font-size: var(--font-x-large);
    }
    .hero .text .title {
      font-size: var(--font-2x-large);
    }
    .hero .text .post-title {
      font-size: x-large;
    }
  
    .about .text-one {
      width: 70%;
    }
  
    .about .text-one h2,
    .contact h2 {
      font-size: var(--font-2x-large);
    }
  
    .about .text-one p {
      font-size: var(--font-medium);
    }
  
    .about .text-two ul {
      font-size: var(--font-medium);
    }
    .clients {
      width: 100%;
    }
    .services .cards .card,
    .careers .cards .card, .industries .blocks .block, .products .cards .card  {
      width: 45%;
    }
  
    .services .cards .card .card-text p {
      font-size: var(--font-medium);
    }
  
    .research .axis{
      flex-direction: column;
    }
    .research .axis .axisi {
      width: 100%;
      padding: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .research .axis .axisi img {
      width: 350px;
      padding: 0px;
    }
    .research .axis .axism {
      width: 100%;
      padding-top: 0;
      justify-content: center;
    }
    .research .ware{
      flex-direction: column;
    }
    .research .ware .warem {
      width: 100%;
      padding-top: 0;
      padding-bottom: 10px;
      justify-content: center;
      
    }
    .research .ware .warei {
      width: 100%;
      padding: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .research .ware .warei img {
      width: 350px;
      padding: 0px;
    }
  
    .projects {
      width: 95%;
      margin: auto;
    }
  
    .careers .cards .card {
      height: auto;
    }
  
    .contact .short-contact {
      width: 100%;
    }
  
    .contact .form {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 768px) {
    .mobile-links-active {
      width: 70%;
    }
  
    .about {
      flex-direction: column;
      text-align: center;
    }
  
    .about .text-one {
      min-height: 0;
    }
  
    .about .text-one h2,
    .contact h2 {
      width: 100%;
    }
  
    .about .text-one a {
      margin: 0 auto;
    }
  
    .about .text-one {
      width: 100%;
    }
    .about .text-two {
      width: 100%;
    }
  
    .numbers .container {
      justify-content: center;
      flex-direction: column;
    }
  
    .show-medium {
      display: block;
    }
  
    .services .cards .card,
    .careers .cards .card, .industries .blocks .block, .products .cards .card {
      width: 100%;
    }
  
    .industries{
      padding-top: 50px;
    }
    .industries .blocks .block{
      height: auto;
    }
  
    .services .cards .card, .products .cards .card  {
      height: auto;
    }
  
    .services .cards .card .card-text p {
      font-size: var(--font-medium);
    }
  
    .contact {
      flex-direction: column;
      justify-content: center;
    }
  
    .contact .short-contact {
      width: 100%;
      min-height: 0;
      justify-content: center;
    }
  
    .contact .short-contact h2 {
      width: fit-content;
    }
  
    .contact .container {
      width: 90%;
    }
  
    .contact .form .container form {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 480px) {
    html,
    body {
      overflow-x: none;
    }
  
    .nav-container {
      width: 90% !important;
    }
  
    .hero {
      height: 800px;
      width: 100%;
    }
  
    .hero .text img {
      width: 350px;
      height: 150px;
    }
  
    .hero .text .pre-title {
      font-size: var(--font-large);
    }
    .hero .text .title,
    .contact h2,
    .services h2,
    .careers h2,
    .industries h2, .clients h2, .training h2, .projects h2, .research h2 {
      font-size: var(--font-x-large);
    }
    .hero .text .post-title {
      font-size: large;
    }
  
    .mobile-links-active {
      width: 100%;
    }
  
    .services.container,
    .about.container,
    .careers.container, .industries.container, .products.container {
      width: 100%;
    }

    .clients {
      height: 800px;
      width: 100%;
      padding-top: 200px;
    }
  
    .contact {
      padding: 10px;
      padding-top: 50px;
    }
  
    .contact p {
      font-size: var(--font-medium-large) !important;
    }
  
    .contact .container {
      width: 100%;
    }
    
  }
  /* Dark theme styles */
  body.dark-mode {
    background-color: #8a8282;
    color: #ffffff;
  }
  
  button.dark-mode {
    background-color: #333333;
    color: #ffffff;
  }