/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

/* Height of your navbar (adjust if needed) */
:root {
    --navbar-height: 90px;
}

#header-carousel {
    margin-top: -90px;
    /* pull carousel under navbar */
    padding-top: 90px;
    /* keep content safe */
}
/* FULL SCREEN */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 1s ease, visibility 1s ease;
}

/* MOVING LIGHT BACKGROUND */
.loader-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    animation: moveLight 6s linear infinite;
}

@keyframes moveLight {
    0% { transform: translate(-25%, -25%); }
    50% { transform: translate(-10%, -10%); }
    100% { transform: translate(-25%, -25%); }
}

/* CONTENT */
.loader-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* LOGO */
.loader-logo {
    width: 90px;
    opacity: 0;
    animation: logoReveal 1.5s ease forwards;
}

/* LOGO ANIMATION */
@keyframes logoReveal {
    0% {
        transform: scale(0.6) rotate(-10deg);
        opacity: 0;
        filter: blur(10px);
    }
    60% {
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
        filter: blur(0);
    }
    100% {
        transform: scale(1);
    }
}

/* LINE ANIMATION */
.loader-line {
    width: 0;
    height: 2px;
    background: #fff;
    margin: 15px auto;
    animation: lineGrow 1.5s ease forwards 0.5s;
}

@keyframes lineGrow {
    to { width: 120px; }
}

/* TAGLINE */
.loader-tag {
    color: #ccc;
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeText 1s ease forwards 1s;
}

@keyframes fadeText {
    to { opacity: 1; }
}

/* EXIT */
#loader.hide {
    opacity: 0;
    visibility: hidden;
}
body {
    background: #000000;
    margin: 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.top-bar,
.top-bar small,
.top-bar i,
.top-bar a {
    color: #ff7a00 !important;
    /* orange */
}

.about-img-small {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-img-small {
        width: 180px;
        height: 180px;
    }
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0));
}


