@font-face {
    font-family: 'Compel Black Semi Expanded';
    src: url('assets/compel-blacksemiexpanded-csdemo.ttf') format('truetype');
    font-weight: 900;
    /* Black weight is typically 900 */
    font-style: normal;
    font-stretch: semi-expanded;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    height: 100vh;
}

h1,
h2 {
    font-family: 'Compel Black Semi Expanded', Impact, sans-serif;
}

.content-info li {
    list-style: none;
}

.text-yellow {
    color: #ffc52c;
}

.border-yellow {
    border-color: #ffc52c;
}

.main-container {
    display: flex;
    flex-direction: column;
    height: 99vh;
    max-height: 100%
    /* background-color: #4e5b62; */
}

.hero-section {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

.content-container {
    text-align: center;
    color: white;
    padding: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.logo-container {
    margin-bottom: 1.8rem;
}

.logo {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    background: transparent;
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
}


@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle,
.content-info ul li {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: .3rem;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-custom {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    min-width: 150px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #4a4a4a 0%, #ffc52c 100%);
    border: none;
    box-shadow: 0 3px 12px rgba(68, 68, 68, 0.4);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #ed6661 100%);
    /*transform: translateY(-2px);
             box-shadow: 0 6px 18px rgba(68, 68, 68, 0.6); */
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid #ffc52c;
    color: white;
}

.btn-outline-custom:hover {
    background: rgba(255, 197, 44, 0.65);
    /* transform: translateY(-2px); */
    color: #000;
}

.btn-outline-custom:hover i {
    color: #000 !important;
}

.partners-section {
    /* backdrop-filter: blur(8px); */
    padding: 1.5rem 1rem;
    flex-shrink: 1;
}

.partners-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
    opacity: 0.85;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.partner-logo {
    height: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
    /* filter: grayscale(100%); */
}

.partner-logo:hover {
    opacity: 1;
    /* filter: grayscale(0%); */
    transform: scale(1.1);
}

/* Modal styling */
.modal-content {
    background: linear-gradient(135deg, #4e5b62 100%, #ffc52c 50%);
    border: none;
    border-radius: 16px;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 197, 44, 0.9);
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-title span {
    font-size: 13px;
    display: block;
    color: white;
    font-weight: 600;
    margin-top: 5px;
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.2rem;
}

.btn-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 230px;
    }

    .btn-custom {
        margin: 0.4rem 0;
        width: 100%;
        max-width: 220px;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
    }

    .partners-logos {
        gap: 1.2rem;
    }

    .partner-logo {
        height: 30px;
    }

    .partners-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-body {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        height: 92vh;
    }
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .logo {
        max-width: 160px;
    }
    /*.partners-section {*/
    /*    position: absolute;*/
    /*    bottom:20px;*/
    /*}*/

    .partners-logos {
        gap: 1rem;
    }

    .partner-logo {
        height: 28px;
    }

    .btn-custom {
        padding: 0.55rem 1.3rem;
        font-size: 0.85rem;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-content {
        border-radius: 12px;
    }
}

/* Hide video on mobile and show solid background instead 
@media (max-width: 768px) {
    .background-video {
        display: none;
    }

    .video-overlay {
        background: #666;
    }
}*/