/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Himalayan Minimalism - Breathing Space */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #0F4C81;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Samsara Scroll Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="himalayan" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="80" fill="%23FF9933" opacity="0.05"/><path d="M50 150 Q100 50 150 150" stroke="%230F4C81" stroke-width="2" fill="none" opacity="0.03"/><circle cx="150" cy="50" r="20" fill="%236D4C3D" opacity="0.02"/></pattern></defs><rect width="1200" height="800" fill="url(%23himalayan)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Container with Golden Ratio */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Breathing Space - 40%+ whitespace */
section {
    padding: 120px 0;
    margin: 80px 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Osho Quote Header - Himalayan Style */
.osho-quote-header {
    background: linear-gradient(135deg, #0F4C81 0%, #FF9933 50%, #6D4C3D 100%);
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 4px 30px rgba(15, 76, 129, 0.2);
    backdrop-filter: blur(10px);
}

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

.quote-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.quote-text {
    flex: 1;
    text-align: center;
}

.quote-line {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.quote-author {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.quote-controls {
    display: flex;
    gap: 0.5rem;
}

.quote-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Osho Philosophy Quote */
.osho-philosophy-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.osho-philosophy-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 107, 53, 0.1));
    pointer-events: none;
}

.philosophy-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.philosophy-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    animation: gentleFloat 4s ease-in-out infinite;
}

