/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* body {
    background-image: url('landingpagebg.png');
    /* background-color: #f4f4f4; 
    
    background-color: #1414142c;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-color: rgba(177, 190, 226, 0.729);
    background-blend-mode: overlay;
    color: #333;
} */

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    /* background:transparent !important; */
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn-login {
    background-color: #2563eb;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #1d4ed8;
}

/* Hero Section Styling */
.hero {
    /* Cool gradient background instead of an image */
    /* background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%); */
    height: 80vh; /* 80% of the screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: rgb(230, 233, 254);
    backdrop-filter: blur(12px);
    background-blend-mode: overlay;
    color: black;
    transition: background 0.3s;
    
}

.btn-secondary {
    background: #ffc2e5;
    border: 2px solid white;
    transition: background 0.3s;
    color: black;
}

.btn-primary:hover {
    background-color: #aed1fe;
}

.btn-secondary:hover {
    background-color: #aed1fe;
}

/* Features Section Styling */
.features {
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: white;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    /* background: white; */
    background: rgba(255, 255, 255, 0.85);
    
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px); /* Lift up effect on hover */
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #203ed2;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}