/* Custom styles for the Refotoback theme header */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header-logo {
    flex: 1;
}

.header-logo img {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.header-logo a:hover img {
    opacity: 0.8;
}

.premium-image-wrapper {
    position: relative;
    padding: 10px;
    /* Space for the animated border */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    /* Clips the rotating gradient */
    z-index: 1;
}

/* The Rotating Animated Border */
.premium-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            #4facfe,
            #00f2fe,
            transparent 30%);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

/* Inner cover to create the border look */
.premium-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 4px;
    /* Border thickness */
    background: #ffffff;
    border-radius: 37px;
    z-index: -1;
}

/* ==========================================================================
   Unique Counter Section
   ========================================================================== */
/* ==========================================================================
   Unique Feature Boxes Section (White Background)
   ========================================================================== */




.features-display-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.feature-box-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box-item::before,
.feature-box-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #4facfe;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Top Left Corner */
.feature-box-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

/* Bottom Right Corner */
.feature-box-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.feature-box-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

/* Expanding Corner Animation on Hover */
.feature-box-item:hover::before,
.feature-box-item:hover::after {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 22px;
    border-color: #2f83bb;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4facfe;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.feature-box-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    transform: scale(1.1);
}




.premium-image-wrapper img {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.premium-image-wrapper:hover img {
    transform: scale(1.02);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-menu {
    flex: 2;
}

.header-menu ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.header-menu a {
    color: #fff;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menu a:hover,
.header-menu li.active a,
.header-menu li.current-menu-item a {
    color: #ffea00;
}

.footer-nav li.active a {
    color: #ffea00 !important;
}

.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-gallery {
    background: transparent;
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 1px solid rgb(255 255 255);
}

.btn-gallery:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Mission, Vision, & Goals Section
   ========================================================================== */
.mission-vision-goals-section {
    padding: 140px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.section-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.mvg-card {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border: 2px dashed transparent;
    background-clip: padding-box;
}

/* Animated Dashed Border Implementation */
.mvg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: repeating-linear-gradient(-45deg,
            #4facfe 0%, #4facfe 10px,
            transparent 10px, transparent 20px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: marchingAnts 1s linear infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mvg-card.highlight::before {
    opacity: 1;
}

.mvg-card:hover::before {
    opacity: 1;
}

@keyframes marchingAnts {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.mvg-card.highlight {
    border: none;
    box-shadow: 0 20px 45px rgba(26, 132, 201, 0.15);
}

.mvg-icon-plate {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 35px;
}


@media (max-width: 992px) {
    .mvg-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvg-card.highlight {
        transform: scale(1);
    }

    .mvg-card.highlight:hover {
        transform: translateY(-15px) scale(1);
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.7));
}

.contact-hero .content-wrap {
    position: relative;
    z-index: 10;
}

.contact-hero .page-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero .page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.contact-form-card .card-header {
    margin-bottom: 40px;
}

.contact-form-card h2 {
    font-size: 35px;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 15px;
    text-transform: capitalize;
}



.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}




.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: #4facfe;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.1);
    outline: none;
}




/* Sidebar Styles */
.info-details-box {
    background: #0b1830;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4facfe;
    font-size: 1.3rem;
    flex-shrink: 0;
}


.stylized-map-wrap {
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.stylized-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.stylized-map-wrap:hover img {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 24, 48, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.stylized-map-wrap:hover .map-overlay {
    background: rgba(11, 24, 48, 0.1);
}

.social-connect-wrap {
    text-align: center;
}






@media (max-width: 1200px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero .page-title {
        font-size: 3rem;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 40px 25px;
    }
}

/* Contact Form 7 Premium Styling */
.premium-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.premium-form p {
    margin-bottom: 0;
}

.premium-form br {
    display: none;
}

.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #ff4d4d;
    margin-top: 5px;
    font-weight: 500;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    border: 2px solid transparent !important;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background: rgba(71, 222, 114, 0.1) !important;
    border-color: #47de72 !important;
    color: #1e7e34 !important;
}

.wpcf7-validation-errors {
    background: rgba(255, 77, 77, 0.1) !important;
    border-color: #ff4d4d !important;
    color: #b30000 !important;
}


/* ==========================================================================
   Pricing V2 (Modern Design)
   ========================================================================== */
.pricing-page-main {
    background: #ffffff;
}


.pricing-v2-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 20px;
}

.pricing-v2-title span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.pricing-template-v3 .container-1200 {
    max-width: 1400px;
}

.pricing-v2-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Unique Pricing Category Tabs */
.pricing-category-tabs {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0b1830 0%, #1a3c6d 100%);
    padding: 8px;
    width: fit-content;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(11, 24, 48, 0.2);
    position: relative;
    gap: 10px;
}

.tab-btn {
    padding: 14px 45px;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active {
    background: #4facfe;
    color: #fff;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.tab-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.tab-btn[data-category="personal"]::before {
    content: "\f007";
}

.tab-btn[data-category="photographer"]::before {
    content: "\f030";
}

/* Billing Toggle */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-label.active {
    color: #0b1830;
    transform: scale(1.1);
}

/* Save Badge Design */
.save-badge {
    background: #ffd600;
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b1830;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background: #4facfe;
}

input:checked+.slider:before {
    transform: translateX(32px);
}

/* Pricing Grid */
.pricing-v2-grid-section {

    background: #ffffff;
    position: relative;
}

.pricing-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
    /* Allow different heights */
}

/* Segmented Flat Design (Image Based) */
.pricing-template-v3 {
    background: #ffffff;
}



.p-card {
    background: #ffffff;
    border: 1px solid #e1e8f0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 90%;
    min-height: 720px;
    /* Force uniform height across all plans */
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.85);
    animation: zoomInOneByOne 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomInOneByOne {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Unified Featured Card Styling */
.p-card.featured {
    background: linear-gradient(135deg, #0b1830 0%, #1e3a5f 100%);
    color: #fff;
    min-height: 600px;
    /* Taller flagship height */
    z-index: 10;
    box-shadow: 0 20px 50px rgba(11, 24, 48, 0.4);
    border: 2px solid #4facfe !important;
}

/* Solid Beam Border Animation */
.p-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid #4facfe;
    border-radius: 6px;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.5s ease-in-out;
    z-index: 5;
    pointer-events: none;
}

.p-card:hover::before {
    clip-path: inset(0 0 0 0);
}

.p-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 24, 48, 0.15);
}

.p-card.featured::before {
    clip-path: inset(0 0 0 0);
    border-color: #ffd600;
    opacity: 0.8;
    animation: borderBeamPulse 3s infinite ease-in-out;
}

@keyframes borderBeamPulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 5px #ffd600);
    }

    100% {
        opacity: 0.6;
    }
}

.p-card.featured:hover {
    transform: translateY(-10px) scale(1.02) !important;
}

/* Unique Floating Popular Badge */
.p-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd600;
    color: #000;
    font-size: 0.73rem;
    font-weight: 900;
    padding: 6px 22px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    z-index: 20;
    width: auto;
    height: auto;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}


.p-header {
    padding: 40px 20px 30px;
}





.old-price {
    display: block;
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: -5px;
}

.p-body {
    padding: 0 20px 40px;
    flex-grow: 1;
}

.p-body li {
    font-size: 15px;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
}

.p-card.featured .p-body li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #3d8ec3 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.p-card.featured .btn-subscribe {
    background: #ffffff;
    color: #0b1830;
}

/* Diagonal Ribbon */



.compare-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #0b1830;
}

.compare-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
}


/* FAQ Section V2 */
.pricing-faq-v2 {
    padding: 120px 0;
    background: #f0f9ff;
}

.container-800 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-tag {
    background: #e0f2fe;
    color: #4facfe;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0b1830;
}

.faq-top h2 span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #4a86a4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-header h4 {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1830;
}

.accordion-header i {
    color: #94a3b8;
}

.accordion-body {
    padding: 0 30px 25px 82px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-v2-grid {
        grid-template-columns: 1fr;
    }

    .pricing-v2-title {
        font-size: 2.5rem;
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 800px;
    }
}

/* ==========================================================================
   Mobile Menu & Hamburger Styles
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger to X Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 24, 48, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1150px) {
    header {
        padding: 12px 0;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 30px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 400px;
        height: 100vh;
        background: #0b1830;
        z-index: 1060;
        display: flex;
        flex-direction: column;
        padding: 100px 50px 40px;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    }

    .header-menu.active {
        right: 0;
    }

    .header-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .header-menu ul li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .header-menu.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .header-menu.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .header-menu.active ul li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .header-menu.active ul li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .header-menu.active ul li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .header-menu.active ul li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .header-menu.active ul li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .header-menu a {
        font-size: 1.3rem;
        display: block;
        padding: 12px 0;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-cta {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Specific adjustments for smaller iPhone screens */
    @media (max-width: 767px) {
        .header-menu {
            width: 85%;
            padding: 90px 40px 40px;
        }

        .header-menu a {
            font-size: 1.2rem;
        }

        .container {
            padding: 0 20px !important;
        }
    }

}

}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Premium Hero Section with Background Video */

section {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    /* Vertical alignment */
    justify-content: center;
    /* Horizontal alignment */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 10%;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.content-box {
    background: transparent;
    /* Removed Background */
    backdrop-filter: none;
    /* Removed Blur */
    -webkit-backdrop-filter: none;
    padding: 0;
    /* Removed Padding */
    border-radius: 0;
    box-shadow: none;
    border: none;
    /* Removed Border */
    max-width: 850px;
    animation: fadeInUp 1s ease-out forwards;
}


.hero-content h1 {
    font-size: 80px;
    line-height: 0.95;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 3px;
}


.hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    /* Removed bottom margin for equal top/bottom spacing */
    max-width: 600px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: #1a84c9;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 132, 201, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 80px;
        display: flex;
        align-items: center;
    }

    .content-box {
        padding: 0;
    }

    .hero-content p {
        font-size: 14px;
        margin-top: 10px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}



