body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    

}

.h3-black, .p-black {
    color: black !important;
}

@media(max-width:1200px) {
    .container {
        width: 100%;
        margin-top: 10%;

    }
}

@media (max-width: 600px) {

    .container {
        width: 100%;
    }
}


.fullscreen-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

/* Floating Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: float 4s ease-in-out infinite;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    padding: 20px 40px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.scroll-btn .chevron {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.scroll-btn:hover .chevron {
    background: rgba(255, 255, 255, 0.4);
    animation: pulse 1s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-20px); }
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}



.container-fluid {
    margin-top: 0;
    padding: 0 15px;
}

/* Apply font to all h1 elements */
h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Optionally, target specific h1 elements with the section-title class */
.section-title {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3rem; /* Match existing size */
    font-weight: 700; /* Match existing weight */
}

.social-links a.social-link {
    color: #d32f2f;                    /* Strong red (Material Red 700) */
    font-size: 1.6rem;
    margin: 0 12px;
    transition: all 0.3s ease;
}

.social-links a.social-link:hover {
    color: #b71c1c;                    /* Darker red on hover */
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(211, 47, 47, 0.4);
}