@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Header */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background-image: linear-gradient(90deg, #74D7BB, #53C8B6, #35A99C);
    z-index: 1000;
}

.logo {
    padding: 0 5rem;
}

.logo .logo-heading {
    color: #fff;
}

.menu {
    padding: 0 5rem;
}

.menu .menu-list {
    display: flex;
    list-style: none;
}

.menu-list .menu-list-items {
    padding: 0.5rem 1rem;
}

.links {
    border-bottom: 2px solid transparent;
    transition: 0.25s;
    padding: 5px;
    text-decoration: none;
    color: #fff;
}

.links:hover {
    border-bottom: 2px solid #fff;
}

/* Hero */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.8rem;
    padding: 2rem;
    text-align: center;
}

.hero .intro {
    max-width: 900px;
}

.hero .intro-buttons {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Portfolio */
.portfolio {
    margin: 4.8rem 0;
    padding: 0 5rem;
}

.portfolio-heading {
    margin-bottom: 2rem;
}

.port-card {
    padding: 2rem !important;
    background: none !important;
    border: 2px solid #000;
}

/* About */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: linear-gradient(45deg, #363D73, #2794B3);
    text-align: center;
}

.about .about-text {
    width: 100%;
    color: #fff;
    padding: 5rem 3rem;
}

/* Skills */
.skills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 4.8rem 0;
    padding: 0 5rem;
}

.skills-heading {
    margin-bottom: 1rem;
}

.skills-content {
    width: 100%;
}

.my-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
}

.my-row .my-col {
    text-align: center;
    width: 30%;
}

.my-card {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background-image: linear-gradient(#74D7BB, #53C8B6, #35A99C);
    padding: 1.5rem;
}

.icon {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #363D73;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon i {
    font-size: 30px;
    color: #fff;
}

/* Contact */
.contact {
    padding: 0 5rem;
    margin: 4.8rem 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-form-container,
.contact-details {
    width: 48%;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-controls {
    width: 100%;
    padding: 12px;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea.form-controls {
    resize: none;
}

.contact-form .form-btn {
    width: 100%;
}

.details {
    margin-bottom: 1.5rem;
}

.contact-sub-heading {
    font-size: 1rem;
    color: #363D73;
    margin-bottom: 0.3rem;
}

.contact-text {
    color: #333;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content h4 {
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu {
    padding: 0 1rem;
}

.footer-menu .footer-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    gap: 1rem;
}

.footer-list-items {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #53C8B6;
}

.footer-links {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

/* Utility Classes */
.greet-heading {
    font-size: 1.3rem;
    font-weight: lighter;
    margin: 0;
    letter-spacing: 1px;
}

.my-heading {
    font-size: 2.5rem;
    margin: 0;
}

.sub-heading {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #ccc;
    font-weight: lighter;
    line-height: 1.8;
}

.lead-para {
    margin: 1rem 0;
}

.text-center {
    text-align: center;
}

.small-para {
    font-size: 14px;
    color: #fff;
}

.white-text {
    color: #fff;
}

.blue-text {
    color: #363D73;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    border: none;
    font-family: inherit;
}

.common-btn {
    background-color: #35A99C;
    color: #fff;
    border: 2px solid #35A99C;
    transition: 0.25s;
}


.common-btn:hover {
    background-color: #fff;
    color: #35A99C;
    border: 2px solid #35A99C;
}
.common-btn:hover {
    background-color: #fff;
    color: #35A99C;
    border: 2px solid #35A99C;
}

.ghost-btn {
    background-color: #fff;
    color: #35A99C;
    border: 2px solid #35A99C;
    transition: 0.25s;
}

.ghost-btn:hover {
    background-color: #35A99C;
    color: #fff;
    border: 2px solid #35A99C;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .logo,
    .menu,
    .portfolio,
    .skills,
    .contact {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar {
        flex-direction: column;
        gap: 0.8rem;
    }

    .menu .menu-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .my-row,
    .contact-content {
        flex-direction: column;
    }

    .my-row .my-col,
    .contact-form-container,
    .contact-details {
        width: 100%;
    }

    .hero {
        padding: 1rem;
    }

    .my-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 0.95rem;
    }

    .hero .intro-buttons {
        flex-direction: column;
    }
}