.shutter-animation {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-image: url('../images/shutter-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(0deg);
    pointer-events: none;
    animation: rotateShutter 60s linear infinite;
    mix-blend-mode: multiply;
}

@keyframes rotateShutter {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-image-part {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.about-image-part img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content-part {
    flex: 1;
}

.about-eyebrow {
    display: inline-block;
    color: #1a84c9;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.about-content-part .animated-title {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111827;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.animated-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealWord 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animated-title .word.f-script {
    font-family: 'Dancing Script', cursive;
    color: #1a84c9;
    font-size: 1.25em;
    font-weight: 700;
    transform: rotate(-3deg);
    margin: 0 10px;
    animation: revealWord 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatScript 3s ease-in-out infinite;
    animation-delay: 0.7s, 1.5s;
    /* revealWord starts at 0.7s, floatScript later */
}

.animated-title .word.highlight {
    color: #1a84c9;
}

.animated-title .word:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-title .word:nth-child(2) {
    animation-delay: 0.3s;
}

.animated-title .word:nth-child(3) {
    animation-delay: 0.5s;
}

.animated-title .word:nth-child(4) {
    animation-delay: 0.7s;
}

.animated-title .word:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatScript {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}



.about-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.device-support {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.support-item i {
    color: #1a84c9;
    font-size: 1.1rem;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 132, 201, 0.15);
    border-color: rgba(26, 132, 201, 0.2);
}

.about-cta {
    margin-top: 40px;
}

.marquee-section-wrapper {
    background-color: #f9fafb;
    /* Keeping consistency with About section */
    position: relative;
    z-index: 10;
}

.scrolling-marquee {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, rgba(26, 132, 201, 0.05) 0%, rgba(26, 132, 201, 0.25) 100%);
    border-top: 1px solid rgba(26, 132, 201, 0.15);
    border-bottom: 1px solid rgba(26, 132, 201, 0.15);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: moveMarquee 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.marquee-content .marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4b5563;
    transition: all 0.3s;
}

.marquee-content .marquee-item i {
    color: #1a84c9;
    font-size: 1.4rem;
    opacity: 0.8;
}

.marquee-content .marquee-item:hover {
    color: #1a84c9;
}

.marquee-content .marquee-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.marquee-content .dot {
    color: #1a84c9;
    font-size: 1.5rem;
}



.scrolling-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes moveMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Default content section spacing */
.default-content-section {
    padding: 100px 0;
    min-height: 50vh;
}

.default-content-section.full-width {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* Responsive Styles for About Us */
@media (max-width: 1024px) {
    .about-flex-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .about-image-part,
    .about-content-part {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-content-part .animated-title {
        font-size: 50px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 10px;
    }

    .about-flex-wrapper {
        flex-direction: column;
        gap: 40px;
    }



    .about-description p {
        font-size: 15px;
    }

    .about-cta {
        margin-top: 35px;
    }

    .about-cta .btn-primary {
        display: inline-block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .device-support {
        justify-content: center;
    }
}


/* Present Your Work on Any Device Section Styles */
.device-showcase-section {
    padding: 30px 10px;
    background-color: transparent;
    position: relative;
}

.main-device-image {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.main-device-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .device-showcase-section {
        padding: 20px 10px;
    }
}

.feature-highlight-section {
    padding: 80px 0;
    background-color: #f8fafc;
    /* Subtle light gray/blue background */
    position: relative;
    z-index: 15;
    /* Ensuring it stacks above the marquee section */
}

.feature-highlight-section .section-header {
    margin: 0 auto 60px;
    text-align: center;
    max-width: 1400px;
    padding: 0 5%;
}

.feature-highlight-section .section-header .eyebrow {
    display: inline-block;
    color: #1a84c9;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.feature-highlight-section .section-title {
    font-size: 60px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feature-highlight-section .section-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.feature-highlight-section .section-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-main-image {
    max-width: 1000px;
    margin: 50px auto 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.feature-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-box {
    text-align: left;
    padding: 20px;
    transition: transform 0.3s;
}

.box-icon {
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: #1a84c9;
}

.box-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.box-content {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-boxes-grid {
        grid-template-columns: 1fr;
    }

    .feature-main-image {
        margin: 40px 0 50px;
    }
}

/* Refined Split Layout for Fourth Section */
.feature-split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 5%;
}

.feature-image-column {
    flex: 1.2;
}

.feature-content-column {
    flex: 1;
}

.feature-highlight-section .feature-main-image {
    margin: 0;
    /* Override previous centered margin */
}

.feature-highlight-section .feature-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    gap: 30px;
}

.feature-highlight-section .feature-box {
    padding: 0;
    /* More compact layout */
}

/* Updated Responsive adjustments for Split Layout */
@media (max-width: 1024px) {
    .feature-highlight-section .feature-boxes-grid {
        grid-template-columns: none;
        gap: 30px;
    }

    .feature-split-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .feature-image-column,
    .feature-content-column {
        width: 100%;
    }

    .feature-highlight-section .section-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .feature-highlight-section {
        padding: 50px 0;
    }

    .feature-highlight-section .section-title {
        font-size: 45px;
    }

    .feature-highlight-section .feature-boxes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-box {
        text-align: center;
        padding: 10px;
    }

    .box-icon {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .box-title {
        font-size: 1.25rem;
    }

    .feature-split-wrapper {
        gap: 40px;
    }
}

/* Feature Section Background Animation */
.feature-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    top: 10%;
    left: 5%;
    animation: floatingOrb 20s infinite alternate ease-in-out;
}

.glow-orb.blue {
    top: 60%;
    left: 70%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    animation-delay: -5s;
}

.digital-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.02;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Subtle scanlines to imply video screen */
.feature-bg-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.01) 50%);
    background-size: 100% 4px;
    opacity: 0.3;
}

@keyframes floatingOrb {
    0% {
        transform: translateY(0) scale(1.1);
    }

    100% {
        transform: translateY(100px) scale(1);
    }
}

/* Ensure content stays above the animation */
.feature-highlight-section .container {
    position: relative;
    z-index: 10;
}



/* Drone Particles Animation */
.drone-particle {
    position: absolute;
    bottom: -100px;
    z-index: 1;
    color: rgba(26, 132, 201, 0.08);
    /* Faint blue drones */
    animation: droneMove linear infinite;
    pointer-events: none;
    transform-origin: center;
}

.drone-small {
    font-size: 14px;
}

.drone-medium {
    font-size: 24px;
}

@keyframes droneMove {
    0% {
        transform: translate(0, 0) rotate(5deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate(0, -1200px) rotate(-5deg);
        opacity: 0;
    }
}

/* Specific icon speed adjustments for more organic feel */
.drone-particle:nth-child(even) {
    animation-timing-function: ease-in-out;
}

/* Refined Camera Particles Animation (Pure Vertical) */
.camera-particle {
    position: absolute;
    top: -100px;
    z-index: 1;
    color: rgba(26, 132, 201, 0.12);
    /* Slightly more visible blue icon */
    animation: cameraFloatVertical linear infinite;
    pointer-events: none;
    will-change: transform;
    opacity: 0;
    /* Hidden by default */
}

@keyframes cameraFloatVertical {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
        /* Show during movement */
    }

    90% {
        opacity: 0.5;
        /* Show during movement */
    }

    100% {
        transform: translateY(1200px) rotate(360deg);
        opacity: 0;
        /* Hide after movement is complete */
    }
}

/* Corner Camera Background Animation (Top-Left - Rotating Circle) */
.corner-camera-animation {
    position: absolute;
    top: -250px;
    left: -250px;
    width: 650px;
    height: 650px;
    opacity: 0.08;
    z-index: 20;
    /* Higher z-index to overlap marquee */
    pointer-events: none;
    animation: rotateShutter 80s linear infinite;
    /* Reuse the same smooth rotation */
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.1);
}

.corner-camera-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .corner-camera-animation {
        width: 400px;
        height: 400px;
        top: -150px;
        left: -150px;
    }
}

/* Cinematic Video Section Styles (Fifth Section) */
.cinematic-video-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    /* Deep, dark premium navy */
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cinematic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.video-intro {
    margin-bottom: 80px;
}

.video-eyebrow {
    color: #1a84c9;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.video-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}


.video-title span {
    color: #1a84c9;
    font-family: 'Dancing Script', cursive;
    font-size: 1.25em;
    /* Explicit size to override any global settings */
    display: inline-block;
    transform: rotate(-2deg);
}

.main-video-showcase {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 100px;
}

.cinematic-video-section {
    position: relative;
    padding: 80px 0 0 0;
    background: var(--brand-gradient);
    overflow: hidden;
}

.video-sd-card-animation {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    animation: sdCardFloat 10s ease-in-out infinite;
}

.video-sd-card-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) contrast(1.5) drop-shadow(0 0 15px rgba(26, 132, 201, 0.4));
    mix-blend-mode: screen;
    animation: sdCardRotate 20s linear infinite;
}

.video-sd-card-animation {
    position: absolute;
    bottom: -200px;
    right: -250px;
    width: 650px;
    height: 650px;
    background-image: url('../images/sd-card-sketch.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.2;
    /* Solid professional visibility */
    filter: brightness(1.8) contrast(1.2) drop-shadow(0 0 60px #ffffff);
    /* Full brilliance White */
    animation: rotateShutter 100s linear infinite;
}

@keyframes sdCardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes sdCardRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.anamorphic-player {
    position: relative;
    aspect-ratio: 2.35 / 1;
    /* Cinematic anamorphic aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.video-frame-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.5s ease, background 0.3s ease;
    z-index: 5;
}

.play-pulse {
    width: 100px;
    height: 100px;
    background: rgba(26, 132, 201, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(26, 132, 201, 0.4);
    animation: pulsePlay 2s infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Playback States */
.anamorphic-player.is-playing .video-frame-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Lighter when playing hover */
}

.anamorphic-player.is-playing:hover .video-frame-overlay {
    opacity: 1;
    pointer-events: auto;
}

.anamorphic-player.is-playing:hover .play-pulse {
    animation: none;
    /* Stop pulsing when playing hover */
    transform: scale(0.8);
}

.anamorphic-player:not(.is-playing) .play-pulse {
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 132, 201, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(26, 132, 201, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 132, 201, 0);
    }
}

.floating-vid-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatOrb 6s ease-in-out infinite alternate;
}

.orb-left {
    top: -50px;
    left: -80px;
}

.orb-right {
    bottom: -50px;
    right: -80px;
    animation-delay: -3s;
}

.orb-content {
    text-align: center;
}

.orb-content i {
    display: block;
    font-size: 2rem;
    color: #1a84c9;
    margin-bottom: 8px;
}

.orb-content span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes floatOrb {
    from {
        transform: translateY(0) rotate(-3deg);
    }

    to {
        transform: translateY(-30px) rotate(3deg);
    }
}

.video-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-item {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 950;
    color: rgba(26, 132, 201, 0.08);
    position: absolute;
    top: 5px;
    right: 20px;
    pointer-events: none;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.benefit-item p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
}

.benefit-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(26, 132, 201, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .video-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .floating-vid-orb {
        display: none;
    }


}

@media (max-width: 768px) {}

/* How it Works Section Styles (Circular Interlocking Design) */
.how-it-works-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.process-header {
    margin-bottom: 80px;
    text-align: center;
}





.process-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.process-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

/* How it Works Section Styles (Flowing Circular Process) */
.how-it-works-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.process-header {
    margin-bottom: 80px;
    text-align: center;
}

.process-eyebrow {
    color: #1a84c9;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.process-title {
    font-size: 60px;
    font-weight: 900;
    color: #111827;
    line-height: 1.1;
    text-align: center;
}

.process-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.process-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.flow-steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 80px auto 0;
    gap: 0;
}

@media (max-width: 1024px) {}

.flow-step {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.step-circle-main {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
}

.orbit-wrapper {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 230px;
    height: 230px;
    z-index: 1;
    pointer-events: none;
    animation: orbitRotate 10s linear infinite;
}

.orbit-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.orbit-path {
    fill: none;
    stroke: rgba(26, 132, 201, 0.2);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
}

.orbit-head {
    fill: #1a84c9;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flow-step:hover .orbit-wrapper {
    animation-duration: 3s;
    /* Speed up on hover */
}

/* ==========================================================================
   Premium FAQ Section Styles
   ========================================================================== */

.faq-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}



/* FAQ Header Content */
.faq-header-content {
    text-align: left;
}


.faq-main-title {
    font-size: 3.5rem;
    color: #000;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.faq-main-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtext {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Stats */
.faq-stats {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #000;
}

.stat-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Box */
.faq-cta-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta-box p {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4facfe;
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.3s;
}


@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .faq-stats {
        justify-content: center !important;
    }

    .stat-item {
        text-align: center;
    }

    .faq-main-title {
        font-size: 2.8rem;
    }

    .faq-header-content {
        text-align: center !important;
    }
}

.btn-faq-contact:hover {
    gap: 15px;
}

/* Accordion Styles */
.premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
}

.accordion-card.active {
    background: rgba(79, 172, 254, 0.05);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.q-num {
    font-size: 1rem;
    font-weight: 800;
    color: rgb(46 43 43);
    font-family: 'Montserrat', sans-serif;
}

.accordion-card.active .q-num {
    color: #1a84c9;
}

.q-title {
    flex: 1;
    font-size: 17px;
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-card.active .q-title {
    color: #000;
}

.q-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.q-icon .line,
.q-icon .line-v {
    position: absolute;
    background: #000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-icon .line {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.q-icon .line-v {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.accordion-card.active .q-icon .line-v {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-card.active .q-icon .line {
    background: #1a84c9;
}

/* Accordion Body */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card.active .accordion-body {
    max-height: 500px;
}

.body-inner {
    padding: 0 30px 30px 70px;
}

.body-inner p {
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .faq-main-title {
        font-size: 2.5rem;
    }

    .accordion-header {
        padding: 20px;
        gap: 15px;
    }

    .q-title {
        font-size: 1.1rem;
    }

    .body-inner {
        padding: 0 20px 20px 55px;
    }
}

/* ==========================================================================
   Reference Based About Banner Styles
   ========================================================================== */

/* ==========================================================================
   Reference Based About Banner Styles (Refined)
   ========================================================================== */

.about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url('../images/about-ref-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-overlay-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 24, 48, 0.95) 0%, rgba(10, 24, 48, 0.7) 100%);
    z-index: 1;
}

/* Diagonal Pattern Overlay with Animation */
.banner-overlay-geometric::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 100px);
    z-index: 2;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.banner-text-center {
    position: relative;
    z-index: 50;
    width: 100%;
}

.ref-title {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    line-height: 1;
}

.ref-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ref-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.7;
    font-size: 14px;
}

.ref-breadcrumb a:hover {
    opacity: 1;
}

.ref-breadcrumb .slash {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.ref-breadcrumb .current {
    color: #4facfe;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.scroll-down-indicator:hover {
    bottom: 35px;
    opacity: 0.8;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #4facfe;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes wheelScroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* ==========================================================================
   Vision & Story Section
   ========================================================================== */
.vision-story-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    color: #1a84c9;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    color: #0b1830;
    line-height: 1.1;
    margin-bottom: 30px;
}

.section-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
}

.vision-features {
    display: grid;
    gap: 30px;
}

.v-feature-item {
    display: flex;
    gap: 20px;
}

.v-feature-item i {
    font-size: 1.5rem;
    color: #4facfe;
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0b1830;
}

.v-feature-item p {
    color: #666;
    margin: 0;
}

/* Premium Image Frame */
.premium-image-frame {
    position: relative;
    padding: 20px;
}

.premium-image-frame img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
}

.frame-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: #0b1830;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4facfe;
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.core-values-section {
    padding: 120px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.geometric-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 40px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 172, 254, 0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.value-card:hover .card-glow {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1rem;
}

/* ==========================================================================
   Stats Banner Section
   ========================================================================== */
.about-stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0b1830;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a84c9;
}

@media (max-width: 992px) {

    .vision-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 20px;
    }
}

/* ==========================================================================
   Team Showcase Section
   ========================================================================== */
.team-showcase-section {
    padding: 120px 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: all 0.4s ease;
}

