/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 1;
    padding: 0;
    background: linear-gradient(to right, #ffffff, #f3f3f3);
    color: #333;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* Navigation Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between links */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover Effect */
nav ul li a:hover {
    color: #007bff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 50px;
    overflow: hidden;
}

/* Hero Text */
.hero-text {
    max-width: 40%;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.hero-text .cta {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.hero-text .cta:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Hero Image - Adjusted for All Screens */
.image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 1750px; /* Default smaller size */
    max-width: 80%; /* Image scales with screen */
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .hero-text {
        max-width: 80%;
    }
    .profile-img {
        width: 200px; /* Adjust for smaller screens */
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .profile-img {
        width: 150px; /* Smaller for mobile */
        max-width: 60%;
    }
}
