body {
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    max-width: 1260px;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

@media screen and (max-width: 875px) {
    .container {
        padding: 0 10px;
    }
}

.container__wrapper {
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    max-width: 1260px;
    width: 100%;
}

.title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.right {
    /* height: 150vh; */
    position: relative;
}

.box {
    position: sticky;
    top: 40px;
    left: 0;
    width: 320px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
}

.box__title {
    font-size: 24px;
    text-align: center;
}

.box__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    width: 100%;
    background-color: #1dbf73;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;

    transition: 0.1s;
}

.box__link:hover {
    background-color: #00aa5a;
}

.box__svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid gray;
    margin-bottom: 20px;
}

.whatsapp__wrapper {
    position: fixed;
    right: 40px;
    bottom: 40px;
}

.profile__picture__wrapper {
    position: relative;
}

.profile__picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid gray;
    /* background: url('./img/vecteezy_abstract-geometric-shape-on-a-transparent-background_21468423.png'); */
}

.bg__picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%) rotate(-30deg);
    width: 300px;
    height: 300px;
    z-index: -1;
}

.info__title {
    margin-bottom: 10px;
}

.info__item {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
    font-size: 22px;
}

.info__icon {
    width: 22px;
    margin-right: 5px;
}

.overview__list {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.overview__item {
    padding: 5px 30px;
    font-size: 20px;
    color: #5a5a5a;
    font-weight: 400;
    border-right: 1px solid rgb(187, 187, 187);
}

.overview__item:last-child {
    border-right: none;
}

.overview__main {
    display: block;
    font-size: 27px;
    color: #2a2a2a;
    font-weight: 700;
}

.about,
.skill,
.portfolio {
    margin-top: 40px;
}

.about {
    padding-bottom: 30px;
}

.skill {
    margin-bottom: 30px;
}

.about__title,
.skill__title,
.overview__title,
.portfolio__title {
    font-size: 28px;
    color: #036;
}

.skill__title {
    color: #fff;
}

.about__content {
    font-size: 20px;
    color: #2a2a2a;
    margin-top: 10px;
}

.skill {
    background-color: #ef473e;
    padding: 15px 20px;
    border-radius: 20px;
}

.skill__list {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.skill__item {
    padding: 8px 12px;
    font-size: 18px;
    color: #2a2a2a;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    border: 1px solid gray;
}

.portfolio__main {
    margin-top: 20px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid black;
    padding: 10px 20px;
    min-height: 500px;

    display: none;
    align-items: center;
    gap: 30px;
}

.work__img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.work__date {
    color: gray;
}

.work__name {
    font-size: 32px;
}

.work__desc {
    margin-top: 24px;
    font-size: 18px;
    color: #5a5a5a;
}

.work__add {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.work__cost {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.work__span {
    font-weight: 600;
    color: black;
    font-size: 20px;
}

.thumbnails {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
}

.thumbnail {
    width: 220px;
    height: 150px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
}

.thumbnail:hover {
    border: 1px solid black;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #6697b6;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 15px;
}

.navbar-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.navbar-content svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    align-items: center;
}

.navbar a:hover {
    text-decoration: underline;
}

.service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 25px 0;
}

.with-bg {
    background-color: #5a5a5a1f;
}

.service-content h1 {
    color: #036;
    padding-bottom: 15px;
}

.service-content h2 {
    font-size: 30px;
    color: red;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 36px;
    color: black;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-content p {
    font-size: 20px;
}

.service-section img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid gray;
}

.service-text {
    flex: 1;
}

h4 {
    color: #8b0000;
    margin-top: 15px;
}

/* Contact Form CSS */
.contact-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    /* background: rgba(255, 0, 0, 0.1); */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
    text-align: center;
    color: #036; /* deep red color */
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    color: #036;
    margin-bottom: 5px;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form .form-control:focus {
    border-color: #517891;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #036;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid transparent;
}

.submit-btn:hover {
    background-color: transparent;
    color: #036;
    border: 1px solid #036;
}

.hero-section {
    display: block;
    padding: 50px;
    text-align: center;
    color: black;
    margin: auto;
    width: 100%;
}

.hero-section h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-btn {
    margin-top: 20px;
    padding: 12px;
    background-color: #036;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid transparent;

    display: inline-block;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: transparent;
    color: #036;
    border: 1px solid #036;
}

.about-preview,
.service-overview {
    padding: 20px;
    text-align: center;
}

.contact-info {
    padding: 30px;
}

.contact-info h1 {
    font-size: 40px;
    text-align: center;
}

.contact-info p {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
}

.contact-info a {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    padding: 10px 25px;
    background-color: black;

    color: #fff;
    border-radius: 8px;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    background-color: #90d4ff35;
}

.home_card {
    align-self: stretch;
    height: auto;
    max-width: 270px;
    padding: 25px 10px;
    border-radius: 10px;
    background-color: #fff;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: 0.2s;
}

.home_card img {
    max-width: 60px;
    margin-bottom: 15px;
}

.home_card h3 {
    margin-bottom: 15px;
    color: #036;
}

.home_card:hover {
    transform: scale(103%);
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 38px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    text-decoration: none;
}

.show {
    display: block;
}

.service_flex {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

@media screen and (max-width: 875px) {
    .cards {
        flex-direction: column;
        justify-items: center;
        align-items: center;
    }
    .home_card {
        align-self: center;
    }
    .whatsapp__wrapper {
        bottom: 15px;
        right: 15px;
    }
    .box__svg {
        width: 30px;
        height: 30px;
    }
    .navbar-content {
        gap: 20px;
        padding: 10px 0;
    }
    .navbar-content svg {
        width: 16px;
        height: 16px;
    }

    .navbar a {
        font-size: 16px;
    }
    .hero-section {
        display: block;
        padding: 30px;
        text-align: center;
        color: black;
        margin: auto;
        width: 100%;
    }

    .hero-section h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .profile {
        position: relative;
        display: flex;
        align-items: center;
        gap: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid gray;
        margin-bottom: 20px;
    }

    .profile__picture {
        width: 100px;
        height: 100px;
    }
    .info__title {
        font-size: 20px;
    }

    .info__item {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-top: 5px;
        font-size: 16px;
    }

    .info__icon {
        width: 16px;
        margin-right: 5px;
    }
    .about,
    .skill,
    .portfolio {
        margin-top: 40px;
    }

    .about {
        padding-bottom: 30px;
    }

    .skill {
        margin-bottom: 30px;
    }

    .about__title {
        font-size: 22px;
        color: #036;
    }

    .about__content {
        font-size: 16px;
        color: #2a2a2a;
        margin-top: 10px;
    }
    .service_flex {
        flex-direction: column;
        gap: 20px;
    }
    .service_flex img {
        width: 100%;
    }
    .service-content h1 {
        padding-bottom: 15px;
        text-align: center;
    }

    .service-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
        text-align: center;
    }

    .service-content h3 {
        font-size: 26px;
        color: black;
        margin-bottom: 10px;
        font-weight: 500;
        text-align: center;
    }

    .service-content p {
        font-size: 16px;
        text-align: center;
    }
    body {
        padding-top: 50px;
    }
    .dropdown-content {
        min-width: 150px;
        top: 30px;
    }

    .dropdown-content a {
        color: black;
        padding: 10px 13px;
        font-size: 14px;
    }
}
