/* ==========================================================================
   RSC MULTITUDE INDIA PVT. LTD. - PREMIUM CUSTOM CSS
   ========================================================================== */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
    /* Brand Colors */
    --color-primary: #003E9B;     /* Royal Blue */
    --color-secondary: #FF8A00;   /* Orange */
    --color-accent: #22A833;      /* Green */
    
    /* Brand Gradients */
    --grad-primary: linear-gradient(135deg, #003E9B 0%, #002359 100%);
    --grad-secondary: linear-gradient(135deg, #FF8A00 0%, #E06C00 100%);
    --grad-accent: linear-gradient(135deg, #22A833 0%, #157A21 100%);
    --grad-royal-gold: linear-gradient(135deg, #003E9B 0%, #D4AF37 100%);
    --grad-luxury: linear-gradient(135deg, #1e1e24 0%, #0d0d11 100%);
    --grad-soft-bg: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    --grad-dark-glow: radial-gradient(circle at 50% 50%, rgba(0, 62, 155, 0.15) 0%, transparent 80%);
    
    /* Layout Colors */
    --bg-light: #f8fafc;
    --bg-dark: #070b13;
    --card-light: #ffffff;
    --card-dark: rgba(15, 23, 42, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 62, 155, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 62, 155, 0.12);
    --shadow-luxury: 0 15px 40px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 10px 25px rgba(255, 138, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* --- GLOBAL CLASSES --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-blue {
    background-image: linear-gradient(135deg, #0056d6 0%, #002c70 100%);
}

.gradient-orange {
    background-image: var(--grad-secondary);
}

.gradient-green {
    background-image: var(--grad-accent);
}

.gradient-mixed {
    background-image: linear-gradient(135deg, #003E9B 0%, #FF8A00 50%, #22A833 100%);
}

.section-padding {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* --- GLASSMORPHISM --- */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 62, 155, 0.2);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.glass-dark:hover {
    transform: translateY(-8px);
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 138, 0, 0.3);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 9999px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 0.95rem;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-image: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 62, 155, 0.25);
    background-image: linear-gradient(135deg, #004dc0 0%, #002d74 100%);
}

.btn-secondary {
    background-image: var(--grad-secondary);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 138, 0, 0.3);
    background-image: linear-gradient(135deg, #ffa126 0%, #e06c00 100%);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
    height: 4.2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-text span {
    font-size: 0.75rem;
    display: block;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: #475569;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-image: var(--grad-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #030712;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 62, 155, 0.25) 0%, rgba(34, 168, 51, 0.05) 40%, transparent 70%);
}

.hero-bg-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -10%;
    right: 10%;
    animation: floatShape 20s infinite alternate;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 10%;
    left: 10%;
    animation: floatShape 15s infinite alternate-reverse;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    color: #fff;
    padding-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 400px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.85) 0%, rgba(3, 7, 18, 0.1) 100%);
}

.hero-floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-luxury);
    animation: floatingBadge 4s ease-in-out infinite;
}

.badge-top-right {
    top: 10%;
    right: -5%;
    animation-delay: 0.5s;
}

.badge-bottom-left {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

.hero-floating-badge i {
    font-size: 1.5rem;
}

.badge-text span {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.badge-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
}

/* Stats Ribbon */
.stats-ribbon {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SECTION GENERAL HEADERS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: rgba(0, 62, 155, 0.08);
    color: var(--color-primary);
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visuals {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 480px;
}

.about-img-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.about-img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 2;
}

.about-img-2 {
    grid-column: 5 / 13;
    grid-row: 5 / 13;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    grid-column: 2 / 6;
    grid-row: 9 / 12;
    z-index: 3;
    background-image: var(--grad-secondary);
    color: #fff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    animation: floatingBadge 5s ease-in-out infinite alternate;
}

.about-experience-badge h4 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

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

.about-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane ul {
    list-style: none;
    margin-top: 1.5rem;
}

.tab-pane li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.tab-pane li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-accent);
}

/* --- LEADERSHIP MESSAGE SECTION --- */
.leadership-section {
    background-color: #030712;
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 80%, rgba(255, 138, 0, 0.1) 0%, transparent 50%);
}

.ceo-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
}

.ceo-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
}

.ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ceo-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 62, 155, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.ceo-signature-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.ceo-details h3 {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.ceo-title {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
}

.ceo-message {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.ceo-message::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3.5rem;
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    opacity: 0.1;
    color: #fff;
}

.quote-highlight {
    font-weight: 600;
    color: #f8fafc;
    border-left: 3px solid var(--color-secondary);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.ceo-quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    color: #fff;
    font-size: 1.1rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.85rem;
}

/* --- BUSINESS COMPARISON --- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.comparison-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.comp-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.75rem;
    transition: var(--transition-smooth);
}

.comp-icon-box.blue {
    background: rgba(0, 62, 155, 0.1);
    color: var(--color-primary);
}

.comp-icon-box.orange {
    background: rgba(255, 138, 0, 0.1);
    color: var(--color-secondary);
}

.comp-icon-box.green {
    background: rgba(34, 168, 51, 0.1);
    color: var(--color-accent);
}

.comp-icon-box.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.comparison-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.comparison-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.comp-features-list {
    list-style: none;
    text-align: left;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comp-features-list li {
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-features-list li.pro i {
    color: var(--color-accent);
}

.comp-features-list li.con i {
    color: #ef4444;
}

.comparison-card.highlight {
    background: #030712;
    border: 2px solid var(--color-secondary);
    color: #fff;
}

.comparison-card.highlight h3 {
    color: #fff;
}

.comparison-card.highlight p {
    color: #94a3b8;
}

.comparison-card.highlight .comp-features-list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.comparison-card.highlight .comp-features-list li {
    color: #cbd5e1;
}

.comparison-card.highlight:hover {
    border-color: var(--color-primary);
}

/* --- SYSTEM WORKFLOW SECTION --- */
.system-section {
    background-color: #f1f5f9;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.workflow-connector {
    position: absolute;
    top: 3.5rem;
    left: 5%;
    width: 90%;
    height: 3px;
    background: dashed #cbd5e1;
    z-index: 1;
}

.workflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-image: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
    transition: var(--transition-smooth);
}

