@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800&family=Inter:wght@200;300;400;500;600;700&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 0 30px;
    background-color: #121212;
    color: #fff;
}

.about {
    background-color: #550028;
}

.bigtitle {
    font-size: 5.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
}

.clienttitle {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Inter Tight', sans-serif;
}

.clienttitledesc {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    font-weight: 100;
    font-family: 'Inter Tight', sans-serif;
}

.subtitle {
    font-size: 2.7rem;
    margin: 0 0 1rem 0;
    max-width: 800px;
}

.button-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /* Space of 20px between each button */
    gap: 10px;
}

.button {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    max-width: 500px;
    text-align: center;
    text-decoration: none;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

.button:active {
    transform: scale(0.95);
    background-color: #ffe600;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #8a0040;
}

::-webkit-scrollbar-thumb:hover {
    background: #c4005b;
}

#whoWeAre {
    transition: opacity 0.5s ease-in-out;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    gap: 30px;
  }

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    background-image: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);
    color: #000;
    padding: 1rem;
    width: 300px;
    height: 400px;
    transition: all 0.2s ease-in-out;
}

.c2 {
    width: 600px;
}

.card:hover {
    transform: scale(1.02);
    background-image: linear-gradient(315deg, #d7e1ec 0%, #ffffff 74%);
    background-size: cover;
    /* blur background image */
    backdrop-filter: blur(25px);
    /* Pointer cursor */
    cursor: pointer;
    color: #000;
  }

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter Tight', sans-serif;
}

.highlight {
    text-decoration: underline;
}

.card-container a {
    text-decoration: none;
    color: #000;
}

.contact {
    background-image: linear-gradient(180deg, #121212 0%, #66135b 100%);
}

.widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 10px;
    max-width: 500px;
  }
  
  label {
    margin-bottom: 5px;
  }
  
  input[type="number"],
  select,
  input[type="range"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  #result {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .pricing{
    margin: 0 auto;
    height: 20%;
  }