/* =====================================================
   MasPay Digital Seva - Studio Level Custom CSS
   No Framework - Pure CSS
   ===================================================== */

/* CSS Variables - Premium Studio Level Palette */
:root {
    /* Primary Palette - Fintech Professional */
    --primary-color: #0c1a3a;
    /* Deep Midnight */
    --primary-light: #162a5a;
    --secondary-color: #00f2ff;
    /* Electric Teal Accent */
    --secondary-glow: rgba(0, 242, 255, 0.4);
    --accent-color: #ffd700;
    /* Gold for high-value CTA */

    /* Functional Colors */
    --dark-color: #050b18;
    /* Rich Black */
    --light-color: #f8fafc;
    /* Slate Light */
    --text-color: #1e293b;
    /* Dark Slate */
    --text-light: #64748b;
    /* Muted Slate */
    --white: #ffffff;
    --black: #000000;

    /* Glassmorphism & Depth */
    --glass-bg: rgb(0 0 0 / 49%);
    --glass-border: rgba(29, 29, 29, 0.586);
    --glass-blur: blur(12px);

    /* Shadows & Elevation */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 40px -10px rgba(12, 26, 58, 0.2);

    /* Spacing, Layout & Transitions */
    --section-padding: 100px 0;
    --component-gap: 32px;
    --heading-gap: 24px;
    --inner-padding: 48px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --border-radius-lg: 32px;
    --max-width: 1320px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

.row>* {
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes particle-drift {
    from {
        transform: translateY(0) rotate(0);
    }

    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

/* Global Typography & Structure */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: var(--heading-gap);
    line-height: 1.3;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

section {
    padding: var(--section-padding);
}

/* Premium Utility Classes */
.py-premium {
    padding: var(--section-padding) !important;
}

.gap-premium {
    gap: var(--component-gap) !important;
}

.inner-p-premium {
    padding: var(--inner-padding) !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================================================
   Premium Utilities
   ===================================================== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 30%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glow-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary-color);
    animation: pulse-slow 3s infinite ease-in-out;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particle-drift infinite linear;
}

.particle-sm {
    width: 2px;
    height: 2px;
}

.particle-md {
    width: 4px;
    height: 4px;
}

.particle-lg {
    width: 6px;
    height: 6px;
}

.speed-slow {
    animation-duration: 40s;
}

.speed-med {
    animation-duration: 25s;
}

.speed-fast {
    animation-duration: 15s;
}

/* =====================================================
   Premium Buttons
   ===================================================== */
.btn-login {
    padding: 10px 24px;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-login:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-register {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-register:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-premium);
    transform: translateY(-2px);
}

/* =====================================================
   Header Styles
   ===================================================== */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-links .divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-links a {
    color: rgba(255, 255, 255, 0.9);
}

.utility-links .app-download {
    color: var(--secondary-color);
    font-weight: 700;
}

.main-nav {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    background: transparent;
    color: var(--primary-color);
}

/* =====================================================
   Premium Hero Slider
   ===================================================== */
.hero-premium-slider {
    position: relative;
    min-height: 90vh;
    background: var(--primary-color);
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    /* Offset for header */
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(12, 26, 58, 0.1) 0%, rgba(12, 26, 58, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.indicator-dot.active {
    width: 40px;
    background: var(--secondary-color);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .slide-content {
        padding: 40px 20px;
    }
}

/* =====================================================
   Services Overview
   ===================================================== */
.services-overview {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
}

.title-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.title-premium span {
    color: var(--secondary-color);
}

.subtitle-premium {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.vertical-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.vertical-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(0, 242, 255, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.bg-blue-soft {
    background: #eff6ff;
}

.bg-cyan-soft {
    background: #ecfeff;
}

.bg-gold-soft {
    background: #fffbeb;
}

.bg-teal-soft {
    background: #f0fdfa;
}

.vertical-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.vertical-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* =====================================================
   Service Ecosystem
   ===================================================== */
.service-ecosystem {
    padding: 100px 0;
    background: var(--white);
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.eco-group {
    background: var(--light-color);
    padding: 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.eco-group:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.eco-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.eco-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.eco-header h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.eco-links li {
    margin-bottom: 12px;
}

.eco-links a {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eco-links a::before {
    content: '→';
    color: var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.eco-links a:hover {
    color: var(--primary-color);
    font-weight: 500;
}

.eco-links a:hover::before {
    opacity: 1;
}

.commission-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 48px;
    border-radius: 100px;
    margin: 0 auto;
    max-width: 900px;
}

.commission-banner i {
    font-size: 32px;
    color: var(--secondary-color);
}

.commission-banner span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.commission-banner a {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.commission-banner a:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

/* =====================================================
   Business Activation (Become RD)
   ===================================================== */
.business-activation {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.benefit-pill-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.benefit-pill {
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

.activation-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.activation-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.activation-icons i {
    font-size: 64px;
    color: var(--primary-color);
}

.activation-icons .plus {
    font-size: 32px;
    color: var(--secondary-color);
}

.activation-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.activation-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-activate {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 16px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.3);
}

.btn-activate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4);
}

/* =====================================================
   Digital Vypaar Section
   ===================================================== */
.digital-vypaar-sectn {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1e7e34 100%);
    text-align: center;
}

.title-3 {
    font-size: 32px;
    color: var(--white);
    line-height: 1.5;
}

.title-3 span {
    color: var(--secondary-color);
    font-weight: 700;
}

/* =====================================================
   Digital Seva Mission Section
   ===================================================== */
.digital-seva-sectn {
    padding: 80px 0;
    background: var(--white);
}

.title-4 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.title-4 span {
    color: var(--primary-color);
}

.digitalContent h6 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.digitalContent p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =====================================================
   Premium About
   ===================================================== */
.premium-about {
    padding: 120px 0;
    background: var(--light-color);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.stat-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-visual {
    flex: 0.8;
}

.visual-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.visual-card img {
    width: 100%;
    height: auto;
}

/* =====================================================
   Trust Banner
   ===================================================== */
.trust-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(12, 26, 58, 0.8), rgba(12, 26, 58, 0.8)),
        url('../images/home/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 40px auto 0;
    opacity: 0.8;
}

/* =====================================================
   Partner Ecosystem & Brand Carousel
   ===================================================== */
.partner-ecosystem {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.partner-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 700;
}

.brand-carousel {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-track:hover {
    animation-play-state: paused;
    filter: grayscale(0);
    opacity: 1;
}

.brand-track img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

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

/* =====================================================
   Visibility Fixes
   ===================================================== */
/* Handled by [data-animate] and global script */

/* =====================================================
   Responsive Adjustments
   ===================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 54px;
    }

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =====================================================
   Global "Studio Level" Page Components (Services, Legal, Utility)
   ===================================================== */
.page-hero-premium {
    position: relative;
    padding: 150px 0 80px;
    /* Reduced from 180px to fix excessive whitespace */
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.page-hero-premium .badge {
    background: rgba(0, 242, 255, 0.15);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.page-hero-premium .hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-premium .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Detail Cards - Migrated to inner-pages-pro.css */

@media (max-width: 991px) {
    .page-hero-premium {
        padding: 140px 0 80px;
    }

    .page-hero-premium .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .benefit-grid-classic {
        grid-template-columns: 1fr;
    }

    .page-hero-premium .hero-title {
        font-size: 32px;
    }
}

/* =====================================================
   Footer Styles
   ===================================================== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    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: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.contact-info li a {
    padding-left: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-premium);
    z-index: 99;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--white);
    transform: translateY(-5px);
}

/* =====================================================
   Page Banner
   ===================================================== */
.page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    padding: 40px 0;
    background: var(--light-color);
    text-align: center;
}

.services-title {
    font-size: 36px;
    color: var(--dark-color);
}

/* Service Details Premium (Global Pattern) - Migrated to inner-pages-pro.css */


@media (max-width: 991px) {
    /* Handled by global responsive query earlier */
}

/* Page Hero Pattern */
.page-hero-premium {
    padding: 160px 0 100px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-premium .hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

/* Remaining Inner Page Components Migrated */
.service-info-card {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .service-info-card {
        padding-left: 0;
        margin-top: 40px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog and Commission Chart styling migrated to inner-pages-pro.css */

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: 1fr 250px 1fr;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        padding: 20px;
    }

    .nav-item a {
        padding: 12px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .digital-pick-cards {
        order: -1;
    }

    .digital-pick-cards img {
        max-width: 200px;
    }

    .bottom-footer .row,
    .footer-links-cards .row {
        grid-template-columns: 1fr;
    }

    .social-area {
        text-align: center;
        margin-top: 20px;
    }

    .social-area ul {
        justify-content: center;
    }

    .exp-digital {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
    }

    .topcont-info,
    .download-play-store {
        justify-content: center;
    }

    .hero-slider {
        height: 300px;
    }

    .section-title h1,
    .section-title h2 {
        font-size: 28px;
    }

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

    .main-cards ul.colm-2 {
        grid-template-columns: 1fr;
    }

    .inst-list {
        flex-direction: column;
        gap: 15px;
    }

    .links-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .services-row {
        grid-template-columns: 1fr;
    }

    .services-cards {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-content-card h2 {
        font-size: 28px;
    }

    .title-busniss {
        font-size: 24px;
    }
}

/* Contact Form and Map styling migrated to inner-pages-pro.css */

/* Service Page Custom Components and Bottom CTA migrated to inner-pages-pro.css */

/* =====================================================
   Premium Animations
   ===================================================== */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Utilities */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

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

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

.p-0 {
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6,
.col-lg-5,
.col-lg-7,
.col-lg-12 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        width: 41.666%;
    }

    .col-lg-7 {
        width: 58.333%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

/* =====================================================
   Studio Level Missing Styles
   ===================================================== */
.top-bar-studio {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.top-extra {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-tag {
    color: var(--secondary-color);
    font-weight: 600;
}

.top-actions {
    display: flex;
    gap: 20px;
}

.main-nav-studio {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    z-index: 1001;
}

.nav-content-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-studio {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.trust-content .title-premium {
    color: #fff;
}

.logo-text-premium span {
    color: var(--secondary-color);
}

.nav-links-studio {
    display: flex;
    gap: 32px;
}

.nav-item-studio {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-item-studio.active,
.nav-item-studio:hover {
    color: var(--secondary-color);
}

.nav-cta-studio {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-studio-outline {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-studio-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-studio-primary {
    padding: 10px 28px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-studio-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--secondary-glow);
}

.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
}

.mobile-menu-trigger .bar {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.premium-reveal {
    animation: slideInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

@media (max-width: 991px) {

    .nav-links-studio,
    .nav-cta-studio .btn-studio-outline,
    .nav-cta-studio .btn-studio-primary {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .container-wide {
        padding: 0 15px;
    }
}

/* =====================================================
   Sticky Header
   ===================================================== */
.glass-header.sticky {
    background: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.glass-header.sticky .top-bar-studio {
    display: none;
    /* Hide top bar on scroll for cleaner look */
}

.glass-header.sticky .main-nav-studio {
    padding: 10px 0;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

.glass-header.sticky .header-logo-img {
    max-height: 40px;
}

/* =====================================================
   Studio Footer
   ===================================================== */
.site-footer-studio {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    width: 100%;
}

.footer-grid-studio {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 80px 30px;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-premium img {
    height: 48px;
}

.logo-text-footer {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.logo-text-footer span {
    color: var(--secondary-color);
}

.footer-mission {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-premium {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-nav-title {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

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

.footer-nav-links li {
    margin-bottom: 16px;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-nav-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-pill-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-pill-footer i {
    font-size: 24px;
    color: var(--secondary-color);
}

.contact-pill-footer a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-pill-footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom-studio {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex-studio {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a:hover {
    color: var(--white);
}

@media (max-width: 991px) {
    .footer-grid-studio {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-grid-studio {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bottom-flex-studio {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}