body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    
}
p{
    font-size: 1.6rem !important;
}

.h3-black, .p-black {
    color: black !important;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
}

.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); }
}

.fancy-heading {
    position: relative;
    top: -35vh;
    left: 3vw;
    text-align: left;
    font-size: clamp(1rem, 6vw, 3.6rem) !important;
    font-weight: 800;
    background: linear-gradient(90deg, #ff4b2b, #ff416c, #ff9966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1.5s ease-out;
    letter-spacing: clamp(1px, 0.5vw, 2px);
}

.durapac-logo{
    position: relative;
    left: 3vw;
    top:1vh;
    width: 65vw !important;
    height: 30vh; 

}
.fancy-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c, #ff9966);
    animation: underlineGrow 2s ease forwards 1.2s;
    border-radius: 5px;
}

.hover-img {
    object-fit: cover;
    width: 80%;
    max-width: 90vw;
    height: auto;
    max-height: 80vh;
    margin-top: 2vh;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    border-radius: 15px;
}

/* Hover animation */
.hover-img:hover {
    transform: scale(1.07);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(px);
    }
}

@keyframes underlineGrow {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: clamp(40px, 10vw, 80px);
        opacity: 1;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .fancy-heading {
        top: -5vw;
        font-size: clamp(1.5rem, 6vw, 3rem);
        letter-spacing: 1px;
    }

    .hover-img {
        max-width: 95vw;
        max-height: 60vh;
        margin-top: 1vh;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }

    .fancy-heading {
        font-size: clamp(1.2rem, 5vw, 2.5rem);
        top: -3vw;
    }

    .hover-img {
        max-width: 100%;
        max-height: 50vh;
    }
}

@media (max-width: 400px) {
    .container {
        margin-top: 5%;
        padding: 0 5px;
    }

    .fancy-heading {
        font-size: clamp(1rem, 4vw, 2rem);
        letter-spacing: 0.5px;
    }

    .hover-img {
        max-width: 100%;
        max-height: 40vh;
        border-radius: 10px;
    }
    
}

.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);
}

.text-muted{
    font-size: large !important;
}