@font-face {
    font-family: 'Peace';
    src: url(../components/Peace\ Sans.otf) format('opentype');
}

.Services-Container {
    padding: 60px 0 30px 0;
    width: 100%;

    background: linear-gradient(180deg, #59e0e6, #4fffb4);

    display: flex;
    flex-direction: column;

    position: relative;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 500px;
    height: 500px;
}

.CL {
    left: -10%;
    bottom: 20%;
}

.CR {
    right: -10%;
    top: 8%;
}

.Services-Title {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 0 0;
}

.Services-Title h1 {
    color: rgba(0, 31, 73, 0.8);
    font-family: 'Etna', sans-serif;
    font-size: 50px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.Services-Title p {
    color: rgba(0, 31, 73, 0.8);
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    text-align: center;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);

    width: 50%;
}

.Services-Offered {
    width: 100%;
    margin: 50px 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    row-gap: 30px;
}

.Offered {
    background: radial-gradient(at 0% 0%, #ffffff, #84ffca);
    width: 70%;
    height: 100%;
    padding: 30px;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
}

.Offered img {
    width: 100px;
    height: 100px;
}

.Offered h1 {
    color: rgba(0, 31, 73, 0.8);
    font-size: 30px;
    font-family: 'Peace', sans-serif;
    margin: 15px 0;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.Offered p {
    color: rgba(0, 31, 73, 0.8);
    font-size: 20px;
    font-family: 'DM Sans', sans-serif;
    text-align: justify;
    width: 95%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

/* Portfolio */
.Portfolio-Container {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #4fffb4;
}

.swiper-container {
    width: 100%;
    height: 480px;
}

.swiper-slide {
    width: 400px !important;
    height: 380px !important;
    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(at 0% 0%, #ffffff, #84ffca);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.slide-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slide-content img {
    width: 100%;
    border-radius: 10px;
}

.slide-content h1 {
    color: rgba(0, 31, 73, 0.8);
    font-size: 38px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: rgba(0, 31, 73, 0.8);
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.slide-content a {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  padding: 8px 40px;
  border-radius: 40px;
  width: fit-content;
  margin-top: 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  font-family: 'hk', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 100;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 0 #004aad,
    0 8px 15px rgba(0, 0, 0, 0.3);

  transition:
    box-shadow 0.2s ease-in-out;
    position: relative;
}

.slide-content a:hover {
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 0 #004aad,
    0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(2px);
}

.slide-content a:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 0 #004aad,
    0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(4px);
}

/* Mobile View */
@media (max-width: 900px) {
    .circle {
        display: none;
    }
    .Services-Title h1 {
        font-size: 36px;
        letter-spacing: 1.2px;
    }

    .Services-Title p {
        font-size: 20px;
        text-align: justify;
        width: 90%;
    }

    .Services-Offered {
        grid-template-columns: repeat(1, 1fr);
    }

    .Offered {
        width: 90%;
        padding: 20px;
        border: none;
        border-radius: 10px;
    }

    .Offered img {
        width: 80px;
        height: 80px;
    }

    .Offered h1 {
        font-size: 25px;
        text-align: center;
    }

    .Offered p {
        font-size: 18px;
        width: 100%;
    }

}