* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f4f4;
    color: #222;
}

/* Top Line Bar */
.top-bar {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-right: 15px;
}

.title-group h1 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: .3px;
    color: #444;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('your-background.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 14px;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-btn {
    padding: 12px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #007b5e;
    color: #fff;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #005f47;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
