/* import font Federo-Regular.ttf */
@font-face {
  font-family: "Federo";
  src: url("./Federo/Federo-Regular.ttf") format("truetype");
}
* {
  font-family: "Federo", sans-serif;
  color: #20244A;
}
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 80px;
}
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
header {
  padding-top: 2px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 132px;
}

h1,
h2,
h3 {
  color: #20244A;
}
nav {
  background-color: #20244A;
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1.3px solid #2e3468;
}
nav a {
  text-decoration: none;
  color: white;
  padding: 18px;
}
.wd-100{
  width: 100%;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #f1f1f1; /* You can change this color to match your website */
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
}
#Partners {
    background-color: white !important;
}
/* Text inside the strip */
.marquee-content {
  display: flex;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  padding-right: 10%;
  animation: marquee 25s linear infinite;
  font-size: 20px;
  color: #20244A;
}
.marquee-icons {
  padding-right: 10%;
  animation: marquee 20s linear infinite;
  font-size: 20px; 
  display: flex;
  gap: 10vw;
  align-items: center;
}
/* Animation for the text movement */
@keyframes marquee {
  0% {
    transform: translateX(0); /* Start at full view */
  }
  100% {
    transform: translateX(-100%); /* Move left by 100% */
  }
}
.slider__grid { 
    padding: 10px 10%;
    height: 80vh;
    display: flex;
    gap: 30px;
}

.gallery__item,
.gallery__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  height: 50%;
  justify-content: space-evenly;
}

.btn {
  padding: 1em 25px 1em;
  background-color: #21234a;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  transition: background-color 0.5s;
}
.btn:hover {    
    background-color: #2c368f;
}
.What_We_Do {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 10%;
}
ul {
  list-style-type: none;
  padding: 0;
}
.flex {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gap-20 {
  gap: 20px;
}
.center {
  text-align: center;
  margin-top: 0;
}
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.flex-col2 {
  display: flex;
  flex-direction: column;
}
.flex-st {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 30%;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.img-fill img:hover{
    transform: scale(1.02);    
}

.m10 {
  margin: 10px 0px;
}
.owl-carousel {
  position: relative;
}
.owl-carousel img {
    width: 100%;      
    height: 80vh;    
    object-fit: cover;
  }
.carousel-caption {
  position: absolute;
  top: 80%;
  left: 20px; /* Stick to the left side */
  transform: translateY(-50%); /* Vertically center the text */
  z-index: 4;
  opacity: 0; /* Initially hidden */
  animation: slideUp 0.8s ease-out forwards; /* Trigger the slide-up animation */
}
.carousel-caption h2 {
  font-size: 32px;
  color: white;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}
nav .active{
    font-weight: bold;
}
.more-details{
  padding: 10px 15px;
  border-radius: 50%;
  background-color: #20244A;
  color: white;
  font-size: larger;  
  cursor: pointer;
  animation: floating 5s infinite alternate;

}
.more-details:hover{
  background-color: #20286c;
  scale: 1.1;
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  z-index: -1;
}

/* Popup visible state */
.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 100;
}

/* Popup styling */
.popup {
  position: fixed;
  top:50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 45vw;
  text-align: left;
  line-height: 1.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
  border-radius: 10px;
}
.close-popup {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.popup * {
  pointer-events: auto;
}
.caption{
  padding-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #20244A;
}
.mb-20{
  margin-bottom: 20px !important;
}
.lh-1{
  line-height: 1.4;
}
@media (max-width: 600px) {
  .flex-col2 {
    flex: 1 1 100%; /* Stack inputs on small screens */
  }
}
@keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(100%); /* Start off-screen (below the caption's position) */
    }
    100% {
      opacity: 1;
      transform: translateY(-50%); /* Final position, vertically centered */
    }
  }
@keyframes sketch {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes designFlash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes conveyorBelt {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes boxOpen {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0);
  }
}

@keyframes airplaneTakeOff {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  grid-gap: 10px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:nth-child(1) {
  grid-row: span 1;
}
.gallery-item:nth-child(2) {
  grid-column: span 2; 
}
.gallery-item:nth-child(3) {
  grid-column: span 2; 
  grid-row: 2; 
}
.gallery-item:nth-child(4) {
  grid-column: span 1; 
  grid-row: 2;
}
.gallery-item:nth-child(9) {
  grid-column: span 2; 
  grid-row: 3;
}
.gallery-item:hover img {
  transform: scale(1.1); 
}
.no-hover img {
  transform: scale(1) !important; 
}
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  font-size: 16px;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: underline;
}
.no-decoration{
  text-decoration: none;
}
/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  padding-top: 10%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ccc;
}
.purple_bg {
  background-color: #c7cad8;
}

