/* © 2025 ByteWebster. All Rights Reserved.  */
/*Unauthorized copying, modification, distribution, or use of this code in any form is strictly prohibited and may result in legal action.*/

/*Hero Section (header style)*/
    
.mh-cinematic-hero {
    position: relative;
    overflow: hidden;
    min-height: 42vh;
    display: flex;
    align-items: center;
    background: #0b0f18;
}

.bg-wrap {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(.55) contrast(.96);
    z-index: 1;
    will-change: transform;
}

.mandala-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.30;
}

.mandala {
    position: absolute;
    width: 550px;
    height: 550px;
    opacity: 0.55;
    filter: drop-shadow(0 0 18px rgba(255, 200, 120, .35));
}

.mandala-main {
    animation: rotateMandala 38s linear infinite;
}

.mandala-second {
    animation: rotateReverse 52s linear infinite;
    transform: scale(0.72);
    opacity: 0.35;
}

@keyframes rotateMandala {
    0% { transform: rotate(0deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1.05); }
}

@keyframes rotateReverse {
    0% { transform: rotate(360deg) scale(0.72); }
    100% { transform: rotate(0deg) scale(0.72); }
}

.radial-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
      rgba(255,180,70,.22) 0%,
      rgba(255,140,40,.12) 40%,
      rgba(0,0,0,.6) 100%);
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0.65;
    animation: pulseGlow 7s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.45; transform: scale(1); }
    100% { opacity: 0.75; transform: scale(1.13); }
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,240,180,0.5);
    border-radius: 50%;
    filter: blur(3px);
    animation: floatParticle 6s infinite ease-in-out;
    z-index: 3;
}

.p1 { top: 20%; left: 15%; animation-duration: 7s; }
.p2 { top: 40%; right: 12%; animation-duration: 9s; }
.p3 { bottom: 15%; left: 25%; animation-duration: 11s; }
.p4 { bottom: 30%; right: 20%; animation-duration: 8s; }
.p5 { top: 55%; left: 45%; animation-duration: 10s; }

@keyframes floatParticle {
    0%   { transform: translateY(0px) scale(0.9); opacity: .4; }
    50%  { transform: translateY(-25px) scale(1.1); opacity: .75; }
    100% { transform: translateY(0px) scale(0.9); opacity: .4; }
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(8,8,12,0.4) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(255,110,35,0.10) 100%);
    z-index: 4;
}

.z-top { position: relative; z-index: 10; text-align:center; padding:40px 0; }

.badge-offer {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    color: #ffd27a;
    padding: 10px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    font-weight: 700;
}

.cine-title {
    font-size: 3.6rem;
    font-weight: 900;
    margin: .6rem 0;
    color: #fff;
    text-shadow: 0 12px 30px rgba(0,0,0,.7);
}

.cine-lead {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
    font-size: 1.05rem;
}

.btn-cine-primary {
    background: linear-gradient(180deg,#ffd27a,#ffb340);
    color: #23140c;
    font-weight: 800;
    padding: 12px 32px;
    box-shadow: 0 16px 40px rgba(255,179,64,.18);
}

.btn-cine-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 10px 28px;
    font-weight: 700;
}

.cine-scroll { margin-top: 36px; border:none; background:transparent; cursor:pointer; }
.cine-scroll .dot {
    width: 18px; height: 28px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.26);
    position: relative;
}
.cine-scroll .dot::after {
    content:'';
    width:6px; height:6px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    left:50%; top:8px;
    transform:translateX(-50%);
    animation: cine-scroll 1.4s infinite;
}
@keyframes cine-scroll {
    0% { top:8px; opacity:1 }
    100% { top:22px; opacity:0 }
}

/*About*/

.mukti-about-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #ffffff;
}

.about-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(255,215,140,0.20) 0%,
        rgba(255,255,255,1) 60%);
    z-index: 1;
}

.about-aura {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
        rgba(255,215,140,0.25),
        rgba(255,255,255,0));
    opacity: 0.35;
    filter: blur(100px);
    animation: auraPulse 7s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes auraPulse {
    0% { transform: translateX(-50%) scale(1); opacity: .30; }
    100% { transform: translateX(-50%) scale(1.15); opacity: .55; }
}

.about-particles .ap {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(229,57,53,0.50);
    border-radius: 50%;
    filter: blur(3px);
    animation: particleFloat 6s infinite ease-in-out;
    z-index: 2;
}

