@font-face {
  font-family: 'Atrament';
  src: url('/assets/fonts/AtramentTRIAL-Light-BF65a72dd341b06.otf') format('opentype');
}
@font-face {
  font-family: 'Atrament Bold Italic';
  src: url('/assets/fonts/AtramentTRIAL-BoldItalic-BF65a72dd2682da.otf') format('opentype');
}
@font-face {
  font-family: 'Roboto Semi Condensed Extra Light';
  src: url('/assets/fonts/Roboto_SemiCondensed-ExtraLight.ttf') format('opentype');
}
@font-face {
  font-family: 'Roboto Condensed Light';
  src: url('/assets/fonts/Roboto_Condensed-Light.ttf') format('opentype');
}
@font-face {
  font-family: 'Roboto Light';
  src: url('/assets/fonts/Roboto-Light.ttf') format('opentype');
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none; /* Hide on larger screens */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 20px;
}

.sidebar.active {
  right: 0;
}

.nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav2 li {
  margin: 15px 0;
}

.nav2 a {
  text-decoration: none;
  color: #27376A;
  font-size: 24px;
  font-family: 'Roboto Condensed Light', sans-serif;
}

.nav2 a.contact {
  background-color: #33AE82;
  padding: 5px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
  color: white;
}

.nav2 a.contact:hover {
  background-color: #33AE82;
}

.header {
  position: relative;
  height: 100vh;
  background-color: #ECEEEE;
}

