/* Responsiveness */
/* Responsive Design */
@media (max-width: 1024px) {
    .home-section {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        margin-top: 3rem;
    }

    .home-image img {
        width: 250px;
    }

    .text h1 {
        font-size: 2rem;
    }

    .text h3 {
        font-size: 1.2rem;
    }

    .text p {
        font-size: 0.9rem;
    }

    .text .btn {
        padding: 8px 16px;
        margin-top: 1.5rem;
    }

    .social-links {
        left: 10px;
        margin-left: 0;
        padding: 8px;
        bottom: 5rem;
    }

    .social-links i {
        font-size: 0.8rem;
        padding: 15px 10px;
    }

    .hire-me img {
        width: 15%;
        right: 20px;
    }

    .about-me, .service-cards, .project-cards {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card, .project-card {
        width: 90%;
        height: auto;
    }

    form {
        width: 90%;
    }

    input[type="text"], input[type="email"], textarea {
        width: 90%;
    }

    input[type="submit"] {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .home-section {
        margin-top: 2rem;
    }

    .home-image img {
        width: 200px;
    }

    .text h1 {
        font-size: 1.8rem;
    }

    .text h3 {
        font-size: 1rem;
    }

    .text p {
        font-size: 0.8rem;
    }

    .social-links {
        left: 5px;
        bottom: 3rem;
    }

    .hire-me img {
        display: none;
    }

    .service-card, .project-card {
        width:90%;
    }

    form {
        width: 100%;
    }

    input[type="text"], input[type="email"], textarea {
        width: 95%;
    }

    input[type="submit"] {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .home-section {
        margin-top: 1rem;
    }

    .home-image img {
        width: 150px;
    }

    .text h1 {
        font-size: 1.5rem;
    }

    .text h3 {
        font-size: 0.9rem;
    }

    .text p {
        font-size: 0.7rem;
    }

    .social-links {
        display: none; /* Hide for very small screens */
    }

    .hire-me img {
        width: 25%;
    }

    .service-card, .project-card {
        padding: 10px;
    }

    input[type="text"], input[type="email"], textarea {
        width: 90%;
        padding: 15px;
    }

    input[type="submit"] {
        padding: 8px 16px;
    }
}