.p1 { top: 22%; left: 23%; }
.p2 { top: 38%; right: 20%; }
.p3 { bottom: 28%; left: 14%; }
.p4 { bottom: 12%; right: 32%; }
.p5 { top: 58%; left: 50%; }

@keyframes particleFloat {
    0% { transform: translateY(0px) scale(.8); opacity: .45; }
    50% { transform: translateY(-20px) scale(1.1); opacity: .90; }
    100% { transform: translateY(0px) scale(.8); opacity: .45; }
}

.about-content-box {
    position: relative;
    z-index: 5;
    padding: 45px 40px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 28px;
}

.about-title .underline {
    width: 90px;
    height: 4px;
    margin: 12px auto 0;
    background: #e53935;
    border-radius: 5px;
}

.about-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

@media(max-width:991px){
    .about-title { font-size: 2rem; }
    .about-content-box { padding: 35px 22px; }
}

/*Mukti Dham Route Section*/

.mukti-route-section {
    position: relative;
    padding: 35px 0;
    background: #ffffff;
    overflow: hidden;
}

.route-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgb(255 215 140 / 0%) 0%, rgb(255 255 255 / 0%) 70%);
    z-index: 1;
}

.route-aura {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
        rgba(255,215,140,0.28),
        rgba(255,255,255,0));
    filter: blur(120px);
    opacity: 0.45;
    animation: routeAuraPulse 9s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes routeAuraPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.35; }
    100% { transform: translateX(-50%) scale(1.18); opacity: 0.65; }
}

.route-main-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #e53935;
    position: relative;
    text-shadow: none;
}

.route-underline {
    display: block;
    width: 100px;
    height: 4px;
    background: #e53935;
    margin: 12px auto 0;
    border-radius: 20px;
    animation: routeUnderlineGlow 3s ease-in-out infinite alternate;
}

@keyframes routeUnderlineGlow {
    0% { box-shadow: 0 0 8px rgba(229,57,53,0.4); }
    100% { box-shadow: 0 0 16px rgba(229,57,53,0.75); }
}

.route-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    z-index: 5;
    transition: 0.35s ease;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.route-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #d84336;
    margin-bottom: 10px;
}

.route-intro {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.route-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-features li {
    color: #444;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 0.98rem;
}

.route-features li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    color: #e53935;
    font-size: 0.9rem;
}

.route-btn {
    background: linear-gradient(180deg,#ffd98d,#ffc04d);
    color: #3a2a20;
    font-weight: 800;
    padding: 10px 26px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 12px 26px rgba(255,183,77,.25);
    transition: 0.3s ease;
}

.route-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(255,183,77,.35);
}

@media(max-width:991px){
    .route-main-title { font-size: 2rem; }
    .route-card { padding: 28px 22px; }
}

/*Mukti Dham Why Choose Us Section*/

.mukti-why-section {
    position: relative;
    padding: 35px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgb(255 225 170 / 0%) 0%, rgb(255 255 255 / 0%) 80%);
    z-index: 1;
}

.why-aura-left,
.why-aura-right {
    position: absolute;
    width: 450px;
    height: 450px;
    filter: blur(120px);
    opacity: 0.38;
    z-index: 1;
}

.why-aura-left {
    top: -10%;
    left: -12%;
    background: radial-gradient(circle,
        rgba(255,210,150,0.32),
        rgba(255,255,255,0));
    animation: whyAuraLeft 8s ease-in-out infinite alternate;
}

.why-aura-right {
    bottom: -12%;
    right: -10%;
    background: radial-gradient(circle,
        rgba(255,190,130,0.28),
        rgba(255,255,255,0));
    animation: whyAuraRight 9s ease-in-out infinite alternate;
}

@keyframes whyAuraLeft {
    0% { transform: scale(1); opacity: .32; }
    100% { transform: scale(1.15); opacity: .55; }
}

@keyframes whyAuraRight {
    0% { transform: scale(1); opacity: .28; }
    100% { transform: scale(1.12); opacity: .52; }
}

.why-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #e53935;
    margin-bottom: 10px;
    text-align: center;
}

.why-underline {
    width: 90px;
    height: 4px;
    background: #e53935;
    margin: 12px auto 0;
    border-radius: 20px;
    animation: whyUnderlineGlow 2.8s ease-in-out infinite alternate;
}

