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

html {
    height: 100%;
    background-color: #000000;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    color: #FFFFFF;
    background-color: transparent;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 50px 60px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container img {
    max-height: 70px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.7);
}

.metric-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.bottom-content {
    padding-bottom: 0;
}

.metric-item {
    flex-basis: 30%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    border-radius: 10px;
    padding: 20px;
}

.metric-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05);
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.metric-label {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-container {
    margin-top: 4rem;
}

.cta-button {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFFFFF;
    color: #000000;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


footer {
    width: auto;
    position: fixed;
    right: 60px;
    bottom: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }


/* --- Media Queries for Mobile Responsiveness --- */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    main {
        justify-content: space-between;
        gap: 30px;
    }

    .logo-container img {
        max-height: 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: left;
        margin-top: 20px;
    }

    .bottom-content {
        margin-top: auto;
        padding-bottom: 0;
    }

    .metric-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .metric-item {
        text-align: left;
    }

    .metric-value {
        font-size: 1.8rem;
    }

.metric-label {
        font-size: 0.9rem;
    }

    .cta-container {
        text-align: center;
        margin-top: 40px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }

    footer {
        position: relative;
        text-align: center;
        font-size: 0.9rem;
        padding: 20px 0 0;
        right: auto;
        bottom: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

.metric-value {
        font-size: 1.6rem;
    }

.metric-label {
        font-size: 0.8rem;
    }

    .modal-content {
        width: 90%;
        max-width: 384px; /* md:w-96 */
        padding: 1.5rem;
        margin-top: 5vh;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1rem;
    }

    .modal-content h2 {
        font-size: 1.25rem;
    }

    #contact-form {
        gap: 1rem;
    }
}
/* --- Contact Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin: 10vh auto;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 480px;
    border-radius: 1rem;
    position: relative;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-content h2 {
    font-weight: 700;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    background-color: rgba(63, 63, 70, 0.4);
    text-decoration: none;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    width: 100%;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

#contact-form button {
    width: 100%;
    background: #FFFFFF;
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

#contact-form button:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}