/* logo text css  */
.text-logo-gallery {
    font-size: 30px;
    font-weight: 900;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    /* font-family: 'Poppins', sans-serif; */
    position: relative;
    transition: all 0.4s ease;

    /* Premium Red Gradient */
    background: linear-gradient(90deg, #b30000, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Soft professional depth */
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.15);
}

.ultra-navbar.scrolled .text-logo-gallery {
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 3px 8px rgba(255,0,0,0.25);
}

/* ==========================================
   RED HERO STYLE PAGE HEADER
========================================== */
.page-header-red {
    position: relative;
    min-height: 320px;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    text-align: center;
    overflow: hidden;
}

/* Container Fix */
.page-header-red .container {
    position: relative;
    z-index: 2;
}

/* Soft Floating Glow */
.page-header-red::before,
.page-header-red::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    animation: floatGlow 6s ease-in-out infinite alternate;
}

.page-header-red::before {
    top: -120px;
    left: -120px;
    background: rgba(229, 57, 53, 0.15);
}

.page-header-red::after {
    bottom: -120px;
    right: -120px;
    background: rgba(229, 57, 53, 0.12);
}

/* Floating Animation */
@keyframes floatGlow {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(20px);
    }
}

/* Title Animation */
.page-header-red .header-title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 15px;
    animation: fadeSlideUp 1s ease forwards;
}

/* Subtitle */
.page-header-red .header-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 680px;
    margin: 0 auto 25px;
    line-height: 1.6;
    animation: fadeSlideUp 1.2s ease forwards;
}

/* Accent Line */
.page-header-red .header-line {
    width: 80px;
    height: 3px;
    background: #e53935;
    border-radius: 50px;
    margin: auto;
    transition: width 0.4s ease;
    animation: fadeSlideUp 1.4s ease forwards;
}

.page-header-red:hover .header-line {
    width: 120px;
}

/* Fade + Slide Animation */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

@media (max-width: 992px) {
    .page-header-red {
        padding: 120px 0 60px;
        min-height: 280px;
    }

    .page-header-red .header-title {
        font-size: 36px;
    }

    .page-header-red .header-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-header-red {
        padding: 120px 0 50px;
        min-height: 260px;
    }

    .page-header-red .header-title {
        font-size: 28px;
    }

    .page-header-red .header-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    .page-header-red .header-line {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .page-header-red {
        padding: 150px 0 10px;
        min-height: 240px;
    }

    .page-header-red .header-title {
        font-size: 30px;
    }

    .page-header-red .header-subtitle {
        font-size: 14px;
    }
}


.modal-image-box {
    max-width: 1000px;
    /* modal width control */
    max-height: 90vh;
    /* modal height control */
    margin: auto;
    background: #000;
    /* border-radius: 18px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* image cut nahi hogi */
}