.member-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 4/5;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 24, 48, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-socials {
    bottom: 0;
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0b1830;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.member-socials a:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-5px);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 5px;
}

.member-info span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a84c9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   About CTA Section
   ========================================================================== */
.about-cta-section {
    padding: 140px 0;
    background: #0b1830;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-floating-elements div {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #4facfe;
    top: -100px;
    right: -50px;
    animation: orbMove 20s infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #00f2fe;
    bottom: -150px;
    left: -100px;
    animation: orbMove 25s infinite alternate-reverse;
}

@keyframes orbMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.about-cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}
}

/* ==========================================================================
   Home Final CTA Banner Section
   ========================================================================== */
.home-final-cta-banner {
    position: relative;
    padding: 160px 0;
    background-image: url('../images/unique-about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.cta-overlay-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.85));
    z-index: 1;
}

.cta-overlay-geometric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.cta-eyebrow {
    display: block;
    font-size: 1rem;
    color: #4facfe;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-banner-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-banner-title span {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .home-final-cta-banner {
        padding: 100px 0;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-title {
        font-size: 2.5rem;
    }


}

@media (max-width: 768px) {
    .about-ref-banner {
        padding: 120px 0 80px;
        min-height: 350px;
    }

    .ref-title {
        font-size: 45px;
    }

    .section-title {
        font-size: 45px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   New 2-Part About Us Section
   ========================================================================== */
.about-two-part-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-two-part-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-part .lead-text {
    font-size: 15px;
    color: #0b1830;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text-part .main-content {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.premium-image-wrapper {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.premium-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            #4facfe,
            #00f2fe,
            transparent 30%);
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

.premium-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #ffffff;
    border-radius: 36px;
    z-index: 2;
}

.premium-image-wrapper img {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.premium-image-wrapper:hover img {
    transform: scale(1.02);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


}


/* FAQ Section Styles (Seventh Section) */
.faq-section {


    background-image: radial-gradient(circle at 10% 20%, rgba(26, 132, 201, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.03) 0%, transparent 40%);
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;

}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-info-column {
    position: sticky;
    top: 140px;
}

.faq-eyebrow {
    color: #1a84c9;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(26, 132, 201, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(26, 132, 201, 0.1);
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.faq-title span {
    color: #1a84c9;
}

.faq-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.accordion .accordion-item {
    border-bottom: 2px solid rgba(26, 132, 201, 0.1);
    transition: all 0.3s;
}

.accordion .accordion-item:last-child {
    border-bottom: none;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1.5em 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    background: none;
    outline: none;
    transition: all 0.3s ease;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #1a84c9;
}

.accordion button .accordion-title {
    padding: 1em 4em 1em 0;
    display: block;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid #1a84c9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #1a84c9;
    transform: translate(-50%, -50%);
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background: #1a84c9;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.accordion button[aria-expanded='true'] {
    color: #1a84c9;
}

.accordion button[aria-expanded='true'] .icon {
    background: #1a84c9;
}

.accordion button[aria-expanded='true'] .icon::before {
    background: #fff;
}

.accordion button[aria-expanded='true'] .icon::after {
    height: 0;
    background: #fff;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, max-height;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 500px;
    /* Increased from user's snippet */
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 2em 0;
    color: #4b5563;
}


/* Response for FAQ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-info-column {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Responsive styles for smaller screens */
}

.flow-step.teal .step-circle-main {
    background-color: #00a9b5;
}

.flow-step.blue .step-circle-main {
    background-color: #008ecc;
}

.flow-step.navy .step-circle-main {
    background-color: #1b3b7d;
}

.flow-step.purple .step-circle-main {
    background-color: #7b2ead;
}

.step-circle-main .step-num {
    font-size: 50px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 5px;
}

.step-circle-main h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 16px;
}

.flow-connector {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    height: 80px;
    position: relative;
    margin: 0 -20px;
    z-index: 5;
}

.flow-connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.flow-path {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 2;
}

.flow-path-animated {
    fill: none;
    stroke: #1a84c9;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 10, 200;
    animation: flowMove 3s linear infinite;
}

@keyframes flowMove {
    0% {
        stroke-dashoffset: 210;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.arrowhead {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #1a84c9;
    font-size: 1rem;
    animation: arrowPulse 1s infinite alternate;
}

@keyframes arrowPulse {
    from {
        transform: translateY(-50%) translateX(0);
    }

    to {
        transform: translateY(-50%) translateX(5px);
    }
}

.flow-connector.reversed {
    transform: scaleX(-1);
}

.flow-connector.reversed .arrowhead {
    transform: translateY(-50%) scaleX(-1);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .flow-steps-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .flow-connector {
        transform: rotate(90deg);
        height: 60px;
        width: 100px;
        min-width: auto;
        margin: -10px auto;
    }

    .flow-connector.reversed {
        transform: rotate(90deg) scaleY(-1);
    }
}

/* Premium Footer Styles (Unique Section) */
.main-footer {
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    color: #fff;
    padding: 0;
    position: relative;
}

.main-footer .container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Footer CTA Banner */
.footer-cta-banner {
    transform: translateY(-50%);
    margin-bottom: -50px;
}

.cta-inner-glass {
    background: rgba(26, 132, 201, 0.95);
    background: linear-gradient(135deg, #1a84c9 0%, #0066ff 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 80px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25);
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-action .btn-primary {
    background: #fff !important;
    color: #0066ff !important;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 1rem;
}

/* Footer Main Grid */
.footer-main-content {
    padding: 60px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo span {
    color: #1a84c9;
}

.brand-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    background: #1a84c9;
    border-color: #1a84c9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 132, 201, 0.3);
}

.footer-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #1a84c9;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 13px;
    font-size: 15px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #1a84c9;
    padding-left: 8px;
}

/* Footer Newsletter */
.footer-newsletter-column p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-newsletter-form {
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px;
    transition: all 0.3s;
}

.footer-newsletter-form:focus-within {
    border-color: #1a84c9;
    box-shadow: 0 0 0 4px rgba(26, 132, 201, 0.1);
}

.footer-newsletter-form input {
    background: none;
    border: none;
    font-size: 15px;
    padding: 10px 15px;
    color: #111827;
    flex: 1;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: #6b7280;
}

.footer-newsletter-form button {
    width: 44px;
    height: 44px;
    background: #1a84c9;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter-form button:hover {
    background: #0066ff;
    transform: scale(0.95);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background: #111c3c00;
    position: relative;
    overflow: hidden;
}

.footer-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 40%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a84c9, #0066ff, transparent);
    box-shadow: 0 0 20px rgba(26, 132, 201, 0.4);
    z-index: 1;
}

.bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin: 0;
    letter-spacing: 0.5px;
}

.copyright strong {
    color: #ffea00;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bottom-utility-links {
    display: flex;
    gap: 30px;
}

.bottom-utility-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.bottom-utility-links a:hover {
    color: #fff;
}

/* Footer Mobile Responsiveness */
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand-column {
        text-align: left;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .footer-nav,
    .footer-newsletter-column {
        text-align: left;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .bottom-utility-links {
        justify-content: flex-start;
        width: 100%;
    }

    .container-1200,
    .container-1400,
    .container-1100,
    .about-flex-wrapper,
    .faq-section .container-1200,
    .cinematic-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Background Animations Optimization */
    .corner-camera-animation {
        width: 250px !important;
        height: 250px !important;
        top: -80px !important;
        left: -80px !important;
        opacity: 0.1 !important;
    }

    .shutter-animation {
        width: 280px !important;
        height: 280px !important;
        top: -100px !important;
        right: -100px !important;
    }

    .camera-particle {
        display: none;
        /* Hide for performance on iPhone */
    }

    .glow-orb {
        width: 200px !important;
        height: 200px !important;
        filter: blur(40px) !important;
    }

    .video-sd-card-animation {
        width: 300px !important;
        height: 300px !important;
        bottom: -80px !important;
        right: -100px !important;
        opacity: 0.12 !important;
    }
}

/* App Showcase Section Styles (Eighth Section) */
.app-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c82c5db 0%, #436582 50%, #4f5b6d 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.app-showcase-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.app-content-column {
    padding-right: 20px;
}

.app-eyebrow {
    color: #1a84c9;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
}

.app-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.app-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.app-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.main-cta-wrapper {
    margin-bottom: 50px;
}

.app-store-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-badge-link {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-badge-link:hover {
    background: #1a84c9;
    border-color: #1a84c9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 132, 201, 0.2);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-transform: none;
}

.badge-text small {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
}

.badge-text strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Phone Mockup Animations */
.app-visual-column {
    display: flex;
    justify-content: center;
}

.phone-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.phone-mockup {
    background: #1e293b;
    border-radius: 40px;
    padding: 10px;
    border: 8px solid #334155;
    position: relative;
    z-index: 10;
    animation: floatPhone 6s ease-in-out infinite;
    overflow: visible;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
}

.phone-mockup-shadow {
    position: absolute;
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(20px);
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    animation: shadowPulse 6s ease-in-out infinite;
}

.floating-ui-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    /* Darker Slate for High Contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    /* Prevent text wrap */
    letter-spacing: 0.5px;
}

.floating-ui-card i {
    color: #1a84c9;
    font-size: 1rem;
}

.card-1 {
    top: 15%;
    left: -110px;
    /* Shifted left to be fully visible */
    animation: floatBadge 5s ease-in-out infinite alternate;
}

.card-2 {
    top: 50%;
    right: -130px;
    /* Shifted right to be fully visible */
    animation: floatBadge 6s ease-in-out infinite alternate-reverse;
    animation-delay: -1s;
}

.card-3 {
    bottom: 10%;
    left: -100px;
    animation: floatBadge 5.5s ease-in-out infinite alternate;
    animation-delay: -2s;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotate(0.5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

/* Unique Scanning Laser Effect */
.scanning-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #1a84c9, transparent);
    z-index: 15;
    box-shadow: 0 0 15px #1a84c9;
    animation: laserMove 4s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes laserMove {

    0%,
    100% {
        top: 10%;
        opacity: 0;
    }

    5%,
    95% {
        opacity: 0.8;
    }

    50% {
        top: 90%;
    }
}

/* Rotating Globe Backglow */
.phone-glow-background {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.2) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Mini Floating Icons */
.mini-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    background: rgba(26, 132, 201, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    z-index: 20;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-1 {
    top: -30px;
    right: 20px;
    animation: miniFloat 5s infinite alternate ease-in-out;
}

.icon-2 {
    bottom: -20px;
    left: 10px;
    animation: miniFloat 5s infinite alternate-reverse ease-in-out;
    animation-delay: -2s;
}

@keyframes miniFloat {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-30px) rotate(15deg);
    }
}

@media (max-width: 1024px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }



    .app-content-column {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .app-description {
        margin: 0 auto 40px;
    }

    .app-store-badges {
        justify-content: center;
    }

    .floating-ui-card,
    .mini-icon {
        display: none;
        /* Simplify on mobile to avoid overlap */
    }
}

@media (max-width: 768px) {}

/* About Us Custom Template Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 200px 0 150px;
    background: linear-gradient(135deg, #0a0f1d 0%, #1a84c9 100%);
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/camera-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0a0f1d 90%);
    z-index: 2;
}

.about-hero .container-1200 {
    position: relative;
    z-index: 10;
}

.about-badge {
    background: rgba(26, 132, 201, 0.15);
    border: 1px solid rgba(26, 132, 201, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a84c9;
    background: #fff;
    display: inline-block;
    margin-bottom: 30px;
}

.about-main-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.about-main-title span {
    color: #1a84c9;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.main-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.floating-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a84c9;
    color: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(26, 132, 201, 0.3);
    text-align: center;
    animation: floatAnim 1s infinite alternate ease-in-out;
}

.floating-stat-box .stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.floating-stat-box .stat-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes floatAnim {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.mission-content .section-eyebrow {
    color: #1a84c9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.mission-content .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.mission-content .mission-text {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 35px;
}

.mission-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
}

.highlight-item i {
    color: #1a84c9;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: rgba(26, 132, 201, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 132, 201, 0.1);
    color: #1a84c9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: #1a84c9;
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Team Grid Section */
.team-section {
    padding: 120px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    transition: all 0.3s;
}

.member-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.team-member:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #0a0f1d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-overlay a:hover {
    background: #1a84c9;
    color: #fff;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.member-info p {
    color: #1a84c9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* About CTA Area */
.about-cta-section {
    padding: 100px 0;
    background: #fff;
}

.cta-card {
    background: #0a0f1d;
    padding: 100px 80px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: rgba(26, 132, 201, 0.1);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 45px;
    line-height: 1.1;
    position: relative;
    z-index: 5;
}

.cta-title span {
    color: #1a84c9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   Mission, Vision, & Goals Section (Themed Background)
   ========================================================================== */
.mission-vision-goals-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.section-glow-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 132, 201, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.mvg-card {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border: 2px dashed transparent;
    /* Placeholder for the dash effect */
    background-clip: padding-box;
}

/* Animated Dashed Border Implementation */
.mvg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    /* Border thickness */
    background: repeating-linear-gradient(-45deg,
            #4facfe 0%, #4facfe 10px,
            transparent 10px, transparent 20px);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    animation: marchingAnts 1s linear infinite;
    opacity: 1;
    /* Always visible for all three boxes */
    transition: opacity 0.3s ease;
}

.mvg-card.highlight::before {
    opacity: 1;
}

.mvg-card:hover::before {
    opacity: 1;
}

@keyframes marchingAnts {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.mvg-card.highlight {
    border: none;
    /* Let the animated border shine */
    box-shadow: 0 20px 45px rgba(26, 132, 201, 0.15);
}

.mvg-icon-plate {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 auto 35px;
}

.mvg-card h3 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #0b1830;
}

.mvg-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .mvg-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvg-card.highlight {
        transform: scale(1);
    }

    .mvg-card.highlight:hover {
        transform: translateY(-15px) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .mission-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-content .section-title,
    .cta-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Unique Counter Section
   ========================================================================== */
/* ==========================================================================
   Unique Feature Boxes Section (White Background)
   ========================================================================== */
.about-unique-feature-boxes {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.parallax-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
}

.features-display-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.feature-box-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    /* More tech-focused radius */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box-item::before,
.feature-box-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid #4facfe;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Top Left Corner */
.feature-box-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

/* Bottom Right Corner */
.feature-box-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
}

.feature-box-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

/* Expanding Corner Animation on Hover */
.feature-box-item:hover::before,
.feature-box-item:hover::after {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 22px;
    border-color: #2f83bb;
    /* Updated hover border color */
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4facfe;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.feature-box-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b1830;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) {
    .counter-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-display-grid {
        grid-template-columns: 1fr;
    }

    .stat-count {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&q=80&w=2000') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9), rgba(11, 24, 48, 0.7));
}

.contact-hero .content-wrap {
    position: relative;
    z-index: 10;
}

.contact-hero .page-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero .page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.contact-form-card .card-header {
    margin-bottom: 40px;
}



.contact-form-card p {
    color: #64748b;
    font-size: 14px;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}


.input-group label {
    font-weight: 700;
    font-size: 12px;
    color: #0b1830;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    padding: 18px 25px;
    background: #6babd724;
    border: 2px solid #356c961a;
    border-radius: 15px;
    font-size: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: #4facfe;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.1);
    outline: none;
}

.form-submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: #4facfe;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.form-submit-btn:hover {

    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 24, 48, 0.2);
}

/* Sidebar Styles */
.info-details-box {
    background: #0b1830;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4facfe;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.info-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.stylized-map-wrap {
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.stylized-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.stylized-map-wrap:hover img {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 24, 48, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.stylized-map-wrap:hover .map-overlay {
    background: rgba(11, 24, 48, 0.1);
}

.social-connect-wrap {
    text-align: center;
}

.social-connect-wrap h4 {
    color: #0b1830;
    margin-bottom: 20px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(11, 24, 48, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1830;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4facfe;
    color: #fff;
    border-color: #4facfe;
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero .page-title {
        font-size: 3rem;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 40px 25px;
    }

    .contact-layout-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }
}

/* ==========================================================================
   Pricing V3 (Dynamic & Refined)
   ========================================================================== */
/* Segmented Flat Design (Image Based) */
.pricing-header-v2 {
    background: transparent;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.compare-plans-section {
    padding-bottom: 80px;

}

.about-ref-banner,
.compare-plans-section {
    position: relative;
    overflow: hidden;
}

/* Unique Pricing Category Tabs */
.pricing-category-tabs {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0b183096 0%, #22628f 100%);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(11, 24, 48, 0.2);
    position: relative;
    gap: 10px;
}

.tab-btn {
    padding: 14px 45px;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 15px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}



.tab-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.tab-btn[data-category="personal"]::before {
    content: "\f007";
}

.tab-btn[data-category="photographer"]::before {
    content: "\f030";
}


.p-card {
    background: #ffffff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 80%;
    min-height: 500px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #3d8dc3;
    text-align: center;
    transition: all 0.3s ease;
}



.p-card.featured {
    background: linear-gradient(135deg, #3d8fc5 0%, #47617b 50%, #48627b 100%);
    color: #fff;
    min-height: 530px;
    transform: translateY(-20px);
    z-index: 10;
    overflow: hidden;
}

.p-card.featured::after {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -40px;
    background: #ffd600;
    color: #000;
    font-size: 13px;
    font-weight: 950;
    width: 160px;
    padding: 8px 0;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 15;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Featured Header & Body */

.p-header {
    padding: 40px 20px 20px;
}

.p-header h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.p-header .p-subtext {
    display: block;
    font-size: 15px;
    color: #64748b;

}

.p-card.featured .p-header .p-subtext {
    color: rgba(255, 255, 255, 0.7);
}

.p-price {
    font-size: 30px;
    font-weight: 950;
    color: #000;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-card.featured .p-price {
    color: #fff;
}

.p-price span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin-top: -8px;
}

.p-card.featured .p-price span {
    color: rgba(255, 255, 255, 0.7);
}

.p-body {
    padding: 0 20px 40px;
    flex-grow: 1;
}

.p-body ul {
    list-style: none;
    padding: 0;
}



.p-card.featured .p-body li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.p-footer {
    padding: 0 20px 40px;
    text-align: center;
}

.btn-subscribe {
    position: relative;
    width: 85%;
    margin: 0 auto;
    padding: 15px 10px;
    background: #3f7ba5;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.btn-subscribe span {
    position: relative;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 10;
    text-transform: uppercase;
}

.btn-subscribe .liquid {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 180px;
    background: #1a84c9;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .2);
    transition: 0.5s;
    z-index: 1;
}

.btn-subscribe:hover .liquid {
    top: -110px;
}

.btn-subscribe .liquid:after,
.btn-subscribe .liquid:before {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.btn-subscribe .liquid:before {
    border-radius: 45%;
    background: rgba(11, 24, 48, 1);
    animation: liquidAnimate 5s linear infinite;
}

.btn-subscribe .liquid:after {
    border-radius: 40%;
    background: rgba(11, 24, 48, 0.4);
    animation: liquidAnimate 10s linear infinite;
}

@keyframes liquidAnimate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* Featured Card Button Override */
.p-card.featured .btn-subscribe {
    background: #fff;
}

.p-card.featured .btn-subscribe span {
    color: #3d8fc5;
}

.p-card.featured .btn-subscribe .liquid {
    background: #ffd600;
    /* Yellow liquid for featured */
    top: -180px;
    /* Initially hidden since it's yellow on white */
}

.p-card.featured .btn-subscribe:hover .liquid {
    top: -110px;
}

.p-card.featured .btn-subscribe .liquid:before {
    background: #fff;
}

.p-card.featured .btn-subscribe .liquid:after {
    background: rgba(255, 255, 255, 0.5);
}

/* Unique Floating Popular Badge */
.p-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd600;
    /* Signature Yellow */
    color: #000;
    font-size: 0.73rem;
    font-weight: 900;
    padding: 6px 22px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    z-index: 20;
    width: auto;
    height: auto;
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* Featured Card Unique Border Glow */

.p-card-badge {
    display: none;
    /* Replaced by Ribbon */
}

/* Smooth State Transitions */
#pricing-plans-render {
    min-height: 500px;
    transition: opacity 0.3s ease;
}

.p-card {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Comparison Table - High Fidelity Full-Line Matrix */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    padding-bottom: 80px;
    table-layout: fixed;
}

.compare-table thead th {
    background: #0b1830;
    color: #fff;
    padding: 30px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table thead th:first-child {
    background: #1a84c9;
    text-align: left;
    padding-left: 25px;
    width: 25%;
    color: #fff;
    font-size: 14px;
}

.price-row td strong {
    font-size: 16px;
    font-weight: 600;
}

.compare-table tbody td {
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.2s;
}

.compare-table tbody td:first-child {
    background: #1a84c9;
    /* Matching brand blue */
    text-align: left;
    padding-left: 25px;
    font-weight: 700;
    color: #ffffff;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.compare-table tbody tr:hover td {
    background: #f3f4f6;
}

.compare-table tbody tr.price-row td {
    background: #eff6ff;
    color: #1e40af;
    font-weight: 800;
}

.compare-table tbody tr.price-row td:first-child {
    background: #146ba3;
    /* Slightly darker brand blue */
    color: #ffffff;
}

/* Featured Tier Highlighting */
.compare-table th:nth-child(4) {
    background: #ffd600;
    color: #000;
    border: 1px solid #ffd600;
}

.compare-table td:nth-child(4) {
    background: #fffef0;
    border-left: 2px solid #ffd600;
    border-right: 2px solid #ffd600;
}

.compare-table tr:hover td:nth-child(4) {
    background: #fffbeb;
}



/* FAQ Step Styling */
.step-num {
    background: #4a86a4;
    box-shadow: 0 4px 10px rgba(74, 134, 164, 0.2);
}

@media (max-width: 768px) {
    .p-card.featured {
        transform: scale(1);
        border-width: 1px;
    }
}

.pricing-v2-grid-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.pricing-v2-grid-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 650px;
    height: 650px;
    background-image: none;
    opacity: 0.1;
    z-index: 0;
    animation: rotateTag 45s linear infinite;
    pointer-events: none;
}

@keyframes rotateTag {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.compare-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 0;
    /* Creates vertical gaps between columns */
}

.compare-table th {
    background: #0b1830;
    color: #fff;
    padding: 12px 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px 12px 0 0;
}

.compare-table th:first-child {
    background: transparent;
    color: #0b1830;
    text-align: left;
    padding-left: 20px;
}

.compare-table td {
    padding: 8px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 2px solid #fff;
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s;
}

.compare-table td:first-child {
    background: transparent;
    text-align: left;
    font-weight: 700;
    color: #4a86a4;
    padding-left: 20px;
}

/* Individual Column "Box" Look */
.compare-table tr:last-child td {
    border-radius: 0 0 12px 12px;
}

.compare-table tr:hover td {
    background: #eef7ff;
    color: #0b1830;
}

.compare-table td i {
    color: #4a86a4;
    font-size: 1rem;
}

/* Highlight Featured Column (Small Event) */
.compare-table th:nth-child(4) {
    background: #b4914a;
}

.compare-table td:nth-child(4) {
    background: #fffef0;
}

.compare-table tr:hover td:nth-child(4) {
    background: #fff9db;
}

@media (max-width: 768px) {
    .compare-table {
        min-width: 700px;
    }
}

/* FAQ Section V2 */
.pricing-faq-v2 {
    padding: 120px 0;
    background: #f0f9ff;
}

.container-800 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-tag {
    background: #e0f2fe;
    color: #4facfe;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #0b1830;
}

.faq-top h2 span {
    font-style: italic;
    font-family: serif;
    font-weight: 400;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #4a86a4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-header h4 {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1830;
}

.accordion-header i {
    color: #94a3b8;
}

.accordion-body {
    padding: 0 30px 25px 82px;
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-body p {
    color: #64748b;
    line-height: 1.7;
}



/* ==========================================================================
   Privacy Policy Page Styles
   ========================================================================== */
.privacy-template {
    background: #fdfdfd;
}

.privacy-template .current {
    color: #4facfe !important;
}

.privacy-content-wrap {
    padding: 80px 0;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
}

/* Banner Text Overrides */
.privacy-template .about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url(../images/about-ref-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.privacy-template .about-ref-banner .ref-title,
.privacy-template .about-ref-banner .ref-breadcrumb,
.privacy-template .about-ref-banner .ref-breadcrumb a,
.privacy-template .about-ref-banner .ref-breadcrumb .slash,
.contact-template .about-ref-banner .ref-title,
.contact-template .about-ref-banner .ref-breadcrumb,
.contact-template .about-ref-banner .ref-breadcrumb a,

.contact-template .about-ref-banner .ref-breadcrumb .slash {
    color: #ffffff !important;
}



/* Sidebar Navigation */
.privacy-sidebar .sticky-box {
    position: sticky;
    top: 120px;
}

.privacy-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 30px;
    padding-left: 10px;
}

.privacy-sidebar ul {
    list-style: none;
    border-left: 2px solid #e2e8f0;
}

.privacy-sidebar li a {
    display: block;
    padding: 12px 25px;
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.privacy-sidebar li a:hover {
    color: #1a84c9;
}

.privacy-sidebar li a.active {
    color: #1a84c9;
    font-weight: 700;
}

.privacy-sidebar li a.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #1a84c9;
}

/* Document Body */
.privacy-body {
    max-width: 850px;
}

.privacy-section {
    margin-bottom: 80px;
}

.privacy-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a84c9;
    margin: 30px 0 20px;
}

.privacy-section p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
}

.privacy-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-section ul li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-section ul li strong {
    color: #0b1830;
}

.privacy-contact-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.privacy-contact-card p {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .privacy-sidebar {
        display: none;
    }
}

/* ==========================================================================
   Terms of Service Page Styles
   ========================================================================== */
.terms-template {
    background: #fdfdfd;
}

.terms-template .current {
    color: #4facfe !important;
}

.terms-content-wrap {
    padding: 100px 0;
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
}

/* Banner Text Overrides */
.terms-template .about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url(../images/about-ref-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.terms-template .about-ref-banner .ref-title,
.terms-template .about-ref-banner .ref-breadcrumb,
.terms-template .about-ref-banner .ref-breadcrumb a,
.terms-template .about-ref-banner .ref-breadcrumb .slash {
    color: #ffffff !important;
}

/* Sidebar Navigation */
.terms-sidebar .sticky-box {
    position: sticky;
    top: 120px;
}

.terms-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 30px;
    padding-left: 10px;
}

.terms-sidebar ul {
    list-style: none;
    border-left: 2px solid #e2e8f0;
}

.terms-sidebar li a {
    display: block;
    padding: 12px 25px;
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.terms-sidebar li a:hover {
    color: #1a84c9;
}

.terms-sidebar li a.active {
    color: #1a84c9;
    font-weight: 700;
}

.terms-sidebar li a.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #1a84c9;
}

/* Document Body */
.terms-body {
    max-width: 850px;
}

.terms-section {
    margin-bottom: 80px;
}

.terms-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.terms-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a84c9;
    margin: 30px 0 20px;
}

.terms-section p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
}

.terms-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.terms-section ul li {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-section ul li strong {
    color: #0b1830;
}

.terms-contact-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.terms-contact-card p {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .terms-sidebar {
        display: none;
    }
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

.blog-template {
    background: #f8fafc;
}

/* Blog Banner Overrides */
.blog-template .about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url(../images/about-ref-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.blog-template .ref-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

/* Blog Feed Grid */
.blog-feed-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: #4facfe;
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4facfe;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.blog-card-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.blog-meta span i {
    color: #4facfe;
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0b1830;
    transition: color 0.3s;
}

.blog-card h3 a {
    text-decoration: none;
    color: inherit;
}

.blog-card:hover h3 {
    color: #4facfe;
}

.blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-read-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0b1830;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s;
}

.blog-read-more i {
    color: #4facfe;
    font-size: 0.8rem;
}

.blog-read-more:hover {
    gap: 15px;
    color: #4facfe;
}

/* Pagination */
.blog-pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.blog-pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff;
    color: #0b1830;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #4facfe;
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .blog-template .ref-title {
        font-size: 2.8rem;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0px 10px;
    }

    .privacy-layout {
        padding: 0 15px;
    }

    .terms-layout {
        padding: 0 15px;
    }
}

/* ==========================================================================
   Single Post Page Styles
   ========================================================================== */

.single-post-template {
    background: #ffffff;
}

/* Single Post Hero */
.single-post-hero {
    position: relative;
    padding: 220px 0 160px;
    background-color: #0b1830;
    overflow: hidden;
}

.single-post-hero .banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.single-post-hero .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 24, 48, 0.9) 0%, rgba(11, 24, 48, 0.7) 100%);
    z-index: 2;
}

.single-post-hero .container-1200 {
    position: relative;
    z-index: 10;
}

.post-meta-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #4facfe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-meta-top span i {
    margin-right: 8px;
}

.single-post-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.post-author-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.post-author-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4facfe;
}

