@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Michroma&display=swap');

*{
      font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-display: swap;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.navbar {  background: #101012;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 10; 
}

.navbar-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 90%;
max-width: 1200px;
}
      
.img-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    padding-block: 6px;
}

.logo-img {
    width: 16rem;
    margin: auto;
}
      
.nav-logo {
    display: flex;
    align-items: center;
padding-left: 3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    margin-right: 3rem;
    padding-top: 2rem;
}

.nav-item {
    height: 100%;
}

.nav-link:hover {
  color: #eb1000;
  transition-behavior: normal; 
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out; 
  transition-delay: 0s; 

}

.nav-link {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    cursor: pointer;
  
    &.active {
      border-bottom: 3px solid #fff;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

/* Side Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #151517;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
    z-index: 1000;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-menu li {
    padding: 15px 0;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s ease-in-out;
}

.mobile-nav-link:hover {
    color: #eb1000;
}

/* Open Side Menu */
.mobile-nav.open {
    right: 0;
}

/* Show Hamburger Menu on Small Screens */
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero-container, .not-found-container, .thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 92vh;
    position: relative;
    z-index: 2;
}

.hero-container:before, .not-found-container:before, .thank-you-container:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-image: url('../images/background.jpg');
      background-repeat: no-repeat;
      background-position: center;
      z-index: 0;
}

.not-found-h1 {
    color: #fff;
    font-size: 200px;
    text-align: center;  
    @media screen and (max-width: 768px) {
      font-size: 120px;
    }
  
    @media screen and (max-width: 480px) {
      font-size: 84px;
    }
}

.thank-you-h1 {
    color: #fff;
    font-size: 128px;
    text-align: center;  
    @media screen and (max-width: 768px) {
      font-size: 64px;
    }
  
    @media screen and (max-width: 480px) {
      font-size: 48px;
    }
}

.not-found-p, .thank-you-p {
  padding-top: 1rem;
    color: #fff;
    max-width: 45rem;
    font-size: 1.2rem;
    text-align: center;
  
    @media screen and (max-width: 768px) {
      font-size: 24px;
    }
  
    @media screen and (max-width: 480px) {
      font-size: 18px;
    }
}

.hero-content, .not-found-content, .thank-you-content {
    z-index: 3;
    max-width: 1200px;
    position: absolute;
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
}

.hero-h1 {
    font-weight: 800;
    color: #fff;
    font-size: 54px;
    max-width: 2000px;
  
    @media screen and (max-width: 768px) {
      font-size: 40px;
    }
  
    @media screen and (max-width: 480px) {
      font-size: 32px;
    }
}

.hero-p {
    font-family: "IBM Plex Sans", sans-serif;
    padding-top: 2rem;
    color: rgba(255,255,255,0.75);
    max-width: 45rem;
    font-size: 1.2rem;  
    @media screen and (max-width: 768px) {
      font-size: 24px;
    }
  
    @media screen and (max-width: 480px) {
      font-size: 18px;
    }
}

.button-wrapper {
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.button {
    font-family: "IBM Plex Sans", sans-serif;
    position: relative;
    border-radius: 1rem;
    background-color: transparent;
    white-space: nowrap;
    padding: 14px 48px;
    color: #fff;
    font-size: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    height: 3rem;
    width: 8rem;
    border: 3px solid #eb1000;
    z-index: 1;
    overflow: hidden;
}


.button:hover {
    color: #fff;
    border-color: #eb1000;
    font-weight: bold;
    background-color: #eb1000;
    transition: 0.3s ease-in-out;
}

.button-left::before {
    right: 0;
}

.button-right::before {
    left: 0;
}
.info-container {
    color: #fff;
    background: #101012;
    @media screen and (max-width: 768px) {
      padding: 100px 0;
    }
}

.info-wrapper {
    display: grid;
    z-index: 1;
    height: 860px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 24px;
    justify-content: center;
}

.info-row {
    display: grid;
    grid-auto-columns: minmax(auto, 1fr);
    align-items: center;
    grid-template-areas: 'col1 col2';
  
    @media screen and (max-width: 768px) {
      grid-template-areas: 'col2' 'col1';
    }
}

.info-row2 {
  grid-template-areas: 'col2 col1';
  
    @media screen and (max-width: 768px) {
      grid-template-areas: 'col1' 'col2';
    }
}

.column1 {
    margin-bottom: 15px;
    padding: 0 15px;
    grid-area: col1;
}

.column2 {
    margin-bottom: 15px;
    padding: 0 15px;
    grid-area: col2;
}


.text-wrapper {
    max-width: 540px;
    padding-top: 0;
    padding-bottom: 60px;
}

.top-line {
    color: #eb1000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8vh;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.heading {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 600;
    color: "#f7f8fa";
  
    @media screen and (max-width: 480px) {
      font-size: 32px;
    }
}

.subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  max-width: 540px;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
}

.btn-wrap {
  display: flex;
  justify-content: flex-start;
}

.img-wrap {
  max-width: 555px;
  height: 100%;
}

.img {
  width: 100%;
  margin: 0 0 10px 0;
  padding-right: 0;
}

.services-container {
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #101012;

  @media screen and (max-width: 1000px) {
    height: 1400px;
  }

  @media screen and (max-width: 768px){
    height: 2400px;
  }
}

.services-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 16px;
  padding: 0 50px;

  @media screen and (max-width: 1000px) {
    grid-template-columns: 1fr 1fr;
  }

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
/**
.services-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  min-height: 20rem;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  

  &:hover {
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
}*/

.services-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  min-height: 20rem;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;

  &:hover {
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }

  @media screen and (max-width: 768px) {
    min-height: 18rem; /* Reduce minimum height for smaller screens */
    padding: 0.8rem; /* Adjust padding for better fit */
    margin-bottom: 1.5rem; /* Reduce margin */
  }

  @media screen and (max-width: 480px) {
    min-height: 15rem; /* Further adjust for very small screens */
    padding: 0.6rem; /* Reduce padding further */
    margin-bottom: 1rem; /* Adjust margin */
  }
}

.services-icon {
  height: 160px;
  width: 160px;
  margin-bottom: 10px;
}

.services-h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 64px;

  @media screen and (max-width: 480px) {
    font-size: 2rem;
  }
}

.services-h2 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}

.services-p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  text-align: center;
}

.footer-container {
  background-color: #101012;
  height: 5rem;
}

.footer-wrap {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links-container {
  display: flex;
  justify-content: center;

  @media screen and (max-width: 820px) {
    padding-top: 25px;
  }
}

.footer-links-wrapper {
  display: flex;

  @media screen and (max-width: 820px) {
    flex-direction: column;
  }
}

.footer-link-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
  color: #fff;

  @media screen and (max-width: 420px) {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}

.footer-link {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 14px;

  &:hover {
    color: #eb1000;
    transition: 0.3s ease-out;
  }
}

.social-media {
  max-width: 1000px;
  width: 100%;
}

.social-media-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: px auto 0 auto;

  @media screen and (max-width: 820px) {
    flex-direction: column;
  }
}

.website-rights {
        font-family: "IBM Plex Sans", sans-serif;

  color: #fff;
  justify-content: center;
  font-size: 0.8 rem;
  @media screen and (max-width: 768px) {
    margin: 20px 0;
  }
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.social-icon-link {
  color: #fff;
  font-size: 24px;

  &:hover {
    color: #eb1000;
    transition: 0.3s ease-out;
  }
}