body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            color: #333;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to right, #4a00e0, #8e2de2);
            color: white;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero h1 {
            font-size: 4rem;
            animation: fadeInDown 1s ease-in-out;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1.5s ease-in-out;
        }

        .hero a {
            padding: 10px 30px;
            background-color: #ff7b54;
            color: white;
            border-radius: 5px;
            font-size: 1.2rem;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }

        .hero a:hover {
            background-color: #ff3c2f;
        }

        /* Animation */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        section {
            padding: 60px 0;
        }

        .skills-section {
            background-color: #f4f4f4;
        }

        .skills-list i {
            color: #8e2de2;
        }

        .projects-section h2 {
            color: #8e2de2;
        }

        .projects-section .card {
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Permite que todas las cards tengan la misma altura */
        }

        .projects-section .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .projects-section .card img {
            width: 100%; /* Asegura que la imagen ocupe todo el ancho de la card */
            height: 200px; /* Define un alto fijo para mantener la estructura rectangular horizontal */
            object-fit: cover; /* Recorta la imagen para que llene el contenedor sin distorsión */
            border-radius: 5px;
        }

        /* Button Styles */
        .btn-custom {
            background-color: #8e2de2;
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            transition: background-color 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #00ff00;
        }

        /* Contact Section */
        .contact-section {
            background: #343a40;
            color: white;
        }

        .contact-section .form-control,
        .contact-section .btn {
            border-radius: 30px;
        }

        footer {
            background-color: #222;
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        footer a {
            color: #ff7b54;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #ff3c2f;
        }