/* Article Content Area */
.post-content-wrap {
    padding: 100px 0;
}

.post-main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
}

.post-article {
    max-width: 850px;
}

.post-featured-image-main {
    margin-bottom: 60px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.post-featured-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body-content {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #334155;
}

.post-body-content p {
    margin-bottom: 30px;
}

.post-body-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1830;
    margin: 60px 0 30px;
    letter-spacing: -1px;
}

.post-body-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1830;
    margin: 40px 0 20px;
}

.post-body-content blockquote {
    background: #f8fafc;
    border-left: 5px solid #4facfe;
    padding: 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: #0b1830;
    border-radius: 0 20px 20px 0;
}

/* Sidebar */
.post-sidebar .sidebar-widget {
    background: #f8fafc;
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4facfe;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info h5 a {
    text-decoration: none;
    color: #0b1830;
    transition: color 0.3s;
}

.recent-post-info h5 a:hover {
    color: #4facfe;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #64748b;
}

/* Post Navigation */
.post-navigation-custom {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.nav-link-box {
    max-width: 45%;
}

.nav-link-box span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4facfe;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nav-link-box a {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b1830;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s;
}

.nav-link-box a:hover {
    color: #4facfe;
}

@media (max-width: 1024px) {
    .post-main-layout {
        grid-template-columns: 1fr;
    }

    .single-post-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Video Gallery Page Styles
   ========================================================================== */

.video-template {
    background: #f8fafc;
    color: #334155;
}

/* Video Banner Overrides */
.video-template .about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url(../images/about-ref-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-template .ref-title {
    color: #ffffff;
}

/* Video Grid */
.video-gallery-section {
    padding: 120px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.video-item-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-item-card:hover {
    transform: translateY(-10px);
    background: #fdfdfd;
    border-color: #4facfe;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.video-thumbnail-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-item-card:hover .video-thumbnail-wrap img {
    transform: scale(1.1);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 24, 48, 0.2);
    transition: background 0.3s;
    z-index: 10;
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-item-card:hover .play-icon-circle {
    background: #4facfe;
    border-color: #4facfe;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
}

.video-info-content {
    padding: 30px;
}

.video-info-content h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0b1830;
    letter-spacing: -0.5px;
}

.video-duration {
    font-size: 12px;
    color: #4facfe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Modal for Video Playback */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 24, 48, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.video-modal-content {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.video-modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s;
}

.video-modal-close:hover {
    transform: rotate(90deg);
    color: #4facfe;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
        gap: 10px;
    }

    .play-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* Registration Page Styles */

.registration-template {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.registration-form-section {
    padding: 100px 0;
    position: relative;
    background: url('../images/registration-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.registration-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.registration-form-section .container-1200 {
    position: relative;
    z-index: 2;
}


.registration-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.registration-info {
    flex: 1 1 450px;
}

.registration-form-container {
    flex: 1 1 500px;
}

.registration-info .subtitle {
    display: inline-block;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.registration-info h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.registration-info p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #eee;
}

.feature-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

.testimonial-snippet {
    border-left: 4px solid #3b82f6;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 0 15px 15px 0;
}

.testimonial-snippet p {
    margin-bottom: 10px;
    font-style: italic;
    color: #ccc;
    font-family: 'Playfair Display', serif;
}

.testimonial-snippet .author {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

/* Registration Card */
.registration-card {
    background: linear-gradient(145deg, rgba(11, 24, 48, 0.85) 0%, rgba(28, 130, 197, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}


.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-header p {
    color: #bbbbbb;
}

.reg-form .form-row {
    display: flex;
    gap: 20px;
}

.reg-form .form-group {
    margin-bottom: 25px;
    flex: 1;
}

.reg-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #dddddd;
}

.reg-form input[type="text"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form input[type="password"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.reg-form input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #fff;
}

.newsletter-optin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-optin input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.newsletter-optin label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-terms {
    font-size: 0.85rem;
    color: #999999;
    margin: 20px 0;
    text-align: center;
}


.form-terms a {
    color: #3b82f6;
    text-decoration: none;
}

.btn-register-submit {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-register-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5);
}

.social-login {
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.social-login p {
    position: relative;
    z-index: 1;
    background: #0b1830;
    /* Matches the start of card gradient */
    display: inline-block;
    padding: 0 15px;
    color: #999999;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.social-login::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    color: #aaaaaa;
    font-size: 0.95rem;
}

.form-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .input-group {
    flex: 1;
}


.wpcf7-submit {
    border: none;
    background-color: #4facfe;
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wpcf7-submit:hover {
    background-color: #2f83bb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Responsive Styles */
@media (max-width: 991px) {
    .registration-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .registration-wrapper {
        flex-direction: column;
    }

    .registration-info {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-list li {
        justify-content: center;
    }

    .testimonial-snippet {
        border-left: none;
        border-top: 4px solid #3b82f6;
        border-radius: 15px;
    }

    .registration-card {
        padding: 30px 20px;
    }

    .reg-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.registration-template .about-ref-banner {
    position: relative;
    padding: 180px 0 140px;
    background-image: url(../images/about-ref-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* OTP Modal Styles */
.otp-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.otp-modal.active {
    display: flex;
}

.otp-modal-content {
    background: linear-gradient(145deg, #0b1830 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.close-otp-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
}

.otp-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.otp-modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.otp-modal-content p {
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.5;
}

.otp-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.otp-field {
    width: 45px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s;
}

.otp-field:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.otp-field:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-verify-submit {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

.otp-footer {
    margin-top: 30px;
    color: #94a3b8;
}

.otp-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* Login Page Styles */

.login-template {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.login-form-section {
    padding: 120px 0;
    position: relative;
    background: url('../images/registration-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.login-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(11, 24, 48, 0.7) 100%);
    z-index: 1;
}

.login-form-section .container-1200 {
    position: relative;
    z-index: 2;
}

.login-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.login-info {
    flex: 1 1 400px;
}

.login-form-container {
    flex: 1 1 450px;
}

.login-info .subtitle {
    display: inline-block;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.login-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.login-info p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

.login-features {
    display: flex;
    gap: 30px;
}

.login-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 180px;
}

.login-feature-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.login-feature-item span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Login Card */
.login-card {
    background: linear-gradient(145deg, rgba(11, 24, 48, 0.9) 0%, rgba(28, 130, 197, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.form-header p {
    color: #bbb;
}

.log-form .form-group {
    margin-bottom: 25px;
}

.log-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ddd;
}

.log-form input[type="text"],
.log-form input[type="email"],
.log-form input[type="password"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.log-form input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 1.1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    cursor: pointer;
}

.forgot-pass {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.btn-login-submit {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.social-login {
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.social-login p {
    position: relative;
    z-index: 1;
    background: #0b1830;
    display: inline-block;
    padding: 0 15px;
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.social-login::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 40px;
    color: #999;
}

.form-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .login-info h2 {
        font-size: 2.8rem;
    }

    .login-features {
        justify-content: center;
    }

    .login-card {
        padding: 40px 25px;
    }
}

/* Purple Admin Dashboard Styles */

:root {
    --primary-blue: #4a86a4;
    --primary-light: #6ba1be;
    --premium-gold: #b48d38;
    --premium-light: #fdf6e7;
    --bg-light: #f4f7f6;
    --text-dark: #334e5e;
    --text-muted: #8ca2ad;
    --white: #ffffff;

    --grad-premium: linear-gradient(135deg, #d4af37 0%, #b48d38 100%);
    --grad-blue: linear-gradient(135deg, #1e90ff 0%, #70a1ff 100%);
    --grad-purple: linear-gradient(135deg, #a55eea 0%, #82589f 100%);
    --grad-green: linear-gradient(135deg, #20bf6b 0%, #26de81 100%);
    --grad-red: linear-gradient(135deg, #eb3b5a 0%, #fd9644 100%);
    --grad-orange: linear-gradient(135deg, #FF8008 0%, #FFC837 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul {
    list-style: square;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.purple-layout {
    display: flex;
    min-height: 100vh;
}

.purple-layout ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Sidebar Styling */
.purple-sidebar {
    width: 320px;
    background: linear-gradient(135deg, #1c81c4 0%, #24517852 100%);
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.sidebar-brand {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
}

.brand-logo {
    display: block;
    width: 150px;
}

.brand-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    transition: 0.3s;
}

.brand-text:hover {
    color: var(--primary-light);
}

.sidebar-user-info {
    padding: 1rem 1.5rem;
    margin: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
}

.sidebar-user-text {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 800;
    font-size: 14px;
    color: var(--white);
}

.view-profile {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-nav {
    padding: 0.5rem 0;
}

.sidebar-nav li {
    margin: 4px 1rem;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.sidebar-nav li i {
    width: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.sidebar-nav li.active a {
    background: #fff;
    color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(74, 134, 164, 0.08);
}

.sidebar-nav li.active i {
    color: var(--primary-blue);
}



.sidebar-nav li a:hover:not(.active) {
    background: #f8fafc;
    color: var(--primary-blue);
}

.sidebar-nav li a:hover i {
    color: var(--primary-blue);
}

.sidebar-upgrade {
    padding: 1rem;
    margin-top: 1rem;
}

.premium-promo-card {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7e6 100%);
    border: 1px solid #ffeeba;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(180, 141, 56, 0.08);
}

.premium-promo-card h5 {
    color: #856404;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.btn-try-premium {
    background: var(--grad-premium);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 5px 15px rgba(180, 141, 56, 0.2);
}

.storage-info-box {
    background: #fff;
    border: 1px solid #e1e8ed;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.storage-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid #f0f4f7;
    border-top-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-blue);
}

.storage-text {
    display: flex;
    flex-direction: column;
}

.storage-text span {
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-upgrade-sm {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.65rem;
    cursor: pointer;
    margin-top: 5px;
}

.sidebar-logout {
    margin-top: auto;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 2rem;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-logout:hover {
    background: #5599c8;
    border-color: #5599c8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.sidebar-logout i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.sidebar-logout:hover i {
    transform: translateX(-3px);
}

/* Main Panel */
.main-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Dashboard Content */
.dashboard-content {
    padding: 2.5rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.page-title-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
}

.bg-gradient-purple {
    background: var(--grad-purple);
    color: #fff;
}

.breadcrumb {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.text-purple {
    color: var(--purple-main);
}

/* Row Stats */
.row-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1400px) {
    .row-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .row-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .row-stats {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.stat-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.card-icon {
    position: absolute;
    bottom: -10px;
    right: -5px;
    font-size: 3.5rem;
    opacity: 0.15;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.stat-card:hover .card-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.25;
}

.card-img-absolute {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

.bg-gradient-red {
    background: var(--grad-red);
}

.bg-gradient-blue {
    background: var(--grad-blue);
}

.bg-gradient-green {
    background: var(--grad-green);
}

.bg-gradient-purple {
    background: var(--grad-purple);
}

.bg-gradient-red {
    background: var(--grad-red);
}

.bg-gradient-orange {
    background: var(--grad-orange);
}

/* Row Charts */
.row-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-legend {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.point {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.point.blue {
    background: var(--grad-blue);
}

.point.purple {
    background: var(--purple-main);
}

.point.red {
    background: var(--grad-red);
}

.point.green {
    background: var(--grad-green);
}

/* Mock Charts */
.mock-line-chart {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
}

.bar-col {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 40px;
}

.bar {
    width: 15px;
    border-radius: 5px;
}

.bar.purple {
    background: var(--grad-purple);
}

.bar.blue {
    background: var(--grad-blue);
}

.donut-chart {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 15px solid #f2edf3;
    border-top-color: #fe7096;
    border-right-color: #07cdae;
    border-bottom-color: #9a55ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-center {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.legend-item .percent {
    margin-left: auto;
    font-weight: 700;
}

/* Table Section */
.row-table {
    margin-bottom: 2rem;
}

.table-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
}

.purple-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.purple-table th {
    text-align: left;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid #f2edf3;
}

.purple-table td {
    padding: 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #f2edf3;
}

.purple-table td img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.badge-gradient-success {
    background: var(--grad-green);
}

.badge-gradient-warning {
    background: var(--grad-red);
}

.badge-gradient-danger {
    background: var(--grad-red);
}

@media (max-width: 1100px) {
    .row-stats {
        grid-template-columns: 1fr 1fr;
    }

    .row-charts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .purple-sidebar {
        display: none;
    }

    .row-stats {
        grid-template-columns: 1fr;
    }
}

.tab-content-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

.tab-content-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* My Events Design */
.events-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.events-filters {
    display: flex;
    gap: 25px;
}

a.filter-item {
    text-decoration: none;
    color: #000;
}

.search-event-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box-sm {
    background: #f8fafb;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
}

.search-box-sm input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.85rem;
    width: 100%;
}

.btn-blue {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.tab-content-card a {
    text-decoration: none;
    font-size: 12px;
}

.tab-content-card h6 {
    font-size: 15px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.event-thumb {
    height: 180px;
    position: relative;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-pub {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e1fdeb;
    color: #1a8f44;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-unpub {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #feeaea;
    color: #d9534f;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-payment-pending {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff4e5;
    color: #ff9800;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-payment-partial {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-payment-paid {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e1fdeb;
    color: #1a8f44;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.event-body {
    padding: 1.2rem;
}

.event-body h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.event-body span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-top: 1px solid #f8fafb;
}

.ev-stats {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #556e7b;
}

.ev-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ev-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f0f4f7;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
}

.action-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Create Event Styles */
.create-event-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
}

.form-field {
    margin-bottom: 1.2rem;
}

.input-box {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fdfdfd;
    font-size: 0.9rem;
    outline: none;
}

.input-box:focus {
    border-color: var(--primary-blue);
}

.upload-area {
    border: 2px dashed #eef2f5;
    background: #fcfdfe;
    border-radius: 15px;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
}

.upload-area i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #cbd8e2;
}

.upload-area p {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-floating {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

.trial-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.trial-info i {
    font-size: 1.2rem;
}

/* Settings Tab Styles */
.settings-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.settings-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.input-with-icon {
    position: relative;
    margin-bottom: 1rem;
}

.input-with-icon .input-box {
    padding-right: 40px;
}

.input-with-icon .edit-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 0.8rem;
    cursor: pointer;
}

.logo-upload-box {
    border: 2px dashed #eef2f5;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.logo-preview-circle {
    width: 100px;
    height: 100px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 300;
}

/* Pricing Tab Styles */
/* Unique Pricing Redesign (V2) */
.pricing-header-v2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-header-v2 h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pricing-header-v2 h2 i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-blue);
}

.pricing-header-v2 p {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-tabs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 4rem;
}

.pricing-tabs-nav-v2 {
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    width: fit-content;
}

.p-tab-v2 {
    padding: 12px 45px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #718096;
    letter-spacing: 1px;
}

.p-tab-v2.active {
    background: #4facfe;
    background: linear-gradient(135deg, #4facfe 0%, #0072ff 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.pricing-duration-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toggle-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #a0aec0;
    letter-spacing: 1px;
    transition: 0.3s;
}

.toggle-label.active {
    color: var(--primary-blue);
}

.toggle-switch-wrap {
    position: relative;
}

.p-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.p-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.p-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.p-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

input:checked + .p-slider {
    background-color: #4facfe;
}

input:checked + .p-slider:before {
    transform: translateX(30px);
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 6rem;
}

.p-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
}

.p-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.p-card-head {
    padding: 25px;
    background: #f1faff;
    text-align: center;
    border-bottom: 1px solid #e1eff6;
}

.p-card-head h6 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #4facfe;
    margin-bottom: 15px;
}

.p-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1830;
}

.p-price span {
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 600;
}

.p-card-v2.highlight {
    border: 1px solid #4facfe;
    transform: scale(1.05);
    z-index: 5;
}

.p-card-v2.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.p-card-v2.highlight .p-card-head {
    background: #0b1830; /* Dark head for Amateur as per image */
    color: #fff;
    border-bottom: none;
}

.p-card-v2.highlight .p-card-head h6 {
    color: rgba(255,255,255,0.7);
}

.p-card-v2.highlight .p-price {
    color: #fff;
}

.p-best-value {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f6ad55;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 10;
    letter-spacing: 1px;
}

.p-card-v2.highlight .p-price span {
    color: rgba(255,255,255,0.5);
}

.p-card-body {
    padding: 30px 25px;
    flex: 1;
}

.p-card-body strong {
    font-size: 0.75rem;
    color: #0b1830;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-card-body ul {
    list-style: none;
}

.p-card-body li {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-card-body li i {
    color: #4facfe;
}

.p-card-footer {
    padding: 25px;
}

.btn-p-action {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1.5px solid #edf2f7;
    background: #fff;
    color: #0b1830;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-p-action.active,
.p-card-v2.highlight .btn-p-action,
.btn-p-action:hover {
    background: #4facfe;
    color: #fff;
    border-color: #4facfe;
}

/* Compare Section V2 */
.compare-section-v2 {
    margin-bottom: 8rem;
}

.compare-section-v2 h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #0b1830;
}

.compare-table-wrap {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
}

.compare-table-v2 {
    width: 100%;
    border-collapse: collapse;
}

.compare-table-v2 th {
    background: #e1eff6;
    padding: 22px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #4facfe;
    text-align: center;
    border-radius: 15px;
}

.compare-table-v2 td {
    padding: 22px 15px;
    font-size: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #f8fafc;
    color: #718096;
}

.compare-table-v2 td:first-child {
    text-align: left;
    font-weight: 700;
    color: #4a5568;
    padding-left: 30px;
}

.compare-table-v2 i.fa-check-circle {
    color: #4facfe;
    font-size: 1rem;
}

.compare-table-v2 i.fa-minus {
    color: #cbd5e0;
}

/* FAQ Section V2 */
.faq-section-v2 {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
}

.faq-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #eef2ff;
    color: #4facfe;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.faq-section-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 4rem;
}

.faq-section-v2 h2 i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-blue);
}

.faq-list-v2 {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-card-v2 {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-card-v2.active {
    border-color: #4facfe;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.1);
}

.faq-card-head {
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
}

.faq-num {
    width: 35px;
    height: 35px;
    background: #edf2f7;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.faq-card-v2.active .faq-num {
    background: #4facfe;
    color: #fff;
}

.faq-card-head h5 {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
}

.faq-card-head i {
    color: #a0aec0;
    transition: 0.3s;
}

.faq-card-v2.active .faq-card-head i {
    color: #4facfe;
}

.faq-card-body {
    padding: 0 35px 25px 95px;
    display: none;
}

.faq-card-v2.active .faq-card-body {
    display: block;
}

.faq-card-body p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .pricing-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid-v2 { grid-template-columns: 1fr; }
    .pricing-header-v2 h2 { font-size: 2rem; }
}


/* FAQ Accordion */


.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;

}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-header .num {
    background: var(--primary-blue);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    margin-right: 15px;
}

.faq-header h5 {
    font-size: 0.9rem;
    flex: 1;
}

.faq-content {
    padding: 0 25px 25px 65px;
    font-size: 0.8rem;
    color: #718096;
    line-height: 1.6;
}

/* Post Settings Watermark */
.watermark-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 150px;
}

.pos-box {
    width: 45px;
    height: 45px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    cursor: pointer;
}

.pos-box.active {
    background: var(--primary-blue);
}

.slider-group {
    margin-bottom: 1.5rem;
}

.slider-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.custom-range {
    width: 100%;
    height: 4px;
    background: #edf2f6;
    accent-color: var(--primary-blue);
}



/* --- UNIQUE PREMIUM CREATE EVENT STYLES --- */
.create-event-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.create-event-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.create-event-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--text-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.create-event-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.ce-input-group {
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.ce-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74, 134, 164, 0.1);
    border-radius: 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ce-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(74, 134, 164, 0.15);
    transform: translateY(-2px);
}

.ce-input-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    pointer-events: none;
}

/* Custom Toggle - Unique Design */
.toggle-feature-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid rgba(74, 134, 164, 0.15);
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.toggle-feature-box span {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unique Upload Area - Glassmorphism Card */
.event-upload-side {
    height: 100%;
}

.upload-cover-dropzone {
    height: 100%;
    min-height: 480px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 2px dashed rgba(74, 134, 164, 0.3);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.upload-cover-dropzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 134, 164, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.upload-cover-dropzone:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(74, 134, 164, 0.15);
}

.upload-cover-dropzone i {
    font-size: 4rem;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 10px rgba(74, 134, 164, 0.2));
    z-index: 2;
}

.upload-cover-dropzone p {
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    z-index: 2;
}

.upload-cover-dropzone span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
    z-index: 2;
}

/* Unique Primary Button */
.btn-primary-gradient {
    width: 100%;
    padding: 22px;
    background: var(--grad-blue);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(74, 134, 164, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient.btn-sm {
    width: auto;
    padding: 12px 25px;
    font-size: 0.75rem;
    border-radius: 12px;
    letter-spacing: 1px;
}


.btn-primary-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
}

.btn-primary-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(74, 134, 164, 0.4);
}

.btn-primary-gradient:hover::after {
    left: 100%;
}

/* Date Picker Unique Styling */
input[type="date"].ce-input {
    color: var(--primary-blue);
    font-weight: 700;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(47%) sepia(21%) saturate(1001%) hue-rotate(164deg) brightness(92%) contrast(88%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE OVERRIDES (Global Media Queries)
   ========================================================================== */

/* Large screens / Early Breakpoints */
@media (max-width: 1200px) {
    .features-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad and Tablet View */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 50px;
    }

    .about-content-part .animated-title {
        font-size: 50px;
    }

    .feature-highlight-section .section-title {
        font-size: 50px;
    }

    .video-title {
        font-size: 50px;
    }

    .process-title {
        font-size: 50px;
    }

    .app-title {
        font-size: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

    .ref-title,
    .section-title,
    .compare-title {
        font-size: 50px;
    }

    .features-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compare-table-wrap {
        overflow-x: auto;
    }

    .compare-table {
        min-width: 1000px;
    }
}

/* iPhone and Mobile View */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 45px;
    }

    .about-content-part .animated-title {
        font-size: 45px;
    }

    .feature-highlight-section .section-title {
        font-size: 45px;
    }

    .video-title {
        font-size: 45px;
    }

    .process-title {
        font-size: 45px !important;
    }

    .app-title {
        font-size: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ref-title,
    .section-title,
    .compare-title {
        font-size: 45px;
    }

    .features-display-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0px 10px;
    }

    .pricing-category-tabs {
        width: 100%;
        max-width: 320px;
        padding: 5px;
        gap: 5px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
    }

    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }

    .compare-table-wrap {
        overflow-x: auto;
        padding: 0 10px;
    }

    .compare-table {
        min-width: 700px;
    }
}

/* Small iPhone and Extra Small Screens */
@media (max-width: 375px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
        padding-left: 10px;
        padding-right: 10px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0px 10px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-layout-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

}

/* Smallest Devices */
@media (max-width: 576px) {
    .counter-display-grid {
        grid-template-columns: 1fr;
    }

    .stat-count {
        font-size: 2.8rem;
    }
}

/* Manage Gallery Screen Styles */
.manage-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mg-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-back-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.mg-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
}

.mg-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mg-storage {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #4a5568;
}

.btn-see-preview {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.mg-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
}

.mg-v2-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
}

.mg-v2-header {
    padding: 25px 40px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    z-index: 10;
}

.mg-v2-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mg-back-btn {
    width: 40px;
    height: 40px;
    background: #ebf8ff;
    color: #1a84c9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
}

.mg-back-btn:hover {
    background: #1a84c9;
    color: #fff;
    transform: scale(1.1);
}

.mg-v2-header-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.mg-v2-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mg-storage-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #2d3748;
    background: #f7fafc;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.mg-storage-badge i {
    color: #1a84c9;
}

.mg-preview-btn {
    background: #1a84c9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.mg-preview-btn:hover {
    background: #1a4c6d;
    box-shadow: 0 10px 20px rgba(26, 132, 201, 0.2);
    transform: translateY(-2px);
}

.mg-v2-body {
    flex: 1;
    display: flex;
    min-height: 0;
    background: #f8fafc;
}

.mg-v2-sidebar {
    width: 320px;
    border-right: 1px solid #edf2f7;
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.mg-v2-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background: #f8fafc;
}

.mg-v2-tabs {
    display: flex;
    background: #f7fafc;
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 30px;
}

.mg-v2-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 0.75rem;
    color: #a0aec0;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
}

.mg-v2-tab.active {
    background: #1a84c9;
    color: #fff;
    box-shadow: 0 5px 15px rgba(26, 132, 201, 0.2);
}

.mg-v2-upload-card {
    background: #fff;
    border: 1px dashed #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 2rem;
}

.mg-v2-upload-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mg-v2-folder-selector {
    margin-bottom: 1rem;
}

.mg-v2-folder-selector select {
    width: 100%;
    padding: 12px;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    font-weight: 600;
    color: #4a5568;
    outline: none;
}

.mg-v2-dropzone {
    height: 160px;
    border: 2px dashed #edf2f7;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 1.5rem;
    background: #fcfdfe;
}

.mg-v2-dropzone:hover {
    border-color: #1a84c9;
    background: #f0f7ff;
    color: #1a84c9;
}

.mg-v2-dropzone i {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.mg-v2-dropzone p {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mg-v2-upload-btn {
    width: 100%;
    padding: 15px;
    background: #1a84c9;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.mg-v2-upload-btn:hover {
    background: #1a4c6d;
    transform: translateY(-2px);
}

.mg-v2-new-folder-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #1a84c9;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.mg-v2-new-folder-btn:hover {
    background: #f7fafc;
    border-color: #1a84c9;
}

.mg-v2-delete-folder-btn {
    width: 100%;
    padding: 12px;
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.mg-v2-delete-folder-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.mg-v2-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mg-folder-title-dropdown {
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    background: #fff;
    font-weight: 700;
    color: #2d3748;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.mg-v2-grid-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mg-status-badge {
    background: #d1fae5;
    color: #065f46;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.mg-v2-section {
    margin-bottom: 40px;
}

.mg-v2-section-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mg-v2-section-meta span {
    font-weight: 800;
    color: #4a5568;
    font-size: 0.95rem;
}

.mg-v2-section-meta label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #a0aec0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mg-v2-section-meta label input {
    width: 16px;
    height: 16px;
    accent-color: #1a84c9;
    cursor: pointer;
}

.mg-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.mg-v2-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.mg-v2-item.video-item {
    aspect-ratio: 16/9;
}

.mg-v2-item img,
.mg-v2-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-v2-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
    opacity: 0;
    transition: 0.3s;
}

.mg-v2-item:hover .mg-v2-item-overlay {
    opacity: 1;
}

.mg-v2-item-dots {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #2d3748;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Upload Progress Panel (Google Drive Style) */
.upload-progress-panel {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 360px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    overflow: hidden;
    display: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-progress-panel.collapsed {
    transform: translateY(calc(100% - 50px));
}

.upp-header {
    background: #2d3748;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.upp-header h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.upp-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.upp-controls i {
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    opacity: 0.8;
}

.upp-controls i:hover {
    opacity: 1;
    transform: scale(1.2);
}

.upp-body {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
}

.upp-overall-info {
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.upp-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.upp-stats-row span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
}

.upp-main-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.upp-main-fill {
    height: 100%;
    background: #4a86a4;
    width: 0%;
    transition: 0.3s;
}

.upp-list {
    padding: 10px 0;
}

.upp-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.upp-item:last-child {
    border-bottom: none;
}

.upp-item:hover {
    background: #f8fafc;
}

.upp-item-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.upp-item-details {
    flex: 1;
    min-width: 0;
}

.upp-item-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a202c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    display: block;
}

.upp-item-progress-bar {
    height: 3px;
    background: #edf2f7;
    border-radius: 2px;
    overflow: hidden;
}

.upp-item-progress-fill {
    height: 100%;
    background: #4a86a4;
    width: 0%;
}

.upp-item-status {
    width: 20px;
    text-align: center;
    font-size: 0.75rem;
}

.upp-item-status .fa-circle-check {
    color: #10b981;
}

.upp-item-status .fa-circle-xmark {
    color: #ef4444;
}

.upp-item-status .fa-spinner {
    color: #4a86a4;
}

/* Custom Scrollbar for UPP */
.upp-body::-webkit-scrollbar {
    width: 6px;
}

.upp-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.upp-body::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}
/* More Options Dropdown */
.mg-v2-more-options {
    position: relative;
    display: flex;
    align-items: center;
}

.mg-v2-more-options i {
    color: #a0aec0;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: 0.2s;
}

.mg-v2-more-options i:hover {
    background: #f7fafc;
    color: #2d3748;
}

.mg-more-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    margin-top: 12px;
    border: 1px solid #edf2f7;
    animation: slideInMG 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMG {
    from { opacity:0; transform: translateY(-15px) scale(0.95); }
    to { opacity:1; transform: translateY(0) scale(1); }
}

.mg-more-dropdown.show {
    display: flex;
}

.mg-more-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    background: #ebf8ff;
    color: #2b6cb0;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.mg-more-item i {
    font-size: 1.1rem;
    color: #2b6cb0;
}

.mg-more-item:hover {
    background: #1a84c9;
    color: #fff;
}

.mg-more-item:hover i {
    color: #fff !important;
}

.mg-more-item.delete {
    background: #fbf0f0;
    color: #c53030;
    margin-top: 5px;
}

.mg-more-item.delete i {
    color: #c53030;
}

.mg-more-item.delete:hover {
    background: #c53030;
    color: #fff;
}

/* Dropdown Menu Styles */
.mg-dropdown-wrap { position: relative; }
.mg-dropdown-wrap i { color: #a0aec0; cursor: pointer; padding: 10px; transition: 0.2s; border-radius: 50%; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; }
.mg-dropdown-wrap i:hover { background: #f7fafc; color: #2d3748; }

.mg-dropdown-menu { 
    position: absolute; 
    top: 45px; 
    right: 0; 
    width: 240px; 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
    z-index: 1000; 
    padding: 8px; 
    display: none; 
    border: 1px solid #edf2f7;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mg-dropdown-menu.active { display: block; }

.mg-dropdown-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 15px; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.2s; 
    text-align: left;
}

.mg-dropdown-item:hover { background: #f8fafc; }
.mg-dropdown-item i { font-size: 0.9rem; width: 20px; color: #4a5568 !important; background: none !important; padding: 0 !important; border-radius: 0 !important; }
.mg-dropdown-item span { font-size: 0.85rem; font-weight: 600; color: #2d3748; }

.mg-dropdown-item.danger { color: #ef4444; }
.mg-dropdown-item.danger i { color: #ef4444 !important; }
.mg-dropdown-item.danger:hover { background: #fef2f2; }

.mg-dropdown-divider { height: 1px; background: #edf2f7; margin: 8px 0; }

.status-green { background: #d1fae5 !important; color: #065f46 !important; }
.status-gray { background: #f1f5f9 !important; color: #475569 !important; }
.mg-hidden-badge { background: #fee2e2; color: #991b1b; font-size: 0.55rem; padding: 2px 8px; border-radius: 4px; font-weight: 800; margin-left: 8px; vertical-align: middle; }
.mg-no-dl-badge { background: #fff7ed; color: #9a3412; font-size: 0.55rem; padding: 2px 8px; border-radius: 4px; font-weight: 800; margin-left: 8px; vertical-align: middle; border: 1px solid #ffedd5; }

/* Bulk Action Bar */
.mg-bulk-actions-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a202c;
    padding: 15px 30px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 3000;
    animation: barSlideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes barSlideUp {
    from { bottom: -100px; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

.mg-bulk-info { color: #fff; font-size: 0.9rem; font-weight: 700; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 25px; }
.mg-bulk-info span { color: #4299e1; margin-right: 5px; }

.mg-bulk-btn { 
    background: transparent; 
    border: none; 
    color: #fff; 
    font-size: 0.8rem; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.2s;
    text-transform: uppercase;
}
.mg-bulk-btn:hover { color: #4299e1; }
.mg-bulk-btn.danger:hover { color: #ef4444; }

/* Item Checkboxes */
.mg-v2-item { position: relative; }
.mg-item-select {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
    z-index: 10;
    cursor: pointer;
    accent-color: #4299e1;
    opacity: 0;
    transition: 0.2s;
}
.mg-v2-item:hover .mg-item-select, .mg-item-select:checked { opacity: 1; }

.mg-v2-item.selected { border: 3px solid #4facfe; box-shadow: 0 0 20px rgba(79, 172, 254, 0.4); }

/* Selection Popup Styles - Premium Dock Design */
#selectionPopup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(11, 24, 48, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 10px 10px 30px;
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 35px;
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#selectionPopup.active {
    transform: translateX(-50%) translateY(0);
}

.selection-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selection-count-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(79, 172, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); }
}

.selection-text {
    font-weight: 800;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.selection-actions {
    display: flex;
    gap: 10px;
}

.selection-action-btn {
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 14px 30px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Download Button: Vivid Blue Gradient */
.selection-action-btn.btn-download-selected {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.selection-action-btn.btn-download-selected:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.5);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Delete Button: Premium Dark Red */
.selection-action-btn.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #feb2b2;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.selection-action-btn.danger:hover {
    background: #ef4444;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
    border-color: transparent;
}

.selection-action-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    #selectionPopup {
        width: 90%;
        gap: 15px;
        padding: 10px;
        justify-content: space-between;
        bottom: 20px;
    }
    .selection-text { display: none; }
    .selection-action-btn { padding: 12px 20px; font-size: 0.65rem; }
}

/* Video Player Modal Styles */
/* Video Player Modal Styles - Premium Refresh */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 24, 48, 0.85); /* Deep midnight with transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes slideUp {
    from { transform: translateY(50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.video-modal-header {
    padding: 18px 25px;
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 10;
}

.video-modal-header span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
}

.player-controls-top {
    display: flex;
    gap: 20px;
}

.player-controls-top i {
    cursor: pointer;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.player-controls-top i:hover {
    color: #fff;
    transform: scale(1.1);
}

.player-controls-top i.fa-times:hover {
    color: #ef4444;
}

.video-modal-body {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.video-modal-body video {
    width: 100%;
    max-height: 75vh;
    display: block;
    outline: none;
}

.video-player-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #4facfe;
    font-size: 3rem;
    z-index: 5;
}

/* Gallery Video Item Enhancements */
.mg-v2-item.video-item video {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mg-v2-item.video-item:hover video {
    transform: scale(1.1);
}

.mg-v2-play-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
}

.mg-v2-play-btn-wrap i {
    margin-left: 5px; /* Optical centering for play icon */
}

.mg-v2-item:hover .mg-v2-play-btn-wrap {
    transform: translate(-50%, -50%) scale(1);
    background: #4facfe;
    border-color: #4facfe;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.6);
}

@media (max-width: 768px) {
    .video-modal-overlay { padding: 15px; }
    .video-modal-inner { border-radius: 16px; }
    .video-modal-header { padding: 12px 20px; }
    .video-modal-header span { font-size: 0.8rem; }
    .mg-v2-play-btn-wrap { width: 50px; height: 50px; font-size: 1.1rem; }
}

/* Ultra-Unique Clients Tab Design */
.unique-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.u-client-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 35px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.u-client-glass-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(79, 172, 254, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: #4facfe;
}

.u-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, transparent 100%);
    clip-path: circle(50% at 100% 0);
    transition: all 0.5s ease;
}

.u-client-glass-card:hover .u-card-accent {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    opacity: 0.2;
}

.u-client-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.u-avatar-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
}

.u-avatar-main {
    width: 100%;
    height: 100%;
    background: #0b1830;
    color: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.u-avatar-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 25px;
    filter: blur(10px);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.u-client-glass-card:hover .u-avatar-glow {
    opacity: 0.8;
    filter: blur(15px);
}

.u-client-glass-card:hover .u-avatar-main {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    transform: scale(1.05);
}

.u-client-meta-top h6 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 4px;
}

.u-client-tier {
    font-size: 0.65rem;
    font-weight: 900;
    color: #4facfe;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50px;
}

.u-client-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.u-info-pill {
    background: #f8fafc;
    padding: 10px 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #4a5568;
    border: 1px solid #edf2f7;
    transition: 0.3s;
}

.u-info-pill i {
    color: #4facfe;
    width: 18px;
    text-align: center;
}

.u-client-glass-card:hover .u-info-pill {
    background: #fff;
    border-color: #edf2f7;
    transform: translateX(5px);
}

.u-client-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px dashed #edf2f7;
}

.u-action-btn {
    border: none;
    cursor: pointer;
    font-weight: 800;
    transition: 0.3s;
}

.u-action-btn.edit {
    padding: 8px 20px;
    background: transparent;
    color: #0b1830;
    font-size: 0.75rem;
    border-radius: 12px;
    letter-spacing: 1px;
}

.u-action-btn.edit:hover {
    color: #4facfe;
}

.u-action-btn.delete {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.05);
    color: #ef4444;
}

.u-action-btn.delete:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(15deg);
}

/* Unique Empty State */
.u-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 2px dashed rgba(79, 172, 254, 0.2);
}

.u-empty-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.u-empty-state h5 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0b1830;
    margin-bottom: 10px;
}

.u-empty-state p {
    color: #718096;
    max-width: 400px;
    margin: 0 auto;
}




/* Unique Event Preview Modal (UEP) */
.uep-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.uep-modal.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.uep-modal-content {
    background: #f8fafc;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 100px rgba(0,0,0,0.5);
}

.uep-close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.uep-close-btn:hover {
    background: #ff4d4d;
    transform: rotate(90deg);
}

/* Loader */
.uep-loader {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.uep-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #4facfe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Hero Section */
.uep-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: #fff;
}

.uep-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.uep-hero-body {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.uep-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.uep-logo-wrap i { font-size: 1.5rem; }
.uep-logo-wrap span { font-weight: 800; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }

.uep-hero-body h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.uep-hero-body p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.uep-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.uep-btn-watch {
    padding: 16px 40px;
    background: #4facfe;
    background: linear-gradient(135deg, #4facfe 0%, #0072ff 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.uep-btn-watch:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(79, 172, 254, 0.6);
}

.uep-btn-share {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.uep-btn-share:hover {
    background: rgba(255,255,255,0.2);
}

/* Gallery Section */
.uep-gallery-container {
    padding: 80px 10%;
}

.uep-section {
    margin-bottom: 80px;
}

.uep-section h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1830;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.uep-section h4 i {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #4facfe;
    margin: 0 5px;
}

.uep-horizontal-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 transparent;
}

.uep-media-card {
    min-width: 330px;
    flex-shrink: 0;
}

.uep-media-thumb {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #e2e8f0;
    cursor: pointer;
}

.uep-media-thumb img, 
.uep-media-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.uep-media-card h6 {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a5568;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.uep-play-overlay, 
.uep-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.uep-play-overlay { opacity: 1; background: rgba(0,0,0,0.15); }
.uep-play-overlay i {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.uep-media-card:hover .uep-media-thumb img,
.uep-media-card:hover .uep-media-thumb video {
    transform: scale(1.12);
}

.uep-media-card:hover .uep-hover-overlay {
    opacity: 1;
    background: rgba(79, 172, 254, 0.4);
}

.uep-footer {
    padding: 60px;
    text-align: center;
    background: #0b1830;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .uep-hero { padding: 0 5%; }
    .uep-hero-body h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .uep-hero { height: 90vh; padding: 0 5%; align-items: flex-end; padding-bottom: 80px; }
    .uep-hero-body h1 { font-size: 2.8rem; }
    .uep-gallery-container { padding: 50px 5%; }
    .uep-media-card { min-width: 280px; }
    .uep-media-thumb { height: 180px; }
}

/* ==========================================================================
   Modern Event Page (MEP) - Unique Design for single-my_events
   ========================================================================== */
:root {
    --mep-primary: #4facfe;
    --mep-secondary: #00f2fe;
    --mep-dark: #0b1830;
    --mep-glass: rgba(255, 255, 255, 0.08);
    --mep-border: rgba(255, 255, 255, 0.15);
    --mep-text: #ffffff;
}

.mep-wrapper {
    background: #020817;
    color: var(--mep-text);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
}

.mep-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mep-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mep-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    transition: transform 10s linear;
}

.mep-hero:hover .mep-hero-bg img {
    transform: scale(1.15);
}

.mep-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, var(--mep-dark) 90%);
    z-index: 2;
}

.mep-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.mep-hero-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: var(--mep-primary);
    animation: fadeInUp 1s ease forwards;
}

.mep-hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.mep-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
}

.mep-btn-glow {
    background: linear-gradient(135deg, var(--mep-primary) 0%, var(--mep-secondary) 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
    transition: 0.4s;
    border: none;
    cursor: pointer;
}

.mep-btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.6);
}

.mep-btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mep-border);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.4s;
}

.mep-btn-outline:hover {
    background: #fff;
    color: var(--mep-dark);
}

/* Floating Navigation */
.mep-nav-sticky {
    position: sticky;
    top: 20px;
    z-index: 500;
    display: flex;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.mep-nav-pill {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid var(--mep-border);
    display: flex;
    gap: 5px;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mep-nav-item {
    padding: 10px 25px;
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    background: transparent;
}

.mep-nav-item.active, .mep-nav-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Content Sections */
.mep-section {
    padding: 100px 5%;
}

.mep-section-header {
    margin-bottom: 60px;
    text-align: left;
}

.mep-section-header h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.mep-section-header h2 i {
    color: var(--mep-primary);
}

.mep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.mep-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #1e293b;
    cursor: pointer;
}

.mep-card img, .mep-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.mep-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s;
}

.mep-card:hover .mep-card-overlay {
    opacity: 1;
}

.mep-card:hover img, .mep-card:hover video {
    transform: scale(1.1) rotate(1deg);
}

.mep-card-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.mep-card-info p {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Video Items */
.mep-video-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

/* Modal Styling */
.mep-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(2, 8, 23, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.mep-modal.active { display: flex; }

.mep-modal-content {
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.mep-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Studio Overlay */
.mep-studio-overlay {
    background: var(--mep-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--mep-border);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    animation: zoomIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Animations */
.mep-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.mep-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mep-grid { grid-template-columns: 1fr; }
    .mep-video-large { grid-column: span 1; }
    .mep-hero-content h1 { font-size: 3.5rem; }
}

/* ==========================================================================
   Netflix Style Event (NSE) - Design based on user image
   ========================================================================== */
:root {
    --nse-bg: #141414;
    --nse-red: #E50914;
    --nse-text: #fff;
    --nse-gray: #808080;
    --nse-sidebar-w: 60px;
}

.nse-body {
    background: var(--nse-bg);
    color: var(--nse-text);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Sidebar */
.nse-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--nse-sidebar-w);
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    z-index: 1000;
}

.nse-side-icon {
    color: var(--nse-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.nse-side-icon:hover, .nse-side-icon.active {
    color: #fff;
}

.nse-side-icon.accent {
    color: var(--nse-red);
}

/* Main Content Wrapper */
.nse-content {
    margin-left: var(--nse-sidebar-w);
    min-height: 100vh;
}

/* Hero Section */
.nse-hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4%;
    background-size: cover;
    background-position: center top;
}

.nse-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #141414 10%, transparent 50%),
                linear-gradient(to top, #141414 5%, transparent 40%);
}

.nse-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.nse-hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.nse-hero-tag span { color: var(--nse-red); letter-spacing: 2px; }

.nse-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1;
}

.nse-hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nse-match { color: #46d369; }
.nse-meta-badge { border: 1px solid rgba(255,255,255,0.4); padding: 0 5px; font-size: 0.8rem; }

.nse-hero-desc {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 30px;
}

.nse-hero-btns {
    display: flex;
    gap: 15px;
}

.nse-btn {
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.nse-btn-light { background: #fff; color: #000; }
.nse-btn-light:hover { background: rgba(255,255,255,0.7); }
.nse-btn-dark { background: rgba(109, 109, 110, 0.7); color: #fff; }
.nse-btn-dark:hover { background: rgba(109, 109, 110, 0.4); }

/* Row Section */
.nse-row {
    padding: 0 4% 40px;
    position: relative;
    z-index: 20;
    margin-top: -80px;
}

.nse-row-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.nse-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.nse-slider::-webkit-scrollbar { display: none; }

.nse-card {
    min-width: 250px;
    aspect-ratio: 16/9;
    background: #2f2f2f;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.nse-card img, .nse-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nse-card:hover {
    transform: scale(1.1);
    z-index: 30;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.nse-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.nse-card:hover .nse-card-overlay { opacity: 1; }

.nse-card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: 0.3s;
}

.nse-card:hover .nse-card-info { opacity: 1; }

/* Modal Content Open */
.nse-folder-open {
    padding: 40px 4%;
    background: #000;
    margin-bottom: 40px;
    border-top: 2px solid var(--nse-red);
}

.nse-folder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.nse-folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .nse-hero-title { font-size: 3rem; }
    .nse-sidebar { display: none; }
    .nse-content { margin-left: 0; }
}

/* Folder Portal Styles */
.mep-folder-portal {
    padding: 60px 5%;
}

.mep-folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.mep-folder-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mep-folder-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(79, 172, 254, 0.3);
}

.mep-folder-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.mep-folder-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-align: center;
}

.mep-folder-info h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #fff;
}

.mep-folder-info span {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Expanded Folder View */
.mep-folder-view {
    position: fixed;
    inset: 0;
    background: var(--mep-dark);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: 60px 5%;
    animation: slideInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mep-folder-view.active {
    display: flex;
}

.mep-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mep-view-header h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
}

.mep-close-view {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.mep-close-view:hover {
    background: #fff;
    color: #000;
}

@keyframes slideInUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Video Section Adjustments */
.mep-video-section {
    background: #050a15;
    padding: 100px 5%;
}


/* Polishing Folder Portal */
.mep-folder-view {
    padding-top: 100px;
    background: radial-gradient(circle at top right, #0f172a, #020817);
}

.mep-folder-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
    transition: 0.3s;
}

.mep-folder-card:hover::after {
    border-color: var(--mep-primary);
    box-shadow: inset 0 0 20px rgba(79, 172, 254, 0.2);
}

.mep-folder-info .mep-btn-outline {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s 0.1s;
}

.mep-folder-card:hover .mep-folder-info .mep-btn-outline {
    opacity: 1;
    transform: translateY(0);
}

.mep-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.mep-modal.active { display: flex; }


/* ==========================================================================
   Refotoback App-Style Gallery (Modern App UI)
   ========================================================================== */
.mep-app-container {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    padding-bottom: 100px; /* Space for bottom nav */
}

/* Header */
.mep-app-header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.mep-app-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mep-app-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mep-icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.mep-profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2563eb;
}

.mep-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tab System */
.mep-app-tabs {
    padding: 10px 5%;
    display: flex;
    gap: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mep-tab-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.mep-tab-btn.active {
    color: #2563eb;
}

.mep-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    border-radius: 10px;
}

/* Sub Filters */
.mep-sub-filters {
    padding: 15px 5%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mep-filter-pill {
    padding: 8px 20px;
    border-radius: 10px;
    background: #1a1a1a;
    color: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.mep-filter-pill.active {
    background: #2563eb;
    color: #fff;
}

/* Album Grid */
.mep-album-grid {
    padding: 20px 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mep-album-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transform: translateZ(0);
}

.mep-album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mep-album-card:hover img {
    transform: scale(1.1);
}

.mep-album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.mep-album-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mep-album-info span {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Mosaic Item Grid (Detailed View) */
.mep-mosaic-grid {
    padding: 10px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
}

.mep-mosaic-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mep-mosaic-item img, .mep-mosaic-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spanning classes */
.mep-span-2x2 { grid-column: span 2; grid-row: span 2; }
.mep-span-2x1 { grid-column: span 2; }

/* Bottom Nav */
.mep-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: space-around;
    padding: 15px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.mep-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #666;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.mep-nav-btn i {
    font-size: 1.4rem;
}

.mep-nav-btn.active {
    color: #2563eb;
}

/* Animations */
@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mep-animate-up {
    animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Transitions */
.mep-view {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mep-view.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
}

/* Enhanced Preview Styles */
.uep-media-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.uep-media-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.uep-media-thumb:hover .uep-hover-overlay,
.uep-media-thumb:hover .uep-play-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.5);
}

.uep-media-thumb img {
    transition: transform 1.2s ease;
}

.uep-media-card:hover .uep-media-thumb img {
    transform: scale(1.15);
}

.uep-section h4 {
    position: relative;
    padding-left: 20px;
}

.uep-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: #4facfe;
    border-radius: 2px;
}

/* Scrollbar styling for horizontal scroll */
.uep-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.uep-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.uep-horizontal-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.uep-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #4facfe;
}