.workflow-step:hover .step-number {
    transform: scale(1.15);
    background-image: var(--grad-secondary);
    box-shadow: var(--shadow-gold);
}

.workflow-step h3 {
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    font-size: 0.85rem;
    color: #64748b;
    max-width: 180px;
}

/* --- INCOME & BENEFITS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
}

.benefit-card.orange::before {
    background: var(--color-secondary);
}

.benefit-card.green::before {
    background: var(--color-accent);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-card.orange .benefit-icon {
    color: var(--color-secondary);
}

.benefit-card.green .benefit-icon {
    color: var(--color-accent);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- REWARDS SHOWCASE --- */
.rewards-section {
    background-color: #030712;
    position: relative;
    overflow: hidden;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reward-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.reward-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.4) 0%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.reward-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(255, 138, 0, 0.15);
}

.reward-card:hover::after {
    opacity: 1;
}

.reward-badge-glow {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.reward-badge-glow i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    filter: drop-shadow(0 0 8px rgba(255, 138, 0, 0.6));
    transition: var(--transition-smooth);
}

.reward-card:hover .reward-badge-glow i {
    transform: scale(1.15);
}

.reward-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reward-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.reward-luxury-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 138, 0, 0.15);
    color: var(--color-secondary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- WELLNESS PRODUCTS --- */
.wellness-section {
    background: linear-gradient(180deg, #f8fafc 0%, rgba(34, 168, 51, 0.04) 100%);
    position: relative;
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wellness-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.product-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-icon-frame {
    width: 5rem;
    height: 5rem;
    background: rgba(34, 168, 51, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-accent);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon-frame {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.product-card p {
    font-size: 0.85rem;
    color: #64748b;
}

/* --- SUCCESS GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.col-span-2 {
    grid-column: span 2;
}

.gallery-item.row-span-2 {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 62, 155, 0.9) 0%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background-color: #f8fafc;
}

.testimonial-slider {
    padding-bottom: 3.5rem;
}

.testimonial-card {
    padding: 3rem 2.5rem;
    margin: 1rem;
}

.rating-stars {
    color: #ffb700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.test-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-frame {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 1.05rem;
    color: #0f172a;
}

.user-meta p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(0, 62, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.contact-card-box.orange .contact-icon-wrapper {
    background: rgba(255, 138, 0, 0.08);
    color: var(--color-secondary);
}

.contact-card-box.green .contact-icon-wrapper {
    background: rgba(34, 168, 51, 0.08);
    color: var(--color-accent);
}

.contact-details-text h4 {
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.contact-details-text p, .contact-details-text a {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-details-text a:hover {
    color: var(--color-primary);
}

.social-links-container {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-circle-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
}

.social-circle-btn:hover {
    background-image: var(--grad-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* Contact Form */
.contact-form-panel {
    padding: 3rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 62, 155, 0.1);
}

.map-wrapper {
    margin-top: 4rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    border: 1px solid #e2e8f0;
}

/* --- FOOTER --- */
footer {
    background-color: #030712;
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-desc {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background-image: var(--grad-secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.newsletter-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.newsletter-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-image: var(--grad-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

/* --- LIGHTBOX (Success Gallery) --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-frame {
    max-width: 90%;
    max-height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content-frame {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-luxury);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

@keyframes floatingBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-only-link {
    display: none;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visuals {
        display: none; /* Hide standard floating visual card, show mobile representation if needed */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ceo-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .ceo-image-container {
        height: 350px;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-connector {
        display: none;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wellness-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-only-link {
        display: block;
    }

    .nav-menu, .nav-cta .btn {
        display: none; /* Handled by mobile menu */
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Mobile Navigation Drawer */
    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 2rem;
        border-bottom: 2px solid #e2e8f0;
        box-shadow: var(--shadow-lg);
        animation: fadeIn 0.4s ease;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .comparison-grid, .benefits-grid, .rewards-grid, .gallery-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.col-span-2 {
        grid-column: span 1;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* =========================
   TOP HEADER BAR CSS
========================= */

.top-bar {
    background: #003E9B;
    color: #ffffff;
    padding: 10px 30px;
    font-size: 14px;
    position: relative;
    z-index: 999;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left span,
.top-bar-left a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.top-bar-left a:hover {
    color: #ff8a00;
}

.top-bar-left i {
    margin-right: 8px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-social a {
    color: #ffffff;
    font-size: 17px;
    transition: 0.3s ease;
}

.top-social a:hover {
    color: #ff8a00;
    transform: translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .top-bar {
        padding: 12px 15px;
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        justify-content: center;
        gap: 10px;
    }

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

}