/*
Theme Name: Falcon Mobile
Author: Layman Tech
Version: 1.9
*/

html {
  scroll-behavior: smooth;
}

section,footer {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #e5e5e5;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 3.2rem;
  font-weight: 300;
  color: #6b6b6b;
}

h3 {
  font-weight: 500;
}

#cursor {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  margin-left: 4px;
  background-color: #2b2b2b;
  vertical-align: bottom;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fdcb00;
  margin-top: 8px;
}

h4 {
  margin: 0;
}

p {
  font-weight: 300;
}

.side-padding {
  padding-left: 5%;
  padding-right: 5%;
}

.margin-top {
  margin-top: 2em;
}


body {
  --sb-track-color: #ececec;
  --sb-thumb-color: #fdcb00;
  --sb-size: 14px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

/**********************************************************************************
Nav Bar
***********************************************************************************/
/*Navigation*/
header {
    position: relative;
    display: flex;
    justify-content: center;
}

nav {
    position: fixed;
    width: 90%;
    top: 1em;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

nav ul, nav {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

nav {
  background: #3941A1;
  background: linear-gradient(90deg,rgba(57, 65, 161, 0.8) 0%, rgba(0, 7, 71, 0.8) 50%, rgba(57, 65, 161, 0.8) 100%);  
  backdrop-filter: blur(6px);
  padding: 1em;
  border-radius: 50px;
}

nav ul {
    display: flex;
    justify-content: space-around;
    width: 90%;
    align-items: center;
}

ul {
  margin: 0;
  padding: 0;
}

nav ul li, nav li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.logo {
    width: 100px;
    height: auto;
}

nav ul li a:hover {
    color: #fdcb00;
}

.tabs {
    transition: all 0.2s ease-in-out;
}

.menu {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px); background-color: rgba(0, 7, 71, 0.8);
    z-index: 9999;
    flex-direction: column; 
    align-items: center;
    justify-content: space-around;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    padding: 0px;
}

.mobile-menu ul li {
    list-style: none;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

.mobile-logo {
  display: none;
}

.close {
    cursor: pointer;
    fill: white;
}

@media (max-width: 1040px) {
    .mobile-col {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1em;
    }

    .about-text {
        left: 0;
        text-align: center;
        align-items: center;
    }

    .mobile-off {
        display: none;
    }

    .mobile-on {
        display: block;
    }

    nav {
      justify-content: space-between;
      padding-left: 1.5em;
      padding-right: 1.5em;
    }
  }

/*********************************************************************************
Hero Section
***********************************************************************************/
.hero {
  min-height: 100vh;
  background-image: url(heroBackground.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 100vw;
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0 2em;
}

.hero h1 {
  margin: 1em 0 0 0;
  text-align: center;
}

.highlight {
  color: #558af3;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  position: relative;
  gap: 2em;
}

.hero-left,
.hero-right {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  min-width: 250px;
}

.hero-left {
  gap: 2em;
  align-self: flex-start;
}

.hero-left .cta {
  max-width: 180px;
}

.hero-right {
  text-align: right;
  align-self: flex-end;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #fdcb00;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-radius: 0 0 25px 0;
  box-shadow: 10px 10px 0px #030c5f;
  transition: all 0.3s ease;
}

.cta:hover {
  box-shadow: none;
}

.hero-right .bold {
  font-weight: bold;
  font-size: 2.4rem;
  color: #000;
  margin: 0;
}

.hero-image {
  max-width: 450px;
  height: 450px;
  width: 100%;
  background-image: url(heroImage.png);
  background-size: cover;
  background-position: center;
  min-width: 300px;
}

.topArt,
.bottomArt {
  width: 80px;
  height: auto;
  
}

.topArt {
  position: absolute;
  top: 100px;
  right: 120px;  
}

.bottomArt {
  position: absolute;
  bottom: 100px;
  left: 120px;
}

.text-off {
  display: none;
}

.container {
  min-width: 300px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-image {
    max-width: 350px;
    height: 350px;
  }
}

@media (max-width: 1080px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-left,
  .hero-right {
    align-self: center;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .topArt,.bottomArt {
    display: none;
  }

  .hero {
    position: relative;
    padding-top: 3em;
  }

  h1 {
    font-size: 2.4rem;
  }

}


/********************************************************************************************
About Us
********************************************************************************************/

.about {
  position: relative;
  color: white;
  z-index: 2;
  border-radius: 180px 180px 0 0;
  background-color: #000747;
  padding-top: 3em;
  padding-bottom: 5em;
}

.about-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
}

.about-content .left {
  max-width: 500px;
  height: auto;
  border-radius: 0 0 180px 0;
  width: 100%;
}

.about-content .right {
  max-width: 600px;
  height: auto;
  border-radius: 0 0 0 180px;
  width: 100%;
}

.about-content p {
  max-width: 600px;
}

.about a {
  max-width: 150px;
}

.image-container {
  position: relative;
}

.image-container a {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.cards-track {
  display: flex;
  gap: 1rem;
  animation: scroll-left 35s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card5, .card6 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aliceblue;
  border-radius: 25px;
  padding: 12px 0px;
  min-width: 150px;
  height: 40px;
  flex-shrink: 0;
  max-width: 200px;
}

.card6 {
  padding: 12px 0px;
}

.card5 img {
  max-width: 65px;
  height: auto;
}

.card6 img {
  max-width: 60px;
  height: auto;
}

.banner {
  display: flex;
  width: 90%;
  justify-content: space-between;
  border-radius: 15px;
  border: solid 2px #051393;
  padding: 20px 28px;
  background-color: #030c5f;
  justify-self: center;
  flex-wrap: wrap;
  gap: 1em;
}

.banner > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
}

.banner h4 {
  margin: 0;
  font-weight: 400;
  font-size: 2.8rem;
}

.banner .highlight {
  color: #fdcb00;
}

.banner p {
  margin: 0;
  font-size: 1.2rem;
  color: #707070;
  text-align: center;
}

/* About Section Responsive Design */
@media (max-width: 1200px) {
  .about {
    border-radius: 120px 120px 0 0;
  }

  .about-content .left {
    max-width: 400px;
    border-radius: 0 0 120px 0;
  }

  .about-content .right {
    max-width: 500px;
    border-radius: 0 0 0 120px;
  }

  .banner h4 {
    font-size: 2.4rem;
  }

  .banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .about {
    border-radius: 80px 80px 0 0;
    padding-top: 2em;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-content .left {
    max-width: 350px;
    border-radius: 0 0 80px 0;
    order: 2;
  }

  .about-content .right {
    max-width: 400px;
    border-radius: 0 0 0 80px;
    order: 1;
  }

  .about-content > div {
    order: 3;
  }


  .banner {
    width: 95%;
    padding: 15px 20px;
  }

  .banner h4 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about {
    border-radius: 50px 50px 0 0;
    padding-top: 1.5em;
    padding-bottom: 3em;
  }

  .about-content {
    gap: 1.5em;
  }

  .about-content .left {
    max-width: 280px;
    border-radius: 0 0 50px 0;
  }

  .about-content .right {
    max-width: 320px;
    border-radius: 0 0 0 50px;
  }

  .about-content p {
    max-width: 100%;
    font-size: 0.9rem;
  }


  .banner {
    width: 100%;
    padding: 12px 15px;
    gap: 0.5em;
  }

  .banner > .item {
    min-width: 80px;
  }

  .banner h4 {
    font-size: 1.6rem;
  }

  .banner p {
    font-size: 0.9rem;
  }

  .image-container a {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .about {
    border-radius: 30px 30px 0 0;
    padding-top: 1em;
    padding-bottom: 2em;
  }

  .about-content .left {
    max-width: 220px;
    border-radius: 0 0 30px 0;
  }

  .about-content .right {
    max-width: 250px;
    border-radius: 0 0 0 30px;
  }

  .about-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }


  .banner {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .banner > .item {
    min-width: 60px;
  }

  .banner h4 {
    font-size: 1.3rem;
  }

  .banner p {
    font-size: 0.8rem;
  }

  .image-container a {
    bottom: 10px;
    right: 10px;
  }
}

/********************************************************************************************
services
********************************************************************************************/
.services {
  background-color: #ececec;
  position: relative;
  z-index: 3;
}

.services h2 {
  padding-top: 1.5em;
  margin: 0;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 0;
  gap: 1em;
  max-width: 1640px;
  flex-wrap: wrap;
  justify-self: center;
}

.service-card {
  padding: 20px 28px;
  color: white;
  max-width: 350px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  padding-top: 40px;
  margin-bottom: 3em;
}

.blue-bg {
  background-color: #030c5f;
}

.yellow-bg {
  background-color: #fdcb00;
  color: rgb(0, 0, 0);
}

.grey-bg {
  background-color: #ececec;
}

.blue-bd {
  border: solid 2px #000747;
  color: #000;
  height: 400px;
}

.yellow-bd {
  border: solid 2px #fdcb00;
  color: #000;
  height: 400px;
}

.right-round {
  border-radius: 0 50px 0 0;
}

.left-round {
  border-radius: 50px 0 0 0;
}

.right-d-round {
  border-radius: 0 0 50px 0;
}

.left-d-round {
  border-radius: 0 0 0 50px;
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: absolute;
  top: -40px;
}

.icon-container img {
  max-width: 50px;
  height: auto;
}

/******************************************************************************************
Process
********************************************************************************************/
.process {
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 4;
    gap: 1em;
    flex-wrap: wrap-reverse;
    padding-bottom: 3em;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 2em;
    flex-wrap: wrap-reverse;
}

.arcoddian {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.process-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    color: #000;
    border: solid 2px #c4c4c4;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 550px;
    gap: 1em;
}

.process-question h3 {
    margin: 0;
}

.toggle-symbol {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
}

.process-answer {
    display: none;
    padding: 20px;
    margin-top: 10px;
}

.process-item.open .process-answer {
    display: block;
    max-width: 500px;
}

.active-question {
    color: #000;
    border: solid 2px #FDCB00;
}

.drop-button h3 {
    margin: 0;
}

.process img {
    max-width: 450px;
    height: auto;
}

/****************************************************************************************
Industries we Serve
***************************************************************************************/
.industries {
  background-color: #ececec;
  position: relative;
  z-index: 5;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
}

.industries h3 {
  font-size: 2.8rem;
  padding-top: 1.5em;
  margin: 0;
  text-align: center;
}

.industries-container {
  max-width: 1879px;
  border-radius: 50px;
  overflow: hidden;
  background: #000747;
  background: linear-gradient(
    90deg,
    rgba(0, 7, 71, 1) 0%,
    rgba(17, 23, 71, 1) 20%,
    rgba(8, 17, 97, 1) 44%,
    rgba(23, 33, 129, 1) 100%
  );
}

.industries-content {
  position: relative;
  max-width: 1776px;
  width: 100%;
  min-height: 870px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3em;
}

.card-container2 {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2em;
}

.around {
  justify-content: space-around;
}

.between {
  justify-content: space-between;
}

.left-card {
  border-radius: 25px 155px 155px 25px;
}

.right-card {
  border-radius: 155px 25px 25px 155px;
}

.right-card, .left-card {
  position: relative;
  width: 500px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: #fdcb00 solid 3px;
  background-color: rgba(0, 7, 71, 0.55);
  backdrop-filter: blur(6px);
  padding: 0 16px 0 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  gap: 1em;
}

.left-card:hover, .right-card:hover {
  transform: scale(1.05);
}

.card-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.card-text p {
  color: #f1f1f1;
  font-weight: 400;
  padding: 5px 0;
}

.card-industry {
  width: 150px;
  height: 150px;
  aspect-ratio: 1;
  flex-shrink: 0;
  background-color: #101972;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdcb00;
  font-weight: 600;
  text-align: center;
  padding: 1em;
  box-sizing: border-box;
}

.outer-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: solid 3px #fdcb00;
  background-color: #101972;
}

.mid-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background-color: #000747;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 161px;
  height: 161px;
  border-radius: 50%;
  background-color: #101972;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle img {
  width: 35px;
  height: auto;
  object-fit: contain;
}

.circle-container {
  opacity: 0.4;
}

/* Industries Responsive */
@media (max-width: 1300px) {
  .left-card,
  .right-card {
    width: 480px;
    height: 200px;
    gap: 10px;
  }

  .left-card {
    padding: 0 14px 0 18px;
  }

  .right-card {
    padding: 0 18px 0 14px;
  }

  .card-industry {
    width: 180px;
    height: 180px;
  }

}



@media (max-width: 1145px) {
  .around, .between {
    justify-content: center;
  }

  .right-card {
    margin-bottom: 2em;
  }
}



/**************************************************************************************
Our Work
***************************************************************************************/
.work {
    background-color: #ECECEC;
    position: relative;
    z-index: 6;
}

.work h2 {
    padding-top: 1.5em;
    margin: 0;
}

.tags {
    display: flex;
    justify-content: space-between;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 50px;
    background-color: #6B6B6B;
    max-width: 600px;
    color: white;
    padding: 20px;
}

.card .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tags .row, .card .title {
    display: flex;
    align-items: center;
}

.row {
    display: flex;
    gap: 1em;
}

.tags .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 1em;
}

.tab {
    padding: 5px 15px;
    background-color: #8C8C8C;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
}

.circle {
    width: 20px;
    height: 20px;
    background-color: #FDCB00;
    border-radius: 50%;
    margin-right: 10px;
}

.white {
    background-color: white;
    color: #000;
}

.white h3 {
    color: #000747;
}

/**************************************************************************************
Contact Us
***************************************************************************************/
footer {
    background-color: #ECECEC;
    padding: 0 1em;
    color: white;
    position: relative;
    z-index: 7;
}

.footer-content {
    display: flex;
    flex-direction: column;
    background-color: #323232;
    border-radius: 180px 180px 0 0;
}

.footer-content h2 {
    margin-left: 1em;
}

.contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 1em;
}

footer form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
    max-width: 400px;
    width: 100%;
}

input, textarea {
    background-color: #323232;
    padding: 20px 30px;
    border: solid 1px #9C9C9C;
    color: white;
}

textarea {
    resize: none;
    height: 150px;
    border-radius: 0 0 50px 50px;
}

.contact .cta {
    max-width: 150px;
    align-self: flex-end;
    border: none;
    box-shadow: 10px 10px 0px #747474;
    cursor: pointer;
}

.contact .cta:hover {
    box-shadow: none;
}

.name {
    border-radius: 50px 50px 0 0;
}

.contact-info {
    text-align: center;
}

.copyright {
    text-align: center;
    padding: 1em 0;
    color: #9C9C9C;
    font-size: 0.9rem;
    border-top: solid 1px #9C9C9C;
}

/*************************************
Mobile Responsive
***************************************/

@media (max-width: 1160px) {
  .process img {
    max-width: 400px;
    height: auto;
}
}