.premium-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-image: url('Images/WhatsApp\ Image\ 2024-05-13\ at\ 4.06.36\ PM.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust height as needed */
    color: #fff; /* Change text color for better visibility */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle text shadow for readability */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Elegant font choice */
}



* {
   
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

.about-section {
    width: 100%;
    overflow: hidden;
}

.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio {
    padding: 4rem 2rem;
    background: #fff;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.bio-item:hover {
    transform: translateY(-10px);
}

.bio-image img {
    width: 100%;
    height: auto;
}

.bio-text {
    align-items: end;
    text-align: justify;
    padding: 1.5rem;
}

.bio-text h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bio-text p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .bio-item {
        margin-bottom: 2rem;
    }

    .bio-text h2 {
        font-size: 1.25rem;
    }

    .bio-text p {
        font-size: 0.9rem;
    }
}