.navbar .nav-link,
.navbar-brand,
.navbar .btn {
    color: #fff !important;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}


.navbar-logo {
    height: 64px;
    /* increased size */
    width: auto;
}

/* Large screens */
@media (min-width: 1200px) {
    .navbar-logo {
        height: 72px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-logo {
        height: 52px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
    /* adjust based on navbar height */
    background:
        radial-gradient(circle at left, rgba(201, 121, 40, 0.35), transparent 40%),
        radial-gradient(circle at right, rgba(201, 121, 40, 0.35), transparent 40%),
        #000;
}

/* Overlay glow */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-sub {
    color: #bbb;
    margin: 20px 0;
    font-size: 1.1rem;
}

/* BUTTONS */
.hero-buttons .btn-primary {
    background: #C97928;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #E38A32;
}

.hero-buttons .btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

/* TRUST */
.hero-trust {
    display: flex;
    gap: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

/* VIDEO */
.hero-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(201, 121, 40, 0.3);
}

.hero-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* MOBILE */
@media(max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-video video {
        height: 250px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
/* Section */

.causes-section {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    padding: 80px 20px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
}

/* Title */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #ffffff;
}

.causes-tag {
    display: inline-block;
    background: rgba(255, 120, 60, 0.15);
    color: #ff7a45;
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 120, 60, 0.4);
    margin-bottom: 15px;
}

/* Grid */

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */

.causes-card {
    background: rgba(255, 255, 255, 0.05);
    border-top: 4px solid #ff6a3d;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.causes-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Content */

.card-content {
    padding: 25px;
    text-align: center;
}

.category {
    display: inline-block;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
}

.card-content h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.card-content p {
    color: #ffffff;
    font-size: 14px;
}

/* Image + video */

.reel-hover {
    position: relative;
    overflow: hidden;
}

.reel-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.4s;
}

/* Hover effect */

.reel-hover:hover .reel-video {
    opacity: 1;
}

.reel-hover:hover .reel-image {
    opacity: 0;
}

/* Overlay */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: 0.4s;
}

.reel-hover:hover .overlay {
    opacity: 1;
}

/* Button */

.reel-btn {
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile */

@media(max-width:768px) {

    .section-title h2 {
        font-size: 28px;
    }

    .reel-image {
        height: 200px;
    }

    .causes-section {
        padding: 50px 20px;
    }

}


.service-item {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
/* Team Section */

.container-xxl {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    color: #ffffff;
}

/* Section Title */

.container-xxl .bg-secondary {
    background: rgba(255, 120, 60, 0.15) !important;
    color: #ff7a45 !important;
    border: 1px solid rgba(255, 120, 60, 0.4);
}

.container-xxl h1 {
    color: #ffffff;
}

/* Team Card */

.team-item {
    background: rgba(255, 255, 255, 0.05);
    border-top: 4px solid #ff6a3d;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

/* Hover Animation */

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Image */

.team-item img {
    width: 100%;
    transition: 0.4s;
}

.team-item:hover img {
    transform: scale(1.08);
}

/* Text Area */

.team-text {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff;
}

.team-text h5 {
    color: #ffffff;
    margin-bottom: 5px;
}

.team-text p {
    color: #ff9a5a !important;
    font-size: 14px;
}

/* Social Icons */

.team-social {
    margin-top: 10px;
}

.team-social .btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    color: white;
    border-radius: 50%;
    margin: 3px;
    transition: 0.3s;
}

.team-social .btn:hover {
    background: #ffffff;
    color: #ff6a3d;
}

/* Mobile */

@media (max-width:768px) {

    .team-text {
        padding: 20px;
    }

    .team-text h5 {
        font-size: 16px;
    }

}

/* ===== Reel Proof Scroll Section ===== */
/* Section */

.reel-proof {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    color: #ffffff;
    padding: 90px 20px;
}

/* Header */

.reel-proof .badge {
    background: rgba(255, 120, 60, 0.15);
    color: #ff7a45;
    border: 1px solid rgba(255, 120, 60, 0.4);
    padding: 6px 18px;
}

.reel-proof h2 {
    color: #ffffff;
}

.reel-proof p {
    color: #dddddd;
}

/* Story layout */

.reel-proof-item {
    margin-bottom: 60px;
}

/* Text box */

.proof-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6a3d;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.proof-text:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Tag */

.proof-tag {
    display: inline-block;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Quote */

.proof-text h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Description */

.proof-text p {
    color: #dddddd;
    font-size: 14px;
}

/* Client name */

.proof-text strong {
    color: #ff9a5a;
}

/* Video */

/* Video container */

.proof-video {
    max-width: 420px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Video size */

.proof-video video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
}

/* Hover effect */

.proof-video:hover video {
    transform: scale(1.05);
}

/* Scroll reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */

@media (max-width:768px) {

    .reel-proof {
        padding: 60px 20px;
    }

    .proof-text {
        margin-bottom: 20px;
    }

    .proof-video video {
        height: auto;
    }

}

/* ===============================
   FOOTER COLOR THEME ONLY
================================ */

.footer-light {
    background: #000 !important;
    color: #fff !important;
}

/* TEXT */
.footer-light h5,
.footer-light p,
.footer-light strong {
    color: #fff !important;
}

/* REMOVE BOOTSTRAP YELLOW */
.footer-light .text-warning {
    color: #fff !important;
}

/* ICONS */
.footer-light i {
    color: #fff !important;
}

/* SOCIAL ICON BUTTONS */
.footer-light .btn-square {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    border: none;
}

/* HOVER EFFECT */
.footer-light .btn-square:hover {
    background: #fff;
    color: #000 !important;
}

/* QUICK LINKS */
.footer-light .btn-link {
    color: #fff !important;
    text-decoration: none;
}

/* HOVER */
.footer-light .btn-link:hover {
    color: #fff !important;
    opacity: 0.7;
}

/* REMOVE DEFAULT ARROW ICON */
.footer-light .btn-link::before {
    display: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #000 !important;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* COPYRIGHT TEXT */
.footer-bottom strong {
    color: #fff !important;
}


/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 90px;
    z-index: 999;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    animation: pulse 2s infinite;
    transition: 0.3s;
}

/* ICON SIZE INCREASE */
.whatsapp-btn i {
    font-size: 30px;
}

/* HOVER EFFECT */
.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reel-hover {
    position: relative;
    overflow: hidden;
}

/* Image */
.reel-image {
    width: 100%;
    display: block;
}

/* Video hidden by default */
.reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show video on hover */
.reel-hover:hover .reel-video {
    opacity: 1;
}

/* Show overlay normally (on image) */
.image-overlay {
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* When hovering (video visible), hide CTA */
.reel-hover:hover .image-overlay {
    opacity: 0;
    pointer-events: none;
}

.vector-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.vector-card:hover {
    transform: translateY(-8px);
}

/* Highlighted card */
.vector-card.highlight {
    border: 2px solid var(--bs-primary);
}

/* Vector icon circle */
.vector-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.vector-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Text */
.vector-card h4 {
    margin-bottom: 10px;
}

.vector-card p {
    font-size: 0.95rem;
    color: #666;
}

/* List */
.vector-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vector-card ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Buttons */
.vector-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
}

.vector-btn.solid {
    background: var(--bs-primary);
    color: #fff;
}

/* ===== Mana Reels Theme ===== */


/* =================================================
   QUICK BOOKING – MANA REELS LIGHT THEME
================================================= */
/* SECTION */

.donate {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    position: relative;
    color: #ffffff;
}

/* Optional overlay for depth */

.donate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.donate .container {
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT */

.donate h2 {
    color: #ffffff;
}

.donate p {
    color: #dddddd !important;
}

.donate .badge {
    background: rgba(255, 120, 60, 0.15) !important;
    color: #ff7a45 !important;
    border: 1px solid rgba(255, 120, 60, 0.4);
}

/* FORM BOX */

.donate .bg-white {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border-top: 4px solid #ff6a3d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* INPUTS */

.donate input,
.donate select,
.donate textarea {
    background: rgba(255, 255, 255, 0.08) !important;
    border: none !important;
    color: #ffffff !important;
}

.donate input::placeholder,
.donate textarea::placeholder {
    color: #cccccc;
}

/* Fix select text */

.donate select {
    color: #ffffff;
}

.donate option {
    color: #000;
}

/* Focus effect */

.donate input:focus,
.donate select:focus,
.donate textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 106, 61, 0.5);
}

/* BUTTON */

.donate .btn-primary {
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    border: none;
    color: white;
}

.donate .btn-primary:hover {
    background: linear-gradient(45deg, #ff814f, #ffb27d);
}

/* MOBILE */

@media (max-width:768px) {

    .donate {
        padding: 60px 20px;
        text-align: center;
    }

}

.footer-logo {
    height: 60px;
    /* adjust as needed */
    width: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo {
        height: 48px;
    }
}

/* Counter Section */

.counter-section {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    color: #ffffff;
}

/* Counter Box */

.counter-box {
    background: rgba(255, 255, 255, 0.05);
    border-top: 4px solid #ff6a3d;
    border-radius: 12px;
    padding: 40px 20px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

/* Hover Effect */

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Numbers */

.counter-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ff9a5a;
    margin-bottom: 10px;
}

/* Labels */

.counter-box p {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

/* Mobile */

@media (max-width:768px) {

    .counter-box {
        padding: 30px 15px;
    }

    .counter-box h2 {
        font-size: 32px;
    }

}

/* Section Background */

.mana-difference {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    padding: 90px 20px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
}

/* Section Head */

.difference-head {
    text-align: center;
    margin-bottom: 60px;
}

.difference-head h5 {
    color: #ff7a45;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.difference-head h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
}

/* Layout */

.difference-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Flow column */

.difference-flow {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Flow item */

.flow-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff6a3d;
    border-radius: 10px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.flow-item:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Active item */

.flow-item.active {
    border-left: 4px solid #ff9a5a;
    background: rgba(255, 255, 255, 0.08);
}

/* Icons */

.flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

/* Flow text */

.flow-item h4 {
    margin-bottom: 6px;
    font-size: 18px;
    color: #ffffff;
}

.flow-item p {
    font-size: 14px;
    color: #dddddd;
    margin: 0;
}

/* Trust Panel */

.difference-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Panel box */

.panel-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #ff6a3d;
    backdrop-filter: blur(10px);
}

.panel-box h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

/* List */

.panel-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-box li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-box i {
    color: #ff9a5a;
}

/* CTA */

.panel-cta {
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.panel-cta p {
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
}

.panel-cta a {
    display: inline-block;
    background: white;
    color: #ff6a3d;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.panel-cta a:hover {
    background: #000;
    color: white;
}

/* Mobile */

@media (max-width:900px) {

    .difference-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .difference-head h2 {
        font-size: 28px;
    }

    .flow-item {
        padding: 18px;
    }

}

/* Workflow icon */
/* Workflow Section */

.workflow-section {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    padding: 90px 20px;
    color: #ffffff;
}

/* Title */

.workflow-section h6 {
    color: #ff7a45 !important;
    letter-spacing: 1px;
}

.workflow-section h2 {
    color: #ffffff;
}

/* Step Card */

.workflow-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 12px;
    border-top: 4px solid #ff6a3d;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Icons */

.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    color: white;
    font-size: 26px;
}

/* Titles */

.workflow-step h5 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Text */

.workflow-step p {
    color: #dddddd !important;
    font-size: 14px;
}

/* Line between steps */

.workflow-line {
    height: 4px;
    background: linear-gradient(90deg, #ff6a3d, #ff9a5a);
    margin-top: 40px;
    border-radius: 2px;
}

/* Mobile */

@media (max-width:768px) {

    .workflow-section {
        padding: 60px 20px;
    }

    .workflow-step {
        padding: 28px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .workflow-line {
        display: none;
    }

}

/* =================================================
   MANA REELS – UNIQUE LIGHT FOOTER (FINAL)
================================================= */

.footer-light {
    background: linear-gradient(180deg, #f7b155 0%, #fff3e8 100%);
    color: #080808;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #fde2cc;
}

/* ---------- LOGO ---------- */
.footer-logo {
    height: 56px;
    width: auto;
}

/* ---------- HEADINGS ---------- */
.footer-light h5 {
    color: #111827;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ---------- TEXT ---------- */
.footer-light p {
    color: #0c0c0c;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ---------- SOCIAL ICONS ---------- */
.footer-light .btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.12);
    color: #ff6a00;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-light .btn-square:hover {
    background: #ff6a00;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- QUICK LINKS ---------- */
.footer-light .btn-link {
    display: block;
    padding: 4px 0;
    margin: 0;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-light .btn-link:hover {
    color: #ff6a00;
}

/* spacing between links */
.footer-light .btn-link:not(:last-child) {
    margin-bottom: 6px;
}

/* ---------- CONTACT ICONS ---------- */
.footer-light i.fa,
.footer-light i.fab {
    color: #ff6a00;
}

/* ---------- NEWSLETTER ---------- */
.footer-light .form-control {
    border-radius: 30px;
    border: 1px solid #fde2cc;
    background: #ffffff;
    color: #070707;
}

.footer-light .form-control::placeholder {
    color: #9ca3af;
}

.footer-light .btn-primary {
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    border: none;
    border-radius: 30px;
    font-weight: 500;
}

.footer-light .btn-primary:hover {
    background: linear-gradient(135deg, #ff9a3c, #ff6a00);
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
    border-top: 1px solid #fde2cc;
    background: transparent;
    font-size: 0.9rem;
    color: #0a0a0a;
}

/* =================================================
   MOBILE OPTIMIZATION
================================================= */

@media (max-width: 767px) {

    .footer-light {
        text-align: center;
    }

    .footer-light .btn-link {
        text-align: center;
    }

    .footer-light .d-flex {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-light .form-control {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }
}


/* ===============================
   EVENT SPECTRUM – MANA REELS
================================ */

/* Section */

.event-spectrum {
    background: radial-gradient(circle at center, #5a1f0f 0%, #2a0d06 40%, #000000 100%);
    padding: 90px 20px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
}

/* Section Title */

.event-spectrum .badge {
    background: rgba(255, 120, 60, 0.15);
    color: #ff7a45;
    border: 1px solid rgba(255, 120, 60, 0.4);
    padding: 6px 18px;
    font-size: 14px;
}

.event-spectrum h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.event-spectrum p {
    color: #dddddd;
}

/* Event Cards */
/* FULL WIDTH BACKGROUND FIX */
.container-xxl.event-spectrum {
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* YOUR BACKGROUND (DESKTOP + MOBILE) */
.event-spectrum {
    background:
        radial-gradient(circle at left, rgba(201, 121, 40, 0.25), transparent 40%),
        radial-gradient(circle at right, rgba(201, 121, 40, 0.25), transparent 40%),
        #000000;
}

/* KEEP CONTENT CENTERED */
.event-spectrum .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    border-top: 4px solid #ff6a3d;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    height: 100%;
}

/* Hover effect */

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Icon */

.event-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    color: white;
    font-size: 22px;
}

/* Titles */

.event-card h6 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Text */

.event-card p {
    font-size: 14px;
    color: #dddddd;
    margin: 0;
}

/* Mobile */

@media (max-width:768px) {

    .event-spectrum {
        padding: 60px 20px;
    }

    .event-card {
        padding: 24px 16px;
    }

    .event-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

}

/* ===============================
   FULL ABOUT BLOCK – MANA REELS
================================ */
/* Dark cinematic background */
.about-section {
    background: radial-gradient(circle at left, rgba(201, 121, 40, 0.25), transparent 40%),
        radial-gradient(circle at right, rgba(201, 121, 40, 0.25), transparent 40%),
        #000000;
    width: 100%;
}

/* Remove container white gaps */
.about-section .container {
    background: transparent;
}

/* REMOVE bootstrap max width restriction */
.container-xxl.about-section {
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* Orange pill tag */
.about-tag {
    background: rgba(255, 120, 60, 0.15);
    color: #ff7a45;
    border: 1px solid rgba(255, 120, 60, 0.4);
}

/* Glass card */
.about-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff6a3d;
    backdrop-filter: blur(10px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #ff6a3d, #ff9a5a);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff814f, #ffb27d);
}

/* Outline button */
.btn-outline-primary {
    border: 1px solid #ff6a3d;
    color: #ff6a3d;
}

.btn-outline-primary:hover {
    background: #ff6a3d;
    color: white;
}

/* ===== MOBILE FIX (KEEP SAME STYLE) ===== */
/* MOBILE ORDER FIX – ABOUT SECTION */
@media (max-width: 768px){

    .about-section .row{
        display: flex;
        flex-direction: column;
    }

    /* Content first */
    .about-section .col-lg-6:nth-child(2){
        order: 1;
    }

    /* Images next */
    .about-section .col-lg-6:nth-child(1){
        order: 2;
    }

}

/* ===============================
   SPEED ADVANTAGE – ICON VERSION
================================ */

.speed-advantage {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.speed-badge {
    background: rgba(255, 106, 0, 0.15);
    color: #ff6a00;
    font-weight: 500;
}

/* Points */
.speed-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #111827;
}

.speed-points i {
    color: #ff6a00;
    font-size: 1.1rem;
}

/* Stat box */
.speed-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.speed-box i {
    font-size: 1.6rem;
    color: #ff6a00;
    margin-bottom: 8px;
}

.speed-box h3 {
    font-weight: 700;
    margin-bottom: 4px;
}

.speed-box p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Flow */
.speed-flow {
    background: #fff7f0;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 600;
}

.speed-flow span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.speed-flow i {
    color: #ff6a00;
}

/* Mobile */
@media (max-width: 767px) {
    .speed-flow {
        flex-wrap: wrap;
        font-size: 0.85rem;
    }
}

/* ===============================
   MANA REELS – PHILOSOPHY DARK
================================ */

.about-philosophy {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* SIDE GLOW */
.about-philosophy::before,
.about-philosophy::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-philosophy::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

.about-philosophy::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

/* Keep content above glow */
.about-philosophy .container {
    position: relative;
    z-index: 1;
}

/* Badge */
.philosophy-badge {
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
}

/* Headings */
.about-philosophy h2 {
    color: #ffffff;
}

/* Text */
.about-philosophy .text-muted {
    color: #9ca3af !important;
}

/* Cards */
.philosophy-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.35s;
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(201, 121, 40, 0.25);
}

/* Icons */
.philosophy-card i {
    font-size: 1.8rem;
    color: #C97928;
    margin-bottom: 14px;
}

/* Titles */
.philosophy-card h5 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Text */
.philosophy-card p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Quote Box */
.philosophy-quote {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
}

.philosophy-quote i {
    color: #C97928;
    font-size: 2rem;
    margin-bottom: 12px;
}

.philosophy-quote p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.philosophy-quote span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Button */
.about-philosophy .btn-primary {
    background: #C97928;
    border: none;
}

.about-philosophy .btn-primary:hover {
    background: #E38A32;
}

/* Glow animation */
.about-philosophy::before,
.about-philosophy::after {
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

/* Mobile */
@media(max-width:768px) {

    .about-philosophy::before,
    .about-philosophy::after {
        width: 60%;
    }

    .philosophy-card {
        padding: 22px 18px;
    }

}

/* ===============================
   LIVE REEL VOTING – MANA REELS
================================ */

.reel-vote {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.vote-badge {
    background: rgba(255, 106, 0, 0.15);
    color: #ff6a00;
    font-weight: 500;
}

/* Card */
.vote-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.vote-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Head */
.vote-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vote-head i {
    color: #ff6a00;
    font-size: 1.4rem;
}

.vote-head h5 {
    margin: 0;
    font-weight: 600;
}

/* Meta */
.vote-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 6px;
}

/* Progress */
.progress {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    margin-bottom: 12px;
}

.progress-bar {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    width: 0%;
    transition: width 0.4s ease;
}

/* Button */
.vote-btn {
    width: 100%;
    font-weight: 500;
}

.vote-btn.voted {
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
    cursor: default;
}

/* ===============================
   MANA REELS – VIDEO GALLERY DARK
================================ */

.video-gallery {
    position: relative;
    background: #000;
    overflow: hidden;
    color: #fff;
}

/* SIDE GLOW EFFECT */
.video-gallery::before,
.video-gallery::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.video-gallery::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

.video-gallery::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

/* Content above glow */
.video-gallery .container {
    position: relative;
    z-index: 1;
}

/* Header */
.video-gallery h2 {
    color: #ffffff;
}

.video-gallery .text-muted {
    color: #9ca3af !important;
}

/* ===============================
   FILTER BUTTONS
================================ */

.filter-btn {
    border: none;
    padding: 8px 20px;
    margin: 5px;
    background: #111111;
    color: #cfcfcf;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn.active,
.filter-btn:hover {
    background: #C97928;
    color: #fff;
}

/* ===============================
   VIDEO CARDS
================================ */

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16/9;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover zoom */
.video-card:hover video {
    transform: scale(1.08);
}

/* Glow on hover */
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(201, 121, 40, 0.3);
}
/* BACKDROP */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
}

/* VIDEO CONTAINER */
.video-wrapper {
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
}

/* VIDEO */
.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* CLOSE BUTTON */
.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* MOBILE PERFECT */
@media (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
        max-height: 70vh;
    }

    .video-wrapper video {
        max-height: 70vh;
        border-radius: 10px;
    }

    .video-close {
        font-size: 26px;
        top: 10px;
        right: 15px;
    }
}

/* ===============================
   VIDEO OVERLAY TEXT
================================ */

.video-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            transparent);
    color: #fff;
    font-weight: 500;
}

/* ===============================
   ANIMATION
================================ */

.video-item {
    transition: 0.4s ease;
}

/* Optional glow movement */
.video-gallery::before,
.video-gallery::after {
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

/* ===============================
   MOBILE
================================ */

@media (max-width:575px) {

    .video-card {
        aspect-ratio: 4/3;
    }

    .video-info {
        font-size: 0.85rem;
    }

}

/* ===============================
   QUICK BOOKING – DARK GLOW THEME
================================ */

.quick-booking {
    position: relative;
    background: #000;
    overflow: hidden;
    color: #fff;
}

/* SIDE ORANGE GLOW */
.quick-booking::before,
.quick-booking::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.quick-booking::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

.quick-booking::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

/* Keep content above glow */
.quick-booking .container {
    position: relative;
    z-index: 1;
}

/* ===============================
   LEFT CONTENT
================================ */

.quick-booking h2 {
    color: #fff;
}

.quick-booking p {
    color: #9ca3af !important;
}

.booking-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
    border-radius: 30px;
    font-weight: 500;
}

/* Points */
.booking-points li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #e5e7eb;
}

/* ===============================
   FORM CARD
================================ */

.booking-card {
    background: #111111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

/* Hover subtle glow */
.booking-card:hover {
    box-shadow: 0 25px 60px rgba(201, 121, 40, 0.25);
}

/* ===============================
   INPUT FIELDS
================================ */

.booking-card .form-control,
.booking-card .form-select {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
}

/* Placeholder */
.booking-card input::placeholder,
.booking-card textarea::placeholder {
    color: #6b7280;
}

/* Focus */
.booking-card input:focus,
.booking-card textarea:focus,
.booking-card select:focus {
    border-color: #C97928;
    box-shadow: 0 0 0 0.15rem rgba(201, 121, 40, 0.2);
    background: #000;
    color: #fff;
}

/* ===============================
   BUTTON
================================ */

.booking-card .btn-primary {
    background: linear-gradient(135deg, #C97928, #E38A32);
    border: none;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: 0.3s;
}

.booking-card .btn-primary:hover {
    background: linear-gradient(135deg, #E38A32, #C97928);
    box-shadow: 0 10px 25px rgba(201, 121, 40, 0.35);
}

/* ===============================
   MOBILE
================================ */

@media (max-width:767px) {

    .quick-booking {
        text-align: center;
    }

    .booking-points {
        padding-left: 0;
    }

    .booking-card {
        padding: 22px;
    }

}

/* SECTION */
/* ===============================
   REEL PLANS – CINEMATIC PREMIUM
================================ */

.reel-plans {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ORANGE EDGE GLOW */
.reel-plans::before,
.reel-plans::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
}

.reel-plans::before {
    left: 0;
    background: radial-gradient(circle at left,
            rgba(201, 121, 40, 0.4),
            transparent 60%);
}

.reel-plans::after {
    right: 0;
    background: radial-gradient(circle at right,
            rgba(201, 121, 40, 0.4),
            transparent 60%);
}

/* HEADER */
.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-tag {
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
    padding: 6px 18px;
    border-radius: 30px;
}

.plans-header h2 {
    color: #fff;
    font-size: 2.5rem;
}

/* GRID – FORCE 4 IN ROW */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

/* GLOW BORDER EFFECT */
.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #C97928, transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.plan-card:hover::before {
    opacity: 1;
}

/* HOVER */
.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 121, 40, 0.2);
}

/* PRICE */
.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #C97928;
}

/* TEXT */
.plan-card h4,
.plan-card p,
.plan-card li,
.price-sub {
    color: #fff;
}

/* LIST */
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.plan-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* EXTRA */
.extra {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* BUTTON */
.plan-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #C97928;
    color: #C97928;
    text-decoration: none;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #C97928;
    color: #000;
}

/* SOLID BUTTON */
.plan-btn.solid {
    background: #C97928;
    color: #000;
}

/* POPULAR */
.popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C97928;
    color: #000;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
}

/* HIGHLIGHT CARD */
.plan-card.highlight {
    transform: scale(1.05);
    z-index: 2;
}

/* BUSINESS STYLE */
.plan-card.business {
    border: 1px dashed rgba(201, 121, 40, 0.5);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   MANA REELS CINEMATIC ABOUT
================================ */

/* Section Background */
.about-full {
    position: relative;
    background: #000;
    overflow: hidden;
    color: #fff;
}

/* Side Glow Effect */
.about-full::before,
.about-full::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* LEFT GLOW */
.about-full::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.5),
            transparent 60%);
}

/* RIGHT GLOW */
.about-full::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.5),
            transparent 60%);
}

/* Content above glow */
.about-full .container {
    position: relative;
    z-index: 1;
}

/* Tag */
.about-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Title */
.about-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Description */
.about-desc {
    font-size: 1.05rem;
    color: #cfcfcf;
    max-width: 750px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* Divider */
.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C97928, #E38A32);
    margin: 0 auto 20px;
    border-radius: 10px;
}

/* Sub text */
.about-sub {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Buttons */
.btn-primary {
    background: #C97928;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
}

.btn-primary:hover {
    background: #E38A32;
}

.btn-outline-primary {
    border: 2px solid #C97928;
    color: #C97928;
    padding: 10px 22px;
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background: #C97928;
    color: #fff;
}

/* Glow Animation (optional premium effect) */
.about-full::before,
.about-full::after {
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

/* Responsive */
@media(max-width:768px) {

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 0.95rem;
    }

    .about-full::before,
    .about-full::after {
        width: 60%;
    }

}

/* ===============================
   MANA REELS – SPEED ADVANTAGE DARK
================================ */

.speed-advantage {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* SIDE GLOW */
.speed-advantage::before,
.speed-advantage::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.speed-advantage::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

.speed-advantage::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.45),
            transparent 60%);
}

/* Keep content above glow */
.speed-advantage .container {
    position: relative;
    z-index: 1;
}

/* Badge */
.speed-badge {
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
}

/* Headings */
.speed-advantage h2,
.speed-advantage h4 {
    color: #ffffff;
}

/* Text */
.speed-advantage .text-muted {
    color: #9ca3af !important;
}

/* Points */
.speed-points li {
    color: #e5e7eb;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.speed-points i {
    color: #C97928;
}

/* Stat cards */
.speed-box {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: 0.35s;
}

.speed-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(201, 121, 40, 0.25);
}

/* Icons */
.speed-box i {
    font-size: 1.5rem;
    color: #C97928;
    margin-bottom: 8px;
}

/* Numbers */
.speed-box h3 {
    color: #ffffff;
    font-weight: 700;
}

/* Labels */
.speed-box p {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Flow bar */
.speed-flow {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}

.speed-flow span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.speed-flow i {
    color: #C97928;
}

/* Buttons */
.speed-advantage .btn-primary {
    background: #C97928;
    border: none;
}

.speed-advantage .btn-primary:hover {
    background: #E38A32;
}

.speed-advantage .btn-outline-primary {
    border: 2px solid #C97928;
    color: #C97928;
}

.speed-advantage .btn-outline-primary:hover {
    background: #C97928;
    color: #fff;
}

/* Optional glow animation */
.speed-advantage::before,
.speed-advantage::after {
    animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

/* Mobile */
/* ===============================
   MOBILE FIX – SPEED ADVANTAGE
================================ */
@media (max-width: 768px){

    /* Center everything */
    .speed-advantage{
        text-align:center;
    }

    /* Header spacing */
    .speed-advantage h2{
        font-size:1.6rem;
        line-height:1.4;
    }

    .speed-advantage p{
        font-size:0.9rem;
    }

    /* LEFT SECTION */
    .speed-points{
        text-align:left;
        margin-top:20px;
    }

    .speed-points li{
        font-size:0.9rem;
        margin-bottom:10px;
    }

    .speed-points i{
        font-size:1rem;
    }

    /* STACK ORDER FIX */
    .speed-advantage .row.align-items-center{
        flex-direction:column;
    }

    /* RIGHT STATS GRID */
    .speed-box{
        padding:16px;
        border-radius:12px;
    }

    .speed-box h3{
        font-size:1.2rem;
    }

    .speed-box p{
        font-size:0.8rem;
    }

    .speed-box i{
        font-size:1.2rem;
    }

    /* FLOW SECTION */
    .speed-flow{
        flex-wrap:wrap;
        gap:10px;
        font-size:0.85rem;
        padding:12px;
    }

    .speed-flow span{
        gap:5px;
    }

    .speed-flow i{
        font-size:0.9rem;
    }

    /* ARROWS SMALLER */
    .speed-flow .fa-arrow-right-long{
        font-size:0.8rem;
    }

    /* CTA BUTTONS */
    .speed-advantage .btn{
        width:100%;
        margin-bottom:10px;
    }
}

/* ===============================
   PARTNER SECTION – DARK GLOW
================================ */

.partner-section {
    position: relative;
    background: #000;
    overflow: hidden;
}

/* ORANGE SIDE GLOW */
.partner-section::before,
.partner-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
}

.partner-section::before {
    left: 0;
    background: radial-gradient(circle at left center,
            rgba(201, 121, 40, 0.35),
            transparent 60%);
}

.partner-section::after {
    right: 0;
    background: radial-gradient(circle at right center,
            rgba(201, 121, 40, 0.35),
            transparent 60%);
}

.partner-section .container {
    position: relative;
    z-index: 1;
}

/* Badge */
.partner-badge {
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
}

/* ===============================
   FORM CARD
================================ */

.partner-card {
    background: #111;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    transition: 0.3s;
}

.partner-card:hover {
    box-shadow: 0 30px 70px rgba(201, 121, 40, 0.25);
}

/* ===============================
   INPUTS
================================ */

.partner-card .form-control,
.partner-card .form-select {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
}

/* Label fix */
.partner-card .form-floating label {
    color: #9ca3af;
}

/* Focus */
.partner-card input:focus,
.partner-card select:focus {
    border-color: #C97928;
    box-shadow: 0 0 0 0.15rem rgba(201, 121, 40, 0.2);
    background: #000;
    color: #fff;
}

/* ===============================
   IMAGE STYLE
================================ */

.partner-image img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
}

/* ===============================
   BUTTON
================================ */

.partner-card .btn-primary {
    background: linear-gradient(135deg, #C97928, #E38A32);
    border: none;
    border-radius: 14px;
    font-weight: 600;
}

.partner-card .btn-primary:hover {
    background: linear-gradient(135deg, #E38A32, #C97928);
    box-shadow: 0 10px 30px rgba(201, 121, 40, 0.35);
}

.wedding-plans {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* SIDE GLOW */
.wedding-plans::before,
.wedding-plans::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
}

.wedding-plans::before {
    left: 0;
    background: radial-gradient(circle at left,
            rgba(201, 121, 40, 0.35),
            transparent 60%);
}

.wedding-plans::after {
    right: 0;
    background: radial-gradient(circle at right,
            rgba(201, 121, 40, 0.35),
            transparent 60%);
}

/* TEXT FIX */
.wedding-plans h2,
.wedding-plans h4,
.wedding-plans p,
.wedding-desc {
    color: #ffffff;
}

/* TAG */
.wedding-tag {
    background: rgba(201, 121, 40, 0.15);
    color: #C97928;
    padding: 6px 18px;
    border-radius: 30px;
}

/* GRID */
.wedding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.wedding-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    position: relative;
}

/* PRICE */
.wedding-price {
    font-size: 2rem;
    font-weight: 700;
    color: #C97928;
    margin: 10px 0;
}

/* LIST */
.wedding-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.wedding-card ul li {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.wedding-card ul li i {
    color: #C97928;
    font-size: 14px;
}

/* EXTRA */
.extra-text {
    margin-top: 15px;
    color: #bbb;
    font-size: 0.85rem;
}

/* BUTTON */
.wedding-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #C97928;
    color: #C97928;
    text-decoration: none;
}

.wedding-btn.solid {
    background: #C97928;
    color: #000;
}

/* POPULAR */
.popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C97928;
    color: #000;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
}

/* HIGHLIGHT */
.wedding-card.highlight {
    border: 1px solid #C97928;
    box-shadow: 0 0 25px rgba(201, 121, 40, 0.4);
}

/* PREMIUM */
.wedding-card.premium {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 1px solid rgba(201, 121, 40, 0.5);
}

/* HOVER */
.wedding-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(201, 121, 40, 0.25);
}

/* BOTTOM */
.wedding-bottom {
    color: #aaa;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .wedding-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION BACKGROUND */
.services-dark{
    background:
        radial-gradient(circle at left, rgba(201,121,40,0.25), transparent 40%),
        radial-gradient(circle at right, rgba(201,121,40,0.25), transparent 40%),
        #000;
}

/* TAG */
.service-tag{
    background: rgba(201,121,40,0.15);
    color:#C97928;
}

/* CARD */
.service-card{
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:0.3s;
    backdrop-filter: blur(10px);
}

/* ICON */
.service-icon{
    font-size:28px;
    color:#C97928;
    margin-bottom:15px;
}

/* TEXT */
.service-card h4{
    color:#fff;
    margin-bottom:10px;
}

.service-card p{
    color:#aaa;
    font-size:0.95rem;
}

/* HOVER */
.service-card:hover{
    transform: translateY(-6px);
    border-color:#C97928;
    box-shadow:0 10px 40px rgba(201,121,40,0.25);
}
/* WhatsApp Button States */
.plan-btn.whatsapp-book,
.wedding-btn.whatsapp-book {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.plan-btn.whatsapp-book:disabled,
.wedding-btn.whatsapp-book:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.plan-btn.whatsapp-book i.fa-spinner,
.wedding-btn.whatsapp-book i.fa-spinner {
    margin-right: 0.5rem;
}

/* Hover effect for better UX */
.plan-btn.whatsapp-book:not(:disabled):hover,
.wedding-btn.whatsapp-book:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}