.philosophy-content blockquote {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.philosophy-source {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.philosophy-explanation {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Osho Wisdom Widget */
.osho-wisdom-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.widget-header {
    text-align: center;
    margin-bottom: 3rem;
}

.widget-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.widget-header p {
    color: #666;
    font-size: 1.1rem;
}

.widget-content {
    max-width: 800px;
    margin: 0 auto;
}

.wisdom-widget-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wisdom-widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #ff6b35);
}

.widget-quote {
    margin-bottom: 2rem;
}

.widget-quote-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.widget-quote blockquote {
    font-size: 1.4rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.widget-quote-author {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.widget-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.widget-btn {
    background: linear-gradient(135deg, #8b5cf6, #ff6b35);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Bodhisattva Micro-interactions */
.lotus-loading {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 2rem auto;
}

.lotus-loading::before {
    content: '🌸';
    font-size: 3rem;
    animation: lotusBloom 3s ease-in-out infinite;
    display: block;
    text-align: center;
}

@keyframes lotusBloom {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Form Fields with Om Mani Padme Hum */
.form-field {
    position: relative;
    margin-bottom: 2rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 2px solid rgba(15, 76, 129, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #FF9933;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
    transform: translateY(-2px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6D4C3D;
    opacity: 0.7;
    font-style: italic;
    transition: all 0.3s ease;
}

.form-field input:focus::placeholder,
.form-field textarea:focus::placeholder {
    opacity: 0.3;
    transform: translateX(10px);
}

/* Khukuri Sharpness CTAs */
.btn-khukuri {
    background: linear-gradient(135deg, #0F4C81, #FF9933);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.3);
}

.btn-khukuri::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-khukuri:hover::before {
    left: 100%;
}

.btn-khukuri:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(15, 76, 129, 0.4);
}

/* Yeti Footprints - Interaction Clues */
.yeti-footprint {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="12" fill="%23FF9933" opacity="0.1"/><circle cx="12" cy="12" r="3" fill="%23FF9933" opacity="0.3"/><circle cx="18" cy="12" r="3" fill="%23FF9933" opacity="0.3"/><circle cx="15" cy="18" r="3" fill="%23FF9933" opacity="0.3"/></svg>');
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.yeti-footprint.active {
    opacity: 1;
    animation: footprintGlow 2s ease-in-out infinite;
}

@keyframes footprintGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Unity Footer */
.unity-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(255, 153, 51, 0.2);
    position: relative;
    overflow: hidden;
}

.unity-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(15, 76, 129, 0.05));
    pointer-events: none;
}

.unity-symbol {
    display: inline-block;
    margin-bottom: 1rem;
    animation: gentleFloat 4s ease-in-out infinite;
}

.dharmalaya-small {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 10px rgba(255, 153, 51, 0.3));
}

.unity-text {
    position: relative;
    z-index: 2;
}

.sanskrit-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
    color: #FF9933;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 153, 51, 0.3);
}

.english-text {
    font-size: 1rem;
    color: #bdc3c7;
    font-style: italic;
    opacity: 0.9;
}

/* Footer Osho Quote */
.footer-osho-quote {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 3px solid #FF9933;
}

.footer-osho-quote blockquote {
    font-size: 1.1rem;
    color: #bdc3c7;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-quote-source {
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Dharma Navigation - 8-Fold Path Inspired */
.navbar {
    position: fixed;
    top: 80px; /* Adjusted for quote header */
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(15, 76, 129, 0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 2rem;
    color: #0F4C81;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(15, 76, 129, 0.2);
}

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

.nav-link {
    color: #0F4C81;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    color: #FF9933;
    background: rgba(255, 153, 51, 0.1);
    transform: translateY(-2px);
}

/* Dharma Virtues on Hover */
.nav-link::before {
    content: attr(data-virtue);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #6D4C3D;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.nav-link:hover::before {
    opacity: 1;
    top: -50px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Chapter Structure */
.chapter {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.chapter-number {
    position: absolute;
    top: 100px;
    right: 50px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.chapter-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.chapter-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.chapter-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.chapter-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Story Elements */
.story-element {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-icon {
    font-size: 3rem;
    color: #3498db;
    min-width: 80px;
    text-align: center;
}

.story-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Chapter Navigation */
.chapter-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link-prev,
.nav-link-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link-prev:hover,
.nav-link-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Dharmalaya Symbol - Abode of Dharma */
.dharmalaya-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    position: relative;
    cursor: pointer;
}

.dharmalaya {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 20px rgba(255, 153, 51, 0.3));
}

.himalayan-ring {
    animation: mountainPulse 8s ease-in-out infinite;
    transform-origin: center;
}

.water-waves {
    animation: waterFlow 6s ease-in-out infinite;
    transform-origin: center;
}

.petals {
    transform-origin: center;
}

.petal {
    animation: breathe 6s infinite alternate;
    transform-origin: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.petal:hover {
    fill: #8E44AD;
    transform: scale(1.1);
}

.central-om {
    animation: gentleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(15, 76, 129, 0.3));
}

.unity-text {
    opacity: 0.8;
    font-weight: 500;
}

/* Dharmalaya Animations */
@keyframes breathe {
    0% { transform: scale(0.95); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes mountainPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; }
}

@keyframes waterFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.01) rotate(1deg); }
}

/* Hover Effects */
.dharmalaya:hover .petals {
    animation: rotateSymbols 20s linear infinite;
}

.dharmalaya:hover .himalayan-ring {
    stroke: #FF9933;
    stroke-width: 3;
}

.dharmalaya:hover .water-waves {
    stroke: #8E44AD;
    stroke-width: 2;
}

@keyframes rotateSymbols {
    to { transform: rotate(360deg); }
}

/* Tooltip for petals */
.petal::after {
    content: attr(data-symbol);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #6D4C3D;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.petal:hover::after {
    opacity: 1;
    top: -40px;
}

/* Vikram's Signature Trademark - Himalayan Style */
.signature-trademark {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trademark-symbol {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.2);
}

.trademark-symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.trademark-symbol:hover::before {
    left: 100%;
}

.trademark-symbol:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.signature-icon {
    font-size: 4rem;
    color: #FF9933; /* Himalayan Saffron */
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(255, 153, 51, 0.4);
    animation: gentleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.3));
}

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

.trademark-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0F4C81, #FF9933, #6D4C3D); /* Deep Blue, Saffron, Earth */
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.trademark-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trademark-text {
    font-size: 1rem;
    color: #0F4C81 !important;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trademark-symbol:hover .trademark-text {
    opacity: 1;
    letter-spacing: 4px;
}

/* Hero Section - Thangka-Informed Hierarchy */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F4C81 0%, #FF9933 50%, #6D4C3D 100%);
    color: white;
    padding-top: 160px; /* Adjusted for quote header + navbar */
    position: relative;
    overflow: hidden;
}

/* Buddha Eyes Section Dividers */
.hero::before {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.1;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FF9933" stroke-width="2" opacity="0.1"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23FF9933" stroke-width="1" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

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

/* Profile Container with Nepal Flag Integration */
.profile-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Himalayan Badge - Nepal Flag */
.nepal-flag-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px; /* 15% of profile image width */
    height: 36px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: flagFloat 3s ease-in-out infinite;
}

.flag-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(220, 20, 60, 0.3));
    transition: all 0.3s ease;
}

.nepal-flag-badge:hover .flag-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(220, 20, 60, 0.5));
}