@keyframes whyUnderlineGlow {
    0% { box-shadow: 0 0 6px rgba(229,57,53,0.35); }
    100% { box-shadow: 0 0 14px rgba(229,57,53,0.75); }
}

.why-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 42px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: 0.32s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}

.why-icon-wrap {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff8e7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(255,200,130,0.32);
}

.why-icon i {
    font-size: 1.9rem;
    color: #e53935;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 10px;
}

.why-card-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 5px;
}

@media(max-width:991px){
    .why-title { font-size: 2rem; }
    .why-card { padding: 32px 22px; }
    .why-icon-wrap { width: 75px; height: 75px; }
}

/*Gallery Section*/

.mukti-gallery-section {
    position: relative;
    padding: 30px 0;
    background: #ffffff;
    overflow: hidden;
}

.gallery-bg,
.gallery-aura {
    display: none;
}

.gallery-title {
    color: #e53935;
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
}

.gallery-underline {
    display: block;
    width: 90px;
    height: 4px;
    margin: 12px auto 0;
    background: #e53935;
    border-radius: 20px;
}

.gallery-item {
    height: 260px; 
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
    filter: brightness(0.97);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(1);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #ffdf9a, #ffc45a) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.22;
    pointer-events: none;
    transition: 0.35s ease;
}

.gallery-item:hover::before {
    opacity: 0.35;
}

@media(max-width:991px){
    .gallery-title { font-size: 2rem; }
    .gallery-item { height: 220px; }
}

@media(max-width:575px){
    .gallery-item { height: 200px; }
}

/*FAQ Section*/

.mukti-faq-section-full {
    padding: 30px 0;
    background: #ffffff;
}

.faq-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #e53935;
    margin-bottom: 8px;
}

.faq-underline {
    width: 90px;
    height: 4px;
    background: #e53935;
    border-radius: 20px;
    margin: 12px auto 0;
    display: block;
}

.faq-columns {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    outline: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 800;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-icon {
    width: 42px;
    height: 42px;
    background: #fff8e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255,200,130,0.25);
}

.faq-icon i {
    font-size: 1.2rem;
    color: #e53935;
}

.faq-question .arrow {
    transition: 0.3s ease;
    color: #e53935;
}

.faq-item.active .arrow {
    transform: rotate(-180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 350px;
}

@media(max-width: 991px) {
    .faq-columns {
        flex-direction: column;
        gap: 28px;
    }
}

/*CTA Section*/

.mukti-cta-open {
    position: relative;
    padding: 30px 0 80px;
    background: #ffffff;
    overflow: hidden;
    text-align: center;
}

.cta-sky,
.cta-horizon,
.cta-gold-left,
.cta-gold-right {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: blur(110px);
    opacity: 0.28;
}

.cta-sky {
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(255,225,170,0.35),
        rgba(255,255,255,1) 70%);
}

.cta-horizon {
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 250px;
    background: radial-gradient(circle,
        rgba(255,210,150,0.28),
        transparent 70%);
}

.cta-gold-left {
    left: -8%;
    top: 40%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
        rgba(255,210,150,0.28),
        transparent);
}

.cta-gold-right {
    right: -8%;
    top: 38%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
        rgba(255,190,130,0.28),
        transparent);
}

.cta-open-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #e53935;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.cta-title-line {
    display: block;
    width: 110px;
    height: 4px;
    background: #e53935;
    border-radius: 10px;
    margin: 12px auto 0;
}

.cta-open-desc {
    color: #555;
    font-size: 1.18rem;
    max-width: 750px;
    margin: 0 auto 32px;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

.cta-open-btn {
    background: #e53935;
    color: #ffffff;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    display: inline-block;
    box-shadow: 0 12px 28px rgba(229,57,53,0.25);
    transition: 0.3s ease;
    z-index: 10;
    position: relative;
}

.cta-open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(229,57,53,0.32);
}

.cta-open-contact p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 6px;
    position: relative;
    z-index: 10;
}

@media(max-width:991px){
    .cta-open-title { font-size: 2.2rem; }
}

.cta-content-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 35px;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.cta-contact-card {
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.cta-contact-card i {
    color: #e53935;
    font-size: 1.1rem;
}

.cta-contact-card span {
    color: #444;
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

@media(max-width:575px){
    .cta-open-title {
        font-size: 1.7rem;
        
    }
}