/* Fonts and General Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ffd700; /* Gold */
}

/* Hero Section */
.hero {
    position: relative;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 10%;
    padding-top: 3%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); /* Reduced opacity for better visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 100%;
    padding: 0 20px;
    animation: fadeInH 1.5s ease-in-out;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem; /* Increased font size */
    font-weight: 900;
    margin-bottom: 10%; /* Reduced gap between "Your Voice." and "Our Expertise." */
    line-height: 0.8;
    text-transform: uppercase;
}


.hero h1 span {
    display: block;
    color: #fff; /* White for "Your Voice." */
    margin-bottom: 0pxx;
    font-size: 6rem; /* Larger font size */
    font-weight: 700;
}

.hero h1 strong {
    color: #ffd700; /* Gold for "Our Expertise." */
    font-size: 5.5rem; /* Matches size with "Your Voice." */
    padding-bottom: 5%;
}

.hero p {
    font-size: 1.6rem; /* Slightly increased font size */
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero button {
    background-color: #ffd700; /* Gold */
    color: #000;
    padding: 15px 40px;
    border: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem; /* Increased button font size */
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.6);
}

.hero button:hover {
    background-color: #ffcc00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0px 8px 20px rgba(255, 215, 0, 0.8);
}

/* Accessibility and Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.9rem;
    }

    .hero h1 span {
        font-size: 3.5rem;
    }

    .hero h1 strong {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .hero button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Keyframes for Fade-In Animation */
@keyframes fadeInH {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