footer {
  padding: 3% 7%;
  display: flex;
  justify-content: space-between;
  background-color: #20244A;  
}
footer *{
  color: white;
}
footer > div {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
hr {
  color: #20244A;
  background-color: #20244A;
  width: 2px;
}
.p8 {
  font-size: 10px;
  color: #c7cad8;
  font-weight: 500;
}
.footer-content-container > div {
  width: 100%;
}
.lightish-spaced-row {
  margin-bottom: 30px;
}
.indicates-required {
  font-size: 11px;
  text-align: right;
}
#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px;
}
label {
  font-weight: 500;
  line-height: 1.5;
}
input,
select {
  border: 1px solid #abb0b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: background-shade-black;
  border-radius: 3px;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 15px;
}
.categories-container{
    display: flex;
    flex-direction: column;
    padding: 20px 10%;
}

.category-header {
    position: relative;
    color: #20244A; /* Dark purplish black */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px; /* Gap between text and underline */
}

.category-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, #4c448f, #0d001a);
    border-radius: 2px;
}

.What_We_Do h2{
    position: relative;
    color: #20244A;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 50px;
}
.mx-10{
    margin-right: 10%;
    margin-left: 10%;
}
.categories-container ul {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    gap: 10px; 
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.categories-container li {
    font-size: 18px;
    color: #20244A;
}
.footer-content-container ul{
    line-height: 2;
}
.footer-content-container a{
    text-decoration: none;
    font-weight: 600;    
    color: #20244A;
    position: relative;
    transition: color 0.5s;
}
.footer-content-container a:hover{
    color: #2c368f;
}

.footer-item-1 {
    flex: 0 0 15%;
}

.footer-item-3 {
    flex: 0 0 80%;
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 20px 10%;
    gap: 8px;
    justify-content: center;
}
.gallery-container img{
    /* width: 70%; */
    height: auto;
    object-fit: cover;
}
.hamburger {
    display: none;
}
#nav-close-button{
    display: none;
    font-size: 16px;
    color: #20244A;
    border: none;
}
#nav-close-button:hover{
    color: white;    
    background-color: transparent;
}
@media (max-width: 780px) {
    #nav-close-button{
        display: block;
        cursor: pointer;
    }    
    .gallery{
      grid-template-columns: repeat(3, 1fr) !important;
    }
    .flex-col li{
      font-size: 10px;
    }
    .step img{
        width: 50px;
        height: 50px;
    }   
    .arrow-icon{
        width: 30px;
    }
    .timeline{
        width: 85%;
        gap: 15px;
    }
    .nav > a{
        padding: 10px;
    }
    footer, .timeline, .slider__grid, footer > div{
        flex-direction: column;
    }
    .flex{
      width: 100%;
      flex-wrap: wrap;
    }
    .flex-col{
      flex: 1 1 calc(50% - 10px);
      text-align: center;
    }
    .gap-20{
        gap:12px;
    }
    .arrow-icon{
        rotate: 90deg;
    }
    .carousel-caption h2{
        font-size: 28px;        
    }
    .carousel-caption{
        top: 75%;
    }
    nav{
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(32, 36, 74, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        /* transition: max-height 0.5s ease, opacity 0.5s ease; */
    }
    nav.show {
      transform: translateY(0);
    }
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        background-color: rgb(247, 247, 248);
        border: none;
        outline: none;
        padding: 15px;
        align-self: flex-start;
        width: 100%;
        text-align: left;
    }
    .show-nav {
        display: flex;
        opacity: 1;
        max-height: 500px;
    }
    .dropdown-content img{
        width: 35px;
    }
    .dropdown-content a{
        font-size: 8px;
        padding: 5px;
    }
    .dropdown:hover .dropdown-content{
        gap: 1px !important;
    }
    .cards{
      flex-direction: column;
      align-content: center;
    }
    .card{
      width: 80% !important;
    }
}
@media (max-width: 500px) {
  .gallery{
    display: flex !important;
    flex-wrap: wrap !important;
  }
}
.dropdown {
    position: relative;
    display: flex;
  }
  
.dropdown-content {
display: none;
position: absolute;
background-color: white;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
min-width: 140px;
z-index: 5;
top: 45px;
border-radius: 4px;
}

.dropdown-content a {
display: block;
padding: 10px;
color: #20244A;
text-decoration: none;
}

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

.dropdown:hover .dropdown-content {
    display: flex;
    gap: 20px;
}
.dropdown-content > div, .dropdown-content a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-content a{
    flex-direction: column;
}

#contact-us {
  text-align: center;
  padding: 8%;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

/* Card Container */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Cards */
.card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 27%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
  margin-bottom: 10px;
  color: #4CAF50;
}

/* Headings */
.card h3 {
  margin: 10px 0;
  font-size: 1.5rem;
  color: #555;
}

/* Links and Text */
.card a {
  color: #2196F3;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  margin: 5px 0;
}

.card a:hover {
  text-decoration: underline;
}

.card p {
  color: #777;
  font-size: 0.9rem;
}

#TermsofService *{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
}

#TermsofService{
  padding: 50px 13%;
}

ol{
  width: 100%;
  list-style-type: lower-alpha;
  margin-top: 0;
  padding-left: 8%;  
  line-height: 2;
}

.black{
  color:black !important;
}