.header-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin-top: 7em;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.nav {
  position: absolute;
  top: 10.5em;
  right: 20px;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.nav li {
    display: inline;
}

.nav a {
    text-decoration: none;
    color: #27376A;
    font-size: 24px;
    font-family: 'Roboto Condensed Light', sans-serif;
}

.nav a.contact {
    background-color: #33AE82;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: white;
}

.nav a.contact:hover {
    background-color: #33AE82;
}



.header-left {
    text-align: left;
}

.logo {
    width: 20em;
    height: 20em;
    margin-bottom: 15px;
}

.title {
    width: 69%;
    font-size: 44px;
    margin: 0;
    color: #3b5393;
    font-family: 'Atrament Bold Italic', sans-serif;
}

.header-left-div1 {
    margin: 1em 0em;
    display: flex;
    flex-direction: column;
    color: #365393;
    font-size: 24px;
    font-family: 'Roboto Semi Condensed Extra Light', sans-serif;
}

.header-left-div2 {
    display: flex;
    align-items: center;
}

.header-left-div2-1 {
    height: 30px;
    width: 30px;
}

.container2 {
    text-align: center;
    padding: 5em 20px;
    position: relative;
    margin-top: 7em;
}

.card-head {
    font-size: 48px;
    margin-bottom: 1em;
    font-weight: bold;
    color: white;
    font-style:italic;
    font-family: 'Atrament Bold Italic', sans-serif;
}

.description {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    margin: 1em 9em;
    line-height: 1.5;
    color: #d0d0d0;
    font-weight: 200;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.card {
    background: #4c65a6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}

.card p {
    font-size: 24px;
    color: #d0d0d0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

.container3 {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  .container-h1 {
    font-size: 48px;
    color: #003366;
    margin-bottom: 20px;
    font-family: 'Atrament Bold Italic', sans-serif;
    font-style: italic;
  }
  
  .steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  
  .step {
    flex: 1;
    max-width: 150px;
    text-align: center;
  }
  
  .step img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 24px;
    color: #3B5393;
    font-family: 'Roboto Light', sans-serif;
    font-weight: 300;
  }
  
  .arrow {
    font-size: 5em;
    color: #00b2bf;
    margin: 0 10px;
  }

  .arrow2 {
    font-size: 5em;
    color: #00b2bf;
    margin: 0 10px;
    transform: rotate(180deg);
  }
  
  .down-arrow {
    font-size: 5em;
    color: #00b2bf;
  }
  
  .cont-description {
    margin-top: 30px;
  }
  
  .cont-description p {
    font-size: 30px;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    margin: 0 11em;
    color: #061953;
    font-weight: 200;
  }
  
  .cont-description h2 {
    font-size: 48px;
    color: #00b2bf;
    margin-top: 1em;
    font-style: italic;
    font-weight: 700;
    font-family: 'Atrament Bold Italic', sans-serif;
  }
  footer {
    background-color: #0f254b;
    color:  #bcc1d0;;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px 6em;
  }
  
  .contact-info {
    max-width: 50%;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
  }

  .send {
    background-color: #00B2BF;
    padding: 5px 15px;
    transition: background-color 0.3s;
    color: white;
    border-color: #00B2BF;
    width: 10%;
  }
  
  .contact-info p {
    margin: 5px 0;
  }
  
  .social-icons {
    display: flex;
    gap: 1em;
    margin: 2em 0;
    align-items: center;
    justify-content: center;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #bcc1d0;
    color:black;
  }
  
  .contact-form textarea {
    resize: none;
    height: 100px;
  }
  
  .footer-bottom {
    display: flex;
    gap: 25em;
    align-items: center;
    padding-top: 10px;
    font-size: 20px;
    margin: 0px 5em;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
  }
  
  .footer-bottom a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom span {
    background: #fff;
    color: #0f254b;
    border-radius: 50%;
    padding: 5px 10px;
  }
  .footer-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  @media only screen and (max-width: 768px) {
    .header {
        height: 51vh;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .logo {
        width: 100px;
        height: auto;
        margin: 0;
    }

    .header-image {
        width: 100%;
        height: 120%;
        object-fit: unset;
    }

    .nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .header-left {
        position: relative;
        top: -20px;
        transform: none;
        padding: 10px;
        text-align: left;
    }

    .title {
        font-size: 22px;
        width: 100%;
        color: #365393;
        font-family: 'Atrament Bold Italic', sans-serif;
    }

    .headdiv{
      margin-left: 1.5em !important;
    }

    .header-left-div1{
      font-size: 18px;
      font-family: 'Roboto Semi Condensed Extra Light', sans-serif;
    }

    .header-left-div2 img {
      display: none; 
    }
    
    .header-left-div2 .bullet-point {
      width: 10px;
      height: 10px;
      background-color: #365393;
      border-radius: 50%;
      margin-right: 10px;
      display: inline-block;
    }
    
    .header-left-div2-2 {
      display: inline-block;
      margin-top: 5px;
      color: #365393;
    }

    .overlay {
        width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    .container-h1 {
      font-family: 'Atrament Bold Italic', sans-serif;
      font-size: 1.6rem;
    }
}


@media (max-width: 768px) {
    #OuterMainDiv1{
      display: block !important;
      margin-top: -4em;
    }
    #stepDiv1,#stepDiv2{
      display: none !important;
    }
    .container2 {
        padding: 1.5em 15px;
        margin-top: 10.5em;
    }

    .card-head {
        font-size: 1.6rem;
        margin-bottom: 0.5em;
        font-family: 'Atrament Bold Italic', sans-serif;
    }

    .description {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 1.5rem;
        margin: 10px;
        font-weight: 200;
    }

    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .card {
        padding: 15px;
    }

    .card img {
        width: 40px;
        height: 40px;
    }

    .card h2 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    .steps {
      flex-wrap: wrap;
      justify-content: center;
      margin: 0px 0;
    }
  
    .step {
      flex: 0 0 45%;
      max-width: 45%;
      margin-top: 3em;
    }

    .step p {
      color: #3B5393;
      font-family: 'Roboto Light', sans-serif;
      font-weight: 300;
      font-size: 0.9em;
    }

    .step img {
      width: 45px;
      height: 45px;
    }

    .cont-description p {
      color: #061953;
      font-family: 'Roboto', sans-serif;
      font-weight: 200;
    }
    
    .arrow {
      flex: 0 0 10%;
      max-width: 10%;
      display: block;
      font-size: 2em;
      margin: 0 auto;
    }

  
    .arrow2 {
      display: none;
      font-size: 2em;
    }

    .step.marginrt + .arrow2 {
      display: block;
      transform: rotate(0deg);
    }

    .step.step7 + .arrow2 {
      display: block;
      transform: rotate(180deg);
    }

    .step2div{
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step2div2{
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .step:nth-child(3) ~ .arrow {
      display: block;
      transform: rotate(180deg);
    }


    .down-arrow{
      text-align: left;
      margin-left: 2.2em;
      font-size: 2em;
    }

    .down-arrow2{
      margin-left: 1.5em;
    }

    .marginlt{
      margin-top: 3em;
    }

    .marginrt{
      margin-right: 1em;
      margin-top: 1em;
    }

    .margint{
      margin-top: 6em;
    }
    
      .cont-description p {
        font-size: 1.2em; 
        margin: 0 1em; 
      }
    
      .cont-description h2 {
        font-size: 1.5em; 
        font-family: 'Atrament Bold Italic', sans-serif;
      }

      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0; 
      }
    
      .contact-info {
        width: 100%;
        margin-bottom: 1em; 
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 300;
      }

      .contact-info h3 {
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 300;
      }
    
      .social-icons {
        justify-content: center; 
      }
    
      .contact-form {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 90%;
          margin-bottom: 1em;
      }
    
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin: 0; 
        padding-top: 20px; 
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 300;
      }

      .send {
        width: 20%;
      }
    
      .footer-bottom a {
        margin-bottom: 10px; 
      }

      .footer-logo{
        flex-direction: column;
      }
}