:root {
    --main-font: "inter", sans-serif;
    --sub-font: "Montserrat Alternates", sans-serif;
    --button-font: "M PLUS 1p", sans-serif;
    --title-font: "Lalezar", sans-serif;

    --bright-color: #fcf8ec;
    --dark-color: #0e0e0e;
    --flavour-color: #bc9200;
}
@media (max-width: 1200px) {
    :root {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    :root {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    :root {
        font-size: 12px;
    }
}

body {
    color: var(--bright-color);
    background-color: var(--dark-color);
    font-family: var(--main-font);
    box-sizing: border-box;
}
.nav-container {
    width: 59%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
a:active,
a:focus {
    transform: scale(0.95);
}
.anchors-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
}
@media (max-width: 575.99px) {
    .anchors-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .nav-container {
        gap: 1rem;
    }
}

/* HEADER */
.about {
    font-family: var(--main-font);
}
.about span {
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
}
.about strong {
    font-weight: 700;
    font-size: 28px;
    line-height: 33.89px;
    min-height: 169.45px;
}
.services {
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;
}
@media (max-width: 575.99px) {
}
/* PHOTO */
.photo {
    position: relative;
    width: 100%;
}
.float-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}
.float-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: var(--title-font);
    text-align: center;
    bottom: 10%;
}
h1 {
    font-size: 10vw;
    font-family: var(--title-font);
    font-weight: 400;
    line-height: 1;
    text-align: center;
}
.float-text p {
    width: 59%;
    font-family: var(--sub-font);
    font-weight: 400;
    text-align: center;
    font-size: 1vw;
}
.download-resume {
    display: inline-block;
    text-decoration: none;
    position: relative;
    background-color: transparent;
    width: 8.1875rem;
    height: 2.1875rem;
    margin-top: 1.25rem;
    border-radius: 1.875rem;
    border: 1px solid var(--bright-color);
    color: var(--bright-color);
    font-family: var(--button-font);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9094rem;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease,
        box-shadow 0.3s ease;
}

.download-resume::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.875rem;
    background: var(--dark-color);
    z-index: -1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.download-resume:hover {
    background-color: var(--bright-color);
    color: var(--dark-color);
    border-color: var(--dark-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.download-resume:hover::before {
    opacity: 0.1;
    transform: translate(0.25rem, 0.25rem);
}

.download-resume:active {
    transform: translateY(0.25rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
}

.download-resume:active::before {
    opacity: 0.2;
    transform: translate(0, 0);
}
/* LOGOS */
#logo-list {
    width: 100%;
    height: fit-content;
}
#logo-list li {
    position: relative;
    list-style: none;
    /* border: 1px solid black;  */
    /* background-color: #f0f0f0;  */
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

#logo-list li img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* HAPPY CLIENTS */
.carousel-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.patch-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 10px; */
}
.client-logo-container {
    margin: 0;
    background-color: var(--bright-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    min-width: 50px;
    min-height: 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 15px;
    text-align: center;
}
.client-logo {
    /* width: 100%;
    height: 100%; */
    object-fit: contain;

    max-width: 100%;
    height: auto;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--bright-color);
    color: var(--bright-color);
    border-radius: 50%;
    padding: 10px;
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

/* Wall of GIFs  */
.wall-gifs {
    /* background-color: var(--dark-color) ; */
    background-color: #dda028;
    background-color: var(--flavour-color);
    width: 100%;
    height: 1000px;
}
.dragable-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.draggable {
    width: fit-content;
    height: fit-content;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    user-select: none;
    position: absolute;
}
.draggable figure {
    padding: 15px;
    background: var(--bright-color);
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.draggable figure img {
    object-fit: contain;
    height: 200px;
}
@media (max-width: 575.99px) {
    .wall-gifs {
        display: none;
    }
}

/* Footer */
footer {
    width: 100%;
    height: fit-content;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}
.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background-color: var(--bright-color);
    border-radius: 115px;
    margin: auto 50px;
}
.khalil-img {
    width: 90%;
    max-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}
.khalil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-content {
    flex: 2;
    margin: 20px 70px 0px 20px;
    padding-top: 15px;
    padding-bottom: 0;
}
.small-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 18.33px;
    color: var(--dark-color);
    margin-bottom: 0;
}
.body-font {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    margin-top: 0;
    padding-top: 0;
    color: var(--dark-color);
}
.say-hi {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    width: 5.69rem;
    height: 2.19rem;
    margin-top: -10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-radius: 1.875rem;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    font-family: var(--button-font);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9094rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease,
        box-shadow 0.3s ease;
}

.say-hi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.875rem;
    background: var(--bright-color);
    z-index: -1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.say-hi:hover {
    background-color: var(--bright-color);
    color: var(--dark-color);
    transform: translateY(-0.25rem);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.say-hi:hover::before {
    opacity: 0.1;
    transform: translate(0.25rem, 0.25rem);
}

.say-hi:active {
    transform: translateY(0.25rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.say-hi:active::before {
    opacity: 0.2;
    transform: translate(0, 0);
}

.thankyou {
    font-family: Inter;
    font-size: 13px;
    font-weight: 200;
    line-height: 15.73px;
    text-align: left;
}
.thankyou span {
    font-weight: 300;
}
@media (max-width: 575.99px) {
    .body-font {
        font-size: 20px;
        line-height: 19px;
        text-align: center;
    }
    .khalil-img {
        display: none;
    }
    .cta-content {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
      margin: 15px 30px;
      padding-top: 15px;
      padding-bottom: 0;
  }
}
