@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #0a0a1a; /* Dark blue-black background */
    color: #e0e0e0; /* Light grey text */
    overflow-x: hidden;
}

.header {
    background-color: rgba(10, 10, 26, 0.8);
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: calc(100% - 100px);
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header h1 {
    margin: 0;
    font-size: 1.8em;
    color: #ffffff;
    font-weight: 700;
}

.header nav {
    display: flex;
    gap: 25px;
}

.header a {
    text-decoration: none;
    color: #e0e0e0;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 400;
}

.header a:hover, .header a.active {
    background-color: #007bff;
    color: #ffffff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 50px;
    background: linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.7)), url('../images/saba hameed FaceBook Introduction.png') no-repeat center center/cover;
}

.hero-content {
    max-width: 50%;
    animation: slideInFromLeft 1s ease-out;
}

.hero h2 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: -webkit-linear-gradient(45deg, #007bff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.cta-button {
    background: linear-gradient(45deg, #007bff, #8a2be2);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.features {
    padding: 100px 50px;
    text-align: center;
}

.features h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: #00aaff;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1em;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer {
    background-color: #0a0a1a;
    color: #aaa;
    text-align: center;
    padding: 20px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