/* Flag Animations */
@keyframes flagFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-3px) rotate(1deg); 
        opacity: 1; 
    }
}

/* Cultural Tooltip */
.flag-tooltip {
    position: absolute;
    bottom: 45px;
    right: 0;
    background: rgba(15, 76, 129, 0.95);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 20;
}

.flag-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    border: 8px solid transparent;
    border-top-color: rgba(15, 76, 129, 0.95);
}

.nepal-flag-badge:hover .flag-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-text {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.tooltip-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

/* Pride Reflection */
.pride-reflection {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 25px;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.3) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(0, 0, 255, 0.3) 100%);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.6;
    mix-blend-mode: multiply;
    animation: reflectionPulse 4s ease-in-out infinite;
}

@keyframes reflectionPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(0.8); }
    50% { opacity: 0.7; transform: translateX(-50%) scaleY(1.1); }
}

/* Buddhist-Nepali Fusion Border */
.fusion-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        #DC143C 0%, 
        #FF9933 25%, 
        #FFFFFF 50%, 
        #0F4C81 75%, 
        #6D4C3D 100%);
    padding: 4px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.profile-container:hover .fusion-border {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Celestial Symbols */
.celestial-symbols {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    animation: symbolGlow 3s ease-in-out infinite;
}

.symbol-1 {
    top: 30px;
    left: 30px;
    animation-delay: 0s;
}

.symbol-2 {
    top: 30px;
    right: 30px;
    animation-delay: 1s;
}

.symbol-3 {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.profile-container:hover .symbol {
    opacity: 0.8;
    transform: scale(1.2);
}

@keyframes symbolGlow {
    0%, 100% { 
        opacity: 0; 
        transform: scale(1) rotate(0deg); 
        filter: drop-shadow(0 0 5px rgba(255, 153, 51, 0.5));
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(180deg); 
        filter: drop-shadow(0 0 15px rgba(255, 153, 51, 0.8));
    }
}

/* Anthem Controls */
.anthem-controls {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}

.anthem-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #0F4C81;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.anthem-btn:hover {
    background: rgba(255, 153, 51, 0.3);
    transform: scale(1.1);
    color: white;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Easter Egg Hints */
.easter-egg-hint {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.easter-egg-hint:hover {
    opacity: 1;
}

.profile-hint {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.8rem;
    color: white;
    transition: opacity 0.3s ease;
}

.profile-hint:hover {
    opacity: 1;
}

/* Chapter number cursor hint */
.chapter-number {
    cursor: pointer;
    transition: all 0.3s ease;
}

.chapter-number:hover {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Service cards cursor hint */
.service-card {
    cursor: pointer;
}

/* Skill tags cursor hint */
.skill-tag {
    cursor: pointer;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

/* About Section */
.about {
    background: white;
}

.about.chapter {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
}

.about.chapter .chapter-number {
    color: rgba(52, 152, 219, 0.1);
}

.about.chapter .story-element {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.about.chapter .story-text h3 {
    color: #2c3e50;
}

.about.chapter .story-text p {
    color: #555;
}

.about.chapter .chapter-navigation {
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.about.chapter .nav-link-prev,
.about.chapter .nav-link-next {
    color: #2c3e50;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.about.chapter .nav-link-prev:hover,
.about.chapter .nav-link-next:hover {
    background: rgba(52, 152, 219, 0.2);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Personal Story */
.personal-story {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border-left: 5px solid #3498db;
    position: relative;
    overflow: hidden;
}

.personal-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-content h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-quote {
    background: rgba(52, 152, 219, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    position: relative;
    border-left: 4px solid #3498db;
}

.story-quote i {
    color: #3498db;
    font-size: 1.5rem;
    position: absolute;
}

.story-quote i.fa-quote-left {
    top: 1rem;
    left: 1rem;
}

.story-quote i.fa-quote-right {
    bottom: 1rem;
    right: 1rem;
}

.story-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    padding: 0 2rem;
    text-align: center;
    line-height: 1.6;
}

/* Wisdom Quotes */
.wisdom-quote {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
}

.wisdom-quote .quote-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-align: center;
}

.wisdom-quote blockquote {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.8;
}

.wisdom-quote .quote-translation {
    display: block;
    font-style: italic;
    margin: 1rem 0;
    opacity: 0.9;
    font-size: 1rem;
}

.wisdom-quote .quote-source {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-weight: 500;
}

/* Ancient Wisdom Section */
.wisdom {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
}

.wisdom-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.wisdom-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wisdom-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.wisdom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #3498db;
}

.wisdom-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.wisdom-card:hover .wisdom-icon {
    transform: scale(1.1);
}

.wisdom-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.wisdom-verse {
    text-align: left;
}

.wisdom-verse .sanskrit {
    font-size: 1.1rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.wisdom-verse .translation {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.wisdom-verse .meaning {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.education-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.details h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.details p {
    color: #666;
}

/* Experience Section */
.experience {
    background: #f8f9fa;
}

.experience.chapter {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #2c3e50;
}

.experience.chapter .chapter-number {
    color: rgba(52, 152, 219, 0.1);
}

.experience.chapter .story-element {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.experience.chapter .story-text h3 {
    color: #2c3e50;
}

.experience.chapter .story-text p {
    color: #555;
}

.experience.chapter .chapter-navigation {
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.experience.chapter .nav-link-prev,
.experience.chapter .nav-link-next {
    color: #2c3e50;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.experience.chapter .nav-link-prev:hover,
.experience.chapter .nav-link-next:hover {
    background: rgba(52, 152, 219, 0.2);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #3498db;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: calc(50% - 30px);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-date {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.achievement-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 25px;
    margin: 1rem 0;
    border-left: 3px solid #3498db;
}

.achievement-highlight i {
    color: #3498db;
    font-size: 1rem;
}

.achievement-highlight span {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.company-link:hover {
    text-decoration: underline;
}

/* Services Section */
.services {
    background: white;
}

.services.chapter {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #2c3e50;
}

.services.chapter .chapter-number {
    color: rgba(46, 204, 113, 0.1);
}

.services.chapter .story-element {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.services.chapter .story-text h3 {
    color: #2c3e50;
}

.services.chapter .story-text p {
    color: #555;
}

.services.chapter .chapter-navigation {
    border-top: 1px solid rgba(46, 204, 113, 0.2);
}

.services.chapter .nav-link-prev,
.services.chapter .nav-link-next {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.services.chapter .nav-link-prev:hover,
.services.chapter .nav-link-next:hover {
    background: rgba(46, 204, 113, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.value-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Skills Section */
.skills {
    background: #f8f9fa;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.skills-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: white;
}

.contact.chapter {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #2c3e50;
}

.contact.chapter .chapter-number {
    color: rgba(243, 156, 18, 0.1);
}

.contact.chapter .story-element {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contact.chapter .story-text h3 {
    color: #2c3e50;
}

.contact.chapter .story-text p {
    color: #555;
}

.contact.chapter .chapter-navigation {
    border-top: 1px solid rgba(243, 156, 18, 0.2);
}

.contact.chapter .nav-link-prev,
.contact.chapter .nav-link-next {
    color: #2c3e50;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contact.chapter .nav-link-prev:hover,
.contact.chapter .nav-link-next:hover {
    background: rgba(243, 156, 18, 0.2);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: #3498db;
    min-width: 60px;
    text-align: center;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: #666;
    text-decoration: none;
}

.contact-details a:hover {
    color: #3498db;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-easter-egg {
    margin-top: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-easter-egg:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    /* Mobile signature element adjustments */
    .signature-element {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        margin: 0 auto;
    }

    .signature-text {
        font-size: 1.5rem;
    }

    .signature-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .signature-line {
        width: 40px;
    }

    /* Mobile personal story adjustments */
    .personal-story {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .story-content h3 {
        font-size: 1.5rem;
    }

    .story-text {
        font-size: 1rem;
        text-align: left;
    }

    .story-quote {
        padding: 1.5rem;
    }

    .story-quote blockquote {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Mobile values adjustments */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    /* Mobile achievement highlights */
    .achievement-highlight {
        padding: 0.6rem 0.8rem;
    }

    .achievement-highlight span {
        font-size: 0.8rem;
    }

    /* Mobile chapter structure */
    .chapter-number {
        font-size: 4rem;
        top: 80px;
        right: 20px;
    }

    .chapter-title {
        font-size: 2.5rem;
    }

    .chapter-subtitle {
        font-size: 1.1rem;
    }

    .story-element {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .story-icon {
        font-size: 2.5rem;
        min-width: auto;
    }

    .story-text h3 {
        font-size: 1.3rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .chapter-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-link-prev,
    .nav-link-next {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Osho quote header adjustments */
    .osho-quote-header {
        padding: 0.8rem 0;
    }

    .quote-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .quote-btn {
        width: 35px;
        height: 35px;
    }

    /* Mobile philosophy quote adjustments */
    .osho-philosophy-quote {
        padding: 2rem;
        margin: 2rem 0;
    }

    .philosophy-content blockquote {
        font-size: 1.1rem;
    }

    .philosophy-explanation {
        font-size: 0.9rem;
    }

    /* Mobile widget adjustments */
    .wisdom-widget-card {
        padding: 2rem;
    }

    .widget-quote blockquote {
        font-size: 1.2rem;
    }

    .widget-controls {
        flex-direction: column;
        align-items: center;
    }

    .widget-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    /* Mobile Himalayan adjustments */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
        margin: 40px 0;
    }
    
    .section-content {
        padding: 0 20px;
    }

    /* Mobile trademark element adjustments */
    .signature-trademark {
        margin-bottom: 2rem;
    }

    .trademark-symbol {
        padding: 1.5rem 2rem;
    }

    .signature-icon {
        font-size: 2.5rem;
    }

    .trademark-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .trademark-line {
        width: 50px;
    }
    
    /* Mobile navigation adjustments */
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Mobile form adjustments */
    .form-field input,
    .form-field textarea {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-khukuri {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Mobile Dharmalaya adjustments */
    .dharmalaya-container {
        width: 80px;
        height: 80px;
    }
    
    .dharmalaya-small {
        width: 40px;
        height: 40px;
    }
    
    .sanskrit-text {
        font-size: 1rem;
    }
    
    .english-text {
        font-size: 0.9rem;
    }
    
    .unity-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Mobile Nepal Flag adjustments */
    .nepal-flag-badge {
        width: 45px;
        height: 27px;
        bottom: 20px;
        right: 20px;
    }
    
    .pride-reflection {
        width: 280px;
        height: 20px;
        bottom: -10px;
    }
    
    .symbol {
        font-size: 1.5rem;
    }
    
    .symbol-1 {
        top: 20px;
        left: 20px;
    }
    
    .symbol-2 {
        top: 20px;
        right: 20px;
    }
    
    .symbol-3 {
        bottom: 20px;
    }
    
    .anthem-controls {
        top: 20px;
        right: 20px;
    }
    
    .anthem-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Mobile wisdom adjustments */
    .wisdom-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .wisdom-quote blockquote {
        font-size: 1rem;
    }

    .wisdom-quote .quote-translation {
        font-size: 0.9rem;
    }

    .wisdom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wisdom-card {
        padding: 2rem 1.5rem;
    }

    .wisdom-verse .sanskrit {
        font-size: 1rem;
    }

    .wisdom-verse .translation {
        font-size: 0.9rem;
    }

    .wisdom-verse .meaning {
        font-size: 0.9rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .timeline-content::before {
        left: -35px !important;
    }

    .education-item {
        flex-direction: column;
        gap: 1rem;
    }

    .year {
        min-width: auto;
    }

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

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

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Interactive Signature Element */
.signature-container {
    margin-top: 2rem;
    position: relative;
}

.signature-element {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.signature-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.signature-element:hover::before {
    left: 100%;
}

.signature-element:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.signature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.signature-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.signature-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.signature-element:hover .signature-text {
    transform: scale(1.1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.signature-dots {
    display: flex;
    gap: 0.3rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    animation: pulse 2s infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.dot:nth-child(1) { --i: 0; }
.dot:nth-child(2) { --i: 1; }
.dot:nth-child(3) { --i: 2; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.signature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 152, 219, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.signature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.signature-element:hover .signature-badge::before {
    left: 100%;
}

.signature-element:hover .signature-badge {
    background: rgba(52, 152, 219, 1);
    transform: scale(1.05);
}

.signature-badge i {
    font-size: 1rem;
    animation: rotate 4s linear infinite;
}

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

/* Signature click animation */
.signature-element.clicked {
    animation: signatureClick 0.6s ease;
}

@keyframes signatureClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Signature floating animation */
.signature-element {
    animation: float 6s ease-in-out infinite;
}

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

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Message in a Bottle Contact Form */
.creative-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.message-bottle {
  position: relative;
  width: 320px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 60%, #ffffff 100%);
  border-radius: 60px 60px 40px 40px / 100px 100px 60px 60px;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.18), 0 2px 8px rgba(0,0,0,0.08);
  overflow: visible;
  padding-bottom: 2.5rem;
  border: 2px solid rgba(15, 76, 129, 0.08);
  transition: box-shadow 0.3s;
}

.bottle-neck {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 38px;
  background: linear-gradient(135deg, #b2ebf2 60%, #ffffff 100%);
  border-radius: 30px 30px 18px 18px / 40px 40px 18px 18px;
  border: 2px solid rgba(15, 76, 129, 0.12);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(15, 76, 129, 0.08);
}

.bottle-body {
  padding: 2.5rem 2rem 1.5rem 2rem;
  border-radius: 40px 40px 30px 30px / 60px 60px 40px 40px;
  background: transparent;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle-base {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 36px;
  background: linear-gradient(135deg, #b2ebf2 60%, #ffffff 100%);
  border-radius: 0 0 60px 60px / 0 0 36px 36px;
  border: 2px solid rgba(15, 76, 129, 0.12);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(15, 76, 129, 0.08);
}

.bottle-body h3 {
  font-family: 'Poppins', cursive, sans-serif;
  font-size: 1.4rem;
  color: #0F4C81;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
}

#bottleForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.bottle-textarea, .bottle-email {
  width: 100%;
  background: transparent;
  border: 2px dashed #0F4C81;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-family: 'Indie Flower', 'Poppins', cursive, sans-serif;
  font-size: 1.05rem;
  color: #0F4C81;
  resize: none;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(15, 76, 129, 0.06);
}

.bottle-textarea:focus, .bottle-email:focus {
  border-color: #2196F3;
  box-shadow: 0 0 8px #2196F3;
}

.bottle-textarea::placeholder, .bottle-email::placeholder {
  color: #6D4C3D;
  opacity: 0.7;
  font-family: 'Indie Flower', 'Poppins', cursive, sans-serif;
  font-size: 1.05rem;
}

.bottle-submit {
  background: linear-gradient(90deg, #2196F3 60%, #0F4C81 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-family: 'Poppins', cursive, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.bottle-submit:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.28);
}

/* Waves Decoration */
.waves {
  width: 100vw;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100" viewBox="0 0 1440 80" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 Q360 80 720 40 T1440 40 V80 H0 V40Z" fill="%230F4C81" fill-opacity="0.12"/><path d="M0 60 Q360 100 720 60 T1440 60 V80 H0 V60Z" fill="%23FF9933" fill-opacity="0.10"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -30px;
  z-index: 1;
  pointer-events: none;
}

/* Bottle Float Animation */
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-10px); }
  40% { transform: translateY(5px); }
  60% { transform: translateY(-7px); }
  80% { transform: translateY(3px); }
}

.message-bottle.floating {
  animation: bottleFloat 2s ease-in-out;
}

@media (max-width: 600px) {
  .message-bottle {
    width: 95vw;
    min-width: 0;
    padding-bottom: 1.2rem;
  }
  .bottle-body {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .bottle-base {
    width: 70px;
    height: 20px;
  }
  .bottle-neck {
    width: 32px;
    height: 18px;
  }
  .waves {
    height: 50px;
  }
}

/* Live Date and Day Display - Floating Circular Style (with inner day circle) */
.date-display.date-floating {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  min-width: 0;
  min-height: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 60%, #ffffff 100%);
  color: #0F4C81;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(15, 76, 129, 0.10);
  padding: 0;
  opacity: 0.98;
  letter-spacing: 0.3px;
  border: 1.5px solid #FF9933;
  animation: dateRotate 12s linear infinite;
  transition: box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  user-select: none;
}

@keyframes dateRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.date-display.date-floating:hover {
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.14);
  background: linear-gradient(135deg, #b2ebf2 0%, #e0f7fa 100%);
}

.date-display.date-floating .date-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #FF9933 60%, #fff7e6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.48rem;
  letter-spacing: 0.5px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(255, 153, 51, 0.10);
  border: 1px solid #FF9933;
  margin-top: 4px;
  margin-bottom: 2px;
  text-align: center;
  opacity: 0.98;
  transition: background 0.3s, color 0.3s;
}

.date-display.date-floating .date-full {
  color: #0F4C81;
  opacity: 0.85;
  font-size: 0.48rem;
  text-align: center;
  line-height: 1.1;
  word-break: break-word;
  margin-top: 0;
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  .date-display.date-floating {
    width: 32px;
    height: 32px;
    font-size: 0.48rem;
    top: 6px;
    right: 4px;
    padding: 0;
  }
  .date-display.date-floating .date-day {
    width: 14px;
    height: 14px;
    font-size: 0.32rem;
    margin-top: 2px;
    margin-bottom: 1px;
  }
  .date-display.date-floating .date-full {
    font-size: 0.32rem;
    margin-bottom: 2px;
  }
}

#language-switcher {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3100;
  min-width: 0;
  min-height: 0;
  padding: 2px 6px;
  font-size: 0.78rem;
  border-radius: 6px;
  border: 1px solid #b2ebf2;
  background: #fff;
  color: #0F4C81;
  box-shadow: 0 1px 4px rgba(15, 76, 129, 0.07);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
#language-switcher:focus {
  border: 1.5px solid #FF9933;
  box-shadow: 0 2px 8px rgba(255, 153, 51, 0.10);
}

@media (max-width: 600px) {
  #language-switcher {
    top: 4px;
    left: 4px;
    font-size: 0.62rem;
    padding: 1px 3px;
    border-radius: 4px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.name-header {
  position: fixed;
  top: 20px;
  left: 30px;
  right: auto;
  z-index: 3300;
  font-family: 'Pacifico', 'Arial Black', cursive, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  letter-spacing: 1.5px;
  animation: wave 3s ease-in-out infinite;
  padding: 0.1em 0.7em 0.1em 0.7em;
  border-radius: 14px 14px 24px 24px/14px 14px 28px 28px;
  overflow: visible;
}

.name-header::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px; height: 12px;
  z-index: -1;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 200 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 6 Q50 12 100 6 T200 6 V12 H0Z" fill="%230F4C81" fill-opacity="0.18"/></svg>') repeat-x;
  background-size: 100% 100%;
  pointer-events: none;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-7px); }
  50% { transform: translateY(5px); }
  70% { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .name-header {
    font-size: 0.85rem;
    top: 6px;
    left: 6px;
    padding: 0.05em 0.4em 0.05em 0.4em;
  }
  .name-header::before {
    height: 7px;
  }
}

.v-upside {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 8px;
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .v-upside {
    margin-top: 4px;
    margin-bottom: 4px;
  }
} 