body {
    font-family: var(--eb-garamond-main);
    background-color: #001F3F;
    color: white;
}

/* From Uiverse.io by satyamchaudharydev */ 
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #EC8305;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }

/* Navbar */
.header{
  color: #DBD3D3;
  a, span {
      color: #DBD3D3;
  }
  h2 {
      background-color: #6A9AB0;
      color: black;
      display: flex;
      justify-content: center;
      font-size: 20px;
      padding: 5px;
  }
}

.hero {
    background-image: url('../assets/svg/polygon-scatter-haikei.svg');
    object-fit: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    color: #FFFFFF;

    a {
      text-decoration: none;
    }
}

.services {
    background-color: #DBD3D3;
    color: #001F3F;

    .card:hover {
        transition: ease 0.5s;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }

    .card-title{
        font-weight: bold;
        justify-content: center;
        align-items: center;
        color: #001F3F;
        display: flex;
        font-size: 20px;
    }

    a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #EC8305;
      font-size: 20px;

      i {
        padding: 2px;
      }
    }

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

footer {
    color: #DBD3D3;
}

.eb-garamond-main {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.name-brand {
    font-family: var(--eb-garamond-main);
}

.nav-item {
    font-family: var(--eb-garamond-main);
    font-size: 16px;
    background: transparent;
    border: none;
    padding: 0.5em;
    color: #ffedd3;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
  }
  
  .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #EC8305;
    transition: 0.5s ease;
  }
  
  .nav-item:hover {
    transition-delay: 0.5s;
    a {
        color: #EC8305;
    }
  }
  
  .nav-item:hover::before {
    width: 100%;
  }

  @media (max-width: 576px) {
    .hero {
      padding: 15px;
    }
  
    .hero .row {
      flex-direction: column;
      text-align: center;
    }
  
    .hero .col-lg-6 {
      padding: 0 15px;
    }
  
    .hero .col-10 {
      max-width: 100%;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .services h1 {
      font-size: 1.5rem;
    }
  
    .card-deck {
      display: block;
    }
  
    .card {
      margin-bottom: 20px;
    }
  
    .card img {
      height: 200px;
      object-fit: cover;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 20px;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .services h1 {
      font-size: 1.75rem;
    }
  
    .card-deck {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .card {
      margin-bottom: 20px;
      width: 100%;
    }
  
    .card img {
      height: 250px;
      object-fit: cover;
    }
  }
  
  @media (min-width: 992px) {
    .hero {
      padding: 50px 0;
    }
  
    .hero h1 {
      font-size: 3rem;
    }
  
    .hero p {
      font-size: 1.25rem;
    }
  
    .services h1 {
      font-size: 2.5rem;
    }
  
    .card-deck {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
  
    .card img {
      height: 300px;
      object-fit: cover;
    }
  }
  