/*
 * GuardianPlayer Styles - Cleaned and Optimized Version
 * Author: Saifullah
 * Website: saifullah.ai
 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

body[lang="ar"], body[lang="ur"], body[lang="fa"], body[lang="dv"] {
    direction: rtl;
}

body[lang="zh"] {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
}

body[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}


body[lang="ja"] {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

body[lang="ko"] {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
}

body[lang="th"] {
    font-family: 'Noto Sans Thai', 'Inter', sans-serif;
}

/* Steps grid - how it works section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
}

.steps .step:nth-child(4):nth-last-child(1) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .steps .step:nth-child(4):nth-last-child(1) {
        grid-column: span 1;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .steps .step:nth-child(4):nth-last-child(1) {
        grid-column: 2 / 3;
        max-width: none;
    }
}




/* Navigation left - logo area */
.nav-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
    gap: 8px;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto;
}

.nav-left svg {
    flex-shrink: 0;
    position: relative;
    z-index: 9998;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-right: 12px;
}


body[lang="te"] {
    font-family: 'Noto Sans Telugu', 'Inter', sans-serif;
}

body[lang="ta"] {
    font-family: 'Noto Sans Tamil', 'Inter', sans-serif;
}

body[lang="pa"] {
    font-family: 'Noto Sans Gurmukhi', 'Inter', sans-serif;
}

body[lang="bn"] {
    font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
}

body[lang="fa"] {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

body[lang="ur"] {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

body[lang="dv"] {
    font-family: 'Noto Sans Thaana', 'Inter', sans-serif;
}

body[lang="dz"] {
    font-family: 'Noto Sans Tibetan', 'Inter', sans-serif;
}

/* ===== LAYOUT & ANIMATIONS ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    border-radius: 50%;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: #45b7d1;
    border-radius: 15px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 70px;
    height: 70px;
    background: #f9ca24;
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.hero h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-base {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

/* Primary download button */
.download-btn {
    background: #4f46e5;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.5em;
    letter-spacing: 2px;
    gap: 12px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #3730a3;
    color: #ffffff;
}

.download-btn:active {
    transform: translateY(-2px);
}

.support-plea {
    font-size: 1em !important;
    color: #666 !important;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.support-plea a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.support-plea a:hover {
    border-color: #667eea;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    margin: -5px 20px 20px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 5;
    position: relative;
}

.trust-item {
    font-size: 1em;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: #764ba2;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 20px;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 350px;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 4em;
    height: 4em;
    margin: 0 auto 20px auto;
    display: block;
    text-align: center;
    color: #667eea; /* Or any other suitable color */
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.feature-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.5;
}

.testimonials-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Center single testimonial card when it's alone in a row */
.testimonial-card:last-child:nth-child(odd) {
    max-width: 400px;
    justify-self: center;
}

/* ===== RESPONSIVE STYLES ===== */
/* Reset centering when there are even number of cards or when screen is narrow */
@media (max-width: 768px) {
    .testimonial-card:last-child:nth-child(odd) {
        max-width: none;
        justify-self: stretch;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.testimonial-text {
    font-size: 1.1em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1em;
    font-weight: 700;
    color: #667eea;
    text-align: right;
}

.how-it-works {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

/* Steps - how it works section - duplicate removed */

.step {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step p {
    font-size: 1.1em;
    line-height: 1.4;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95), rgba(34, 34, 34, 0.95));
    color: white;
    margin: 20px;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 40px 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section:first-child {
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-logo-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 280px;
}

.footer-section h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
    display: inline-block;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.footer-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-languages a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-languages a:hover {
    background: rgba(102, 126, 234, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-social {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== NAVIGATION COMPONENTS ===== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    box-sizing: border-box;
    gap: 15px;
}


.nav-center {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    flex: 1;
    justify-content: center;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-center .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95em;
    padding: 12px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 80px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 140px;
}

.nav-center .nav-link:hover {
    color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.nav-center .nav-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    color: #5a52d5;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.nav-download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 10px 16px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid transparent;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    gap: 6px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-download-btn:hover {
    background: #3730a3;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1em;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.mobile-download-btn {
    background: #4f46e5;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    gap: 8px;
}

.mobile-download-btn:hover {
    background: #3730a3;
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

 @media (max-width: 768px) {
    .main-navbar .nav-center {
        display: none;
    }
    
    .main-navbar .nav-right .language-selector {
        display: none;
    }
    
    .main-navbar .nav-download-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-container {
        padding: 10px 20px;
    }
    
    body {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 15px;
    }
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-language-selector {
    margin-right: 15px;
}

.nav-language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.nav-language-selector select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.mobile-navbar-language-selector {
    display: none;
}

.mobile-navbar-language-selector select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 80px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-navbar-language-selector select:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.mobile-navbar-language-selector select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.mobile-language-selector {
    display: none !important;
}

.language-selector {
    display: none !important;
}

body > select,
main select:not(.nav-language-selector select):not(.mobile-navbar-language-selector select):not(.mobile-language-selector select) {
    display: none !important;
}

 @media (max-width: 768px) {
    .nav-language-selector {
        display: none;
    }
    
    .mobile-navbar-language-selector {
        display: block !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    .mobile-language-selector {
        display: none !important;
    }
    
    /* Ensure navbar container allows for centered positioning */
    .nav-container {
        position: relative;
    }
}

 @media (min-width: 769px) {
    .nav-language-selector {
        display: block;
    }
    
    .mobile-navbar-language-selector {
        display: none !important;
    }
    
    .mobile-language-selector {
        display: none !important;
    }
}

 @media (max-width: 768px) {
    .support-donation-section {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .support-donation-section > div {
        max-width: 100% !important;
    }
    
    .bmc-qr-code {
        width: 100px !important;
        height: 100px !important;
    }
}

a[href*="buymeacoffee"]:hover {
    background: #FFE066 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
}

 @media (max-width: 768px) {
    .container { 
        margin: 5px; 
        padding: 0;
    }
    
    .hero { 
        margin: 5px; 
        padding: 20px 15px; 
        border-radius: 15px;
    }
    
    .hero h2 { 
        font-size: 1.4em !important; 
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero p { 
        font-size: 0.95em !important; 
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .download-btn { 
        padding: 12px 20px !important; 
        font-size: 0.9em !important;
        letter-spacing: 1px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        box-sizing: border-box;
    }

    .trust-bar {
        flex-direction: column;
        gap: 10px;
        margin: -5px 5px 15px 5px;
        padding: 15px;
    }

    .trust-item {
        font-size: 0.9em;
    }
    
    .features { 
        grid-template-columns: 1fr !important; 
        gap: 15px;
        margin: 20px 5px;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .feature-card h3 { 
        font-size: 1.3em !important; 
    }
    
    .feature-card p { 
        font-size: 0.95em !important; 
    }
    
    .feature-icon { 
        font-size: 2.5em !important; 
    }

    .testimonials-section {
        margin: 20px 5px;
        padding: 20px 15px;
    }

    .testimonials-section h2 {
        font-size: 1.6em !important;
    }
    
    .how-it-works { 
        margin: 5px; 
        padding: 20px 15px; 
    }
    
    .how-it-works h2 { 
        font-size: 1.6em !important; 
    }
    
    .steps { 
        grid-template-columns: 1fr !important; 
        gap: 15px;
    }
    
    .step {
        padding: 15px;
    }
    
    .step-number { 
        font-size: 2em !important; 
    }
    
    .step h3 { 
        font-size: 1.2em !important; 
    }
    
    .step p { 
        font-size: 0.9em !important; 
    }
    
    .mission-statement { 
        margin: 5px; 
        padding: 20px 15px; 
        border-radius: 15px;
    }
    
    .mission-statement h2 { 
        font-size: 1.6em !important; 
    }
    
    .mission-statement p { 
        font-size: 1em !important; 
    }
    
    .support-section { 
        margin: 5px; 
        padding: 20px 15px; 
        border-radius: 15px;
    }
    
    .support-section h2 { 
        font-size: 1.6em !important; 
    }
    
    .support-content { 
        padding: 20px 15px; 
        margin: 15px 0; 
    }
    
    .support-content h3 { 
        font-size: 1.4em !important; 
    }
    
    .support-content p { 
        font-size: 0.95em !important; 
    }
    
    .support-highlight-box {
        padding: 20px 15px;
    }

    .support-highlight-box h4 {
        font-size: 1.2em !important;
    }

    .support-highlight-box li {
        font-size: 0.95em !important;
    }
    
    .support-donation-section { 
        flex-direction: column !important; 
        gap: 20px !important; 
    }
    
    .donation-container { 
        padding: 15px; 
    }
    
    .bmc-qr-code { 
        width: 100px !important; 
        height: 100px !important; 
    }
    
    .donation-button-main { 
        font-size: 1.1em !important; 
        padding: 15px 30px !important; 
        width: 100% !important; 
        max-width: 280px !important; 
    }
    
    .contact-grid { 
        grid-template-columns: 1fr !important; 
        gap: 10px !important; 
        margin-top: 20px !important; 
    }
    
    .contact-button { 
        font-size: 0.9em !important; 
        padding: 12px 15px !important; 
    }
        
    .inspiring-quote { 
        font-size: 1em !important; 
    }
    
    .footer { 
        margin: 10px; 
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 25px 20px 25px;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section:first-child {
        order: -1;
    }
    
    .footer-languages {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 25px 25px;
    }
    
    .footer-bottom-content p { 
        font-size: 0.95em !important; 
    }
    
    /* Download Section Mobile */
    .download-section {
        margin: 5px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .download-section h2 {
        font-size: 2em !important;
    }
    
    .download-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .download-features {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .download-feature {
        font-size: 0.85em !important;
        padding: 10px 12px !important;
    }
    
    .download-meta {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .meta-item {
        font-size: 0.8em !important;
        padding: 8px 12px !important;
    }
    
    .download-btn-main {
        font-size: 1.2em !important;
        padding: 15px 30px !important;
    }
    
    .download-note {
        font-size: 0.8em !important;
        padding: 12px !important;
    }
    
    /* Use Cases Section Mobile */
    .use-cases {
        margin: 5px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .use-cases h2 {
        font-size: 1.8em !important;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .use-case-card {
        padding: 25px 15px !important;
        min-height: auto !important;
        max-width: none !important;
    }
    
    .use-case-icon {
        font-size: 3em !important;
        margin-bottom: 15px !important;
    }
    
    .use-case-card h3 {
        font-size: 1.4em !important;
        margin-bottom: 12px !important;
    }
    
    .use-case-card p {
        font-size: 1em !important;
        line-height: 1.5 !important;
    }

    /* FAQ Section Mobile */
    .faq-section {
        margin: 5px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .faq-section h2 {
        font-size: 1.8em !important;
    }
    
    .faq-question {
        font-size: 1em !important;
        padding: 15px !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px !important;
    }
    
    .faq-answer p {
        font-size: 0.9em !important;
    }
}

@media (max-width: 480px) {
    /* Overall layout adjustments */
    body {
        padding-top: 80px !important;
    }
    
    .container {
        margin: 2px !important;
        padding: 0 !important;
    }
    
    /* Hero section */
    .hero { 
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .hero h2 { 
        font-size: 1.4em !important; 
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero p { 
        font-size: 0.9em !important; 
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .download-btn { 
        font-size: 1em !important;
        padding: 12px 20px !important;
        width: 90% !important;
        max-width: 280px !important;
    }
    
    /* Features section mobile */
    .features {
        margin: 10px 5px !important;
        gap: 15px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .feature-card {
        margin: 0 !important;
        padding: 20px 15px !important;
        border-radius: 15px !important;
        min-width: auto !important;
        max-width: 95% !important;
        flex: none !important;
        width: 100% !important;
    }
    
    .feature-card h3 { 
        font-size: 1.2em !important; 
        margin-bottom: 10px !important;
    }
    
    .feature-card p { 
        font-size: 0.9em !important; 
        line-height: 1.4 !important;
    }
    
    .feature-icon { 
        width: 3em !important;
        height: 3em !important;
        margin-bottom: 15px !important;
    }
    
    /* Trust bar mobile */
    .trust-bar {
        margin: 5px !important;
        padding: 15px 10px !important;
        flex-direction: column !important;
        gap: 10px !important;
        border-radius: 15px !important;
    }
    
    .trust-item {
        font-size: 0.85em !important;
        text-align: center !important;
    }
    
    /* Technical specs mobile */
    .tech-specs {
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .tech-specs h2 {
        font-size: 1.5em !important;
    }
    
    .specs-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .spec-card {
        padding: 15px !important;
    }
    
    /* How it works mobile */
    .how-it-works {
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .how-it-works h2 { 
        font-size: 1.5em !important; 
    }
    
    .steps {
        gap: 15px !important;
    }
    
    .step {
        padding: 15px !important;
    }
    
    /* Download Section Mobile */
    .download-section {
        margin: 5px !important;
        padding: 25px 10px !important;
        border-radius: 15px !important;
    }
    
    .download-section h2 {
        font-size: 1.8em !important;
    }
    
    .download-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .download-info h3 {
        font-size: 1.3em !important;
    }
    
    .download-info p {
        font-size: 1em !important;
    }
    
    .download-features {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        text-align: center !important;
    }
    
    .download-feature {
        font-size: 0.8em !important;
        padding: 8px 12px !important;
    }
    
    .download-btn-main {
        font-size: 1.1em !important;
        padding: 15px 25px !important;
        width: 90% !important;
    }
    
    .download-meta {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        text-align: center !important;
    }
    
    .meta-item {
        font-size: 0.8em !important;
        padding: 8px 12px !important;
        text-align: center !important;
    }
    
    .download-note {
        font-size: 0.8em !important;
        padding: 12px !important;
    }
    
    /* Use Cases Section Mobile */
    .use-cases {
        margin: 5px !important;
        padding: 25px 10px !important;
        border-radius: 15px !important;
    }
    
    .use-cases h2 {
        font-size: 1.6em !important;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    
    .use-case-card {
        padding: 20px 12px !important;
        min-height: auto !important;
        max-width: none !important;
    }
    
    .use-case-icon {
        font-size: 2.8em !important;
        margin-bottom: 12px !important;
    }
    
    .use-case-card h3 {
        font-size: 1.3em !important;
        margin-bottom: 10px !important;
    }
    
    .use-case-card p {
        font-size: 0.95em !important;
        line-height: 1.4 !important;
    }

    /* FAQ Section Mobile */
    .faq-section {
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .faq-section h2 {
        font-size: 1.5em !important;
    }
    
    .faq-item {
        margin-bottom: 12px !important;
        border-radius: 10px !important;
    }
    
    .faq-question {
        font-size: 0.95em !important;
        padding: 12px 15px !important;
    }
    
    .faq-answer {
        padding: 0 15px !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px !important;
    }
    
    .faq-answer p {
        font-size: 0.85em !important;
        line-height: 1.5 !important;
    }
    
    /* Mission Statement */
    .mission-statement {
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .mission-statement h2 { 
        font-size: 1.5em !important; 
    }
    
    .mission-statement p { 
        font-size: 0.95em !important; 
    }
    
    /* Support Section */
    .support-section {
        margin: 5px !important;
        padding: 20px 10px !important;
        border-radius: 15px !important;
    }
    
    .support-section h2 { 
        font-size: 1.5em !important; 
    }
    
    .support-content {
        padding: 15px !important;
        margin: 15px 0 !important;
    }
    
    .support-content h3 { 
        font-size: 1.3em !important; 
    }
    
    .support-content p { 
        font-size: 0.9em !important; 
    }
    
    
    .support-highlight-box {
        padding: 15px !important;
        margin: 20px 0 !important;
    }
    
    .support-highlight-box h4 { 
        font-size: 1.2em !important; 
    }
    
    .support-highlight-box li { 
        font-size: 0.9em !important; 
    }
    
    .bmc-qr-code { 
        width: 80px !important; 
        height: 80px !important; 
    }
    
    .donation-button-main { 
        font-size: 1.1em !important; 
        padding: 15px 25px !important; 
        max-width: 250px !important; 
        width: 90% !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .contact-button { 
        font-size: 0.9em !important; 
        padding: 12px 15px !important; 
    }
        
    .inspiring-quote { 
        font-size: 1em !important; 
    }
    
    /* Footer mobile */
    .footer {
        margin: 5px !important;
        border-radius: 15px !important;
    }
    
    .footer-content {
        padding: 30px 20px 15px 20px !important;
        gap: 25px !important;
    }
    
    .footer-section h4 {
        font-size: 1.1em !important;
        margin-bottom: 15px !important;
    }
    
    .footer-links a {
        font-size: 1em !important;
    }
    
    .footer-languages a {
        font-size: 0.9em !important;
        padding: 6px 10px !important;
    }
    
    .footer-bottom {
        padding: 20px 20px !important;
    }
    
    .footer-bottom-content p {
        font-size: 0.9em !important;
    }
    
    .footer-social {
        font-size: 0.85em !important;
    }
}

.mission-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mission-statement h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.mission-statement p {
    font-size: 1.4em;
    color: #fff;
    margin: 25px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e6f0 100%);
    margin: 20px;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #667eea;
}

.support-section h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.support-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.support-content h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.support-content p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}


.support-highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.support-highlight-box h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.support-highlight-box li {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.support-highlight-box li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    top: 2px;
    color: #4ecdc4;
}

.mission-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.mission-box h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.mission-box ul {
    list-style: none;
    padding-left: 0;
}

.mission-box li {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.mission-box li::before {
    content: '🌟';
    position: absolute;
    left: 0;
    top: 2px;
}

.vision-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.vision-box h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.vision-box ul {
    list-style: none;
    padding-left: 0;
}

.vision-box li {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.vision-box li::before {
    content: '🔹';
    position: absolute;
    left: 0;
    top: 2px;
}


.support-donation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.donation-container {
    text-align: center;
}

.bmc-qr-code {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    border: 4px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.donation-button-container {
    text-align: center;
}

/* Donation button in support section */
.donation-button-main {
    background: #dc2626;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4em;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.donation-button-main:hover {
    background: #991b1b;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.donation-note {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.financial-support-note {
    font-size: 1em !important;
    color: #888 !important;
    line-height: 1.6;
    font-style: italic;
    margin: 20px 0 30px 0;
}

.thank-you-section {
    background: linear-gradient(135deg, #ff9a9e20 0%, #fecfef20 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(255, 154, 158, 0.3);
}

.thank-you-section h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.thank-you-section p {
    font-size: 1.1em !important;
    color: #555;
    line-height: 1.5;
    margin: 0 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-button {
    background: #059669;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1.1em;
    display: block;
    text-align: center;
}

.contact-button:hover {
    background: #047857;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.inspiring-quote {
    font-size: 1.3em;
    color: #555;
    margin-top: 40px;
    text-shadow: none;
    font-style: italic;
}

.hidden-seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
}


.tech-specs {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tech-specs h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.spec-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.spec-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: #f8fafc;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
    color: #667eea;
}

.faq-question:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.faq-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.faq-answer p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 20px;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: white;
}

.download-section h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.download-info h3 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.download-info p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
}

.download-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-button-container {
    text-align: center;
}

.download-btn-main {
    background: #fff;
    color: #667eea;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.download-btn-main:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #5a52d5;
}

.download-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
}

.download-note {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Use Cases Section */
.use-cases {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.use-case-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 350px;
    width: 100%;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.use-case-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: float-icon 3s ease-in-out infinite;
}

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

.use-case-card h3 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.use-case-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Video Tutorial Section */
.video-tutorial-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.video-tutorial-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.video-tutorial-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-description {
    margin-top: 30px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.video-description h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-description p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tutorial-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tutorial-highlights li {
    font-size: 1em;
    color: #555;
    margin-bottom: 8px;
    padding-left: 0;
}

/* Mobile Responsive for Video Tutorial */
@media (max-width: 768px) {
    .video-tutorial-section {
        margin: 40px 0;
        padding: 40px 20px;
    }
    
    .video-tutorial-section h2 {
        font-size: 2em;
    }
    
    .video-tutorial-section p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .video-container {
        padding: 0 10px;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .video-wrapper iframe {
        border-radius: 10px;
    }
    
    .video-description {
        margin-top: 20px;
        padding: 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .video-tutorial-section h2 {
        font-size: 1.8em;
    }
    
    .video-tutorial-section p {
        font-size: 1em;
    }
}

/* RTL Support for Video Tutorial */
body[dir="rtl"] .video-tutorial-section {
    text-align: center; /* Keep center alignment for video */
}

/* Creative Language Selector Styles */
.creative-language-selector {
    position: relative;
    margin-right: 0;
    margin: 0 auto;
}

.globe-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.6);
    border-radius: 25px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(102, 126, 234, 0.3);
}

.globe-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(102, 126, 234, 0.5);
    color: #667eea;
}

.globe-button:active {
    transform: translateY(0);
}

.globe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: globe-rotate 20s linear infinite;
    color: #667eea;
}

.globe-button:hover .globe-icon {
    color: #5a52d5;
}

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

.current-language {
    font-size: 0.9em;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #667eea;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.globe-button:hover .current-language {
    color: #5a52d5;
}

.globe-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.2);
    animation: pulse-ring 4s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Language Panel */
.language-panel {
    position: fixed;
    top: 80px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(-20px) scale(0.9);
    width: 500px;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    color: #333;
    margin: 0;
    right: auto;
    display: flex;
    flex-direction: column;
}

.language-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* ===== RTL LANGUAGE SUPPORT ===== */
/* Ensure language panel is always centered for all languages */
.language-panel, 
body[lang="ar"] .language-panel,
body[lang="ur"] .language-panel,
body[lang="fa"] .language-panel,
body[lang="dv"] .language-panel {
    margin-left: auto !important;
    margin-right: auto !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-20px) scale(0.9) !important;
}

.language-panel.show, 
body[lang="ar"] .language-panel.show,
body[lang="ur"] .language-panel.show,
body[lang="fa"] .language-panel.show,
body[lang="dv"] .language-panel.show {
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Additional centering fixes for all language variations - consolidated with above */

.language-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    flex-shrink: 0;
    border-radius: 25px 25px 0 0;
}

.language-panel-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.close-panel {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.3);
    font-size: 20px;
    cursor: pointer;
    color: #667eea;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.close-panel:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    color: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Language Search */
.language-search {
    padding: 20px 30px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(226, 232, 240, 0.8) 100%);
}

.language-search input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.language-search input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Language Grid */
.language-grid {
    flex: 1;
    overflow-y: auto;
    padding: 20px 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.language-grid::-webkit-scrollbar {
    width: 8px;
}

.language-grid::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}

.language-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.language-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a52d5 0%, #6a4c93 100%);
    transform: scale(1.1);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.language-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateX(6px) translateY(-2px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.language-item.current {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateX(4px);
}

.language-item .flag {
    min-width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-right: 12px;
}

.language-item .flag img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

/* Enhanced flag visibility */
@media (max-width: 768px) {
    .language-item .flag {
        font-size: 1.6em;
        min-width: 32px;
    }
}

/* Fallback for systems that don't support emoji flags */
.language-item .flag:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 15px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border-radius: 2px;
    margin-right: 8px;
    opacity: 0;
}

/* Show fallback only if emoji is not visible */
.language-item .flag:empty:before {
    opacity: 1;
}

/* Windows-specific emoji support enhancement */
@supports (-ms-ime-align: auto) {
    .language-item .flag {
        font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', Arial, sans-serif !important;
        font-size: 2em !important;
    }
}

/* Chromium-based browsers emoji enhancement */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .language-item .flag {
        font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif !important;
        font-size: 1.9em !important;
        font-variation-settings: 'wght' 400;
    }
}

/* Additional flag visibility fixes */
.language-item .flag {
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.lang-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.lang-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.lang-native {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.language-item.current .lang-name {
    color: #667eea;
}

.language-item.current .lang-native {
    color: #5a52d5;
}

/* Language Panel Footer */
.language-panel-footer {
    padding: 20px 30px 25px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 0;
    flex-shrink: 0;
}

.language-panel-footer p {
    margin: 0;
    font-size: 1em;
    color: #667eea;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* RTL Language Panel Fixes */
body[lang="ar"] .language-panel,
body[lang="ur"] .language-panel,
body[lang="fa"] .language-panel,
body[lang="dv"] .language-panel {
    direction: ltr !important;
    text-align: left !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-20px) scale(0.9) !important;
    margin: 0 auto !important;
}

body[lang="ar"] .language-panel.show,
body[lang="ur"] .language-panel.show,
body[lang="fa"] .language-panel.show,
body[lang="dv"] .language-panel.show {
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

body[lang="ar"] .language-panel-header,
body[lang="ur"] .language-panel-header,
body[lang="fa"] .language-panel-header,
body[lang="dv"] .language-panel-header {
    direction: ltr;
    text-align: left;
}

body[lang="ar"] .language-search,
body[lang="ur"] .language-search,
body[lang="fa"] .language-search,
body[lang="dv"] .language-search {
    direction: ltr;
    text-align: left;
}

body[lang="ar"] .language-item,
body[lang="ur"] .language-item,
body[lang="fa"] .language-item,
body[lang="dv"] .language-item {
    direction: ltr;
    text-align: left;
}


/* Mobile Responsive */
/* Mobile responsive for navbar */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 15px 25px;
        gap: 12px;
    }
    
    .nav-center {
        gap: 12px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-center .nav-link {
        padding: 10px 16px;
        font-size: 0.9em;
        min-width: 70px;
        max-width: 120px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .nav-center {
        gap: 10px;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .nav-center .nav-link {
        padding: 10px 14px;
        font-size: 0.85em;
        min-width: 65px;
        max-width: 110px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        padding: 15px 15px;
        gap: 8px;
    }
    
    .nav-center {
        gap: 8px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .nav-center .nav-link {
        padding: 8px 12px;
        font-size: 0.8em;
        min-width: 60px;
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }
    
    .nav-left {
        flex: 0 0 auto;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        flex: 0 0 auto;
        gap: 12px;
        justify-content: flex-end;
    }
    
    .creative-language-selector {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
    }
    
    .globe-button {
        padding: 10px 14px;
        min-width: 100px;
        justify-content: center;
        text-align: center;
    }
    
    .language-panel {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%) scale(0.9);
        width: 85vw;
        height: calc(100vh - 70px);
        overflow: hidden;
        z-index: 1001;
        margin: 0;
    }
    
    .language-panel.show {
        transform: translateX(-50%) scale(1) !important;
    }
    
    /* RTL Mobile Language Panel Override - 768px */
    body[lang="ar"] .language-panel,
    body[lang="ur"] .language-panel,
    body[lang="fa"] .language-panel,
    body[lang="dv"] .language-panel {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) scale(0.9);
        width: 85vw;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        z-index: 1001;
        direction: ltr;
        margin: 0;
    }
    
    body[lang="ar"] .language-panel.show,
    body[lang="ur"] .language-panel.show,
    body[lang="fa"] .language-panel.show,
    body[lang="dv"] .language-panel.show {
        transform: translateX(-50%) scale(1) !important;
    }
    
    .current-language {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .globe-button {
        padding: 8px 12px;
        gap: 6px;
    }
    
    .globe-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .current-language {
        font-size: 0.75em;
    }
    
    .language-panel {
        position: fixed;
        top: 80px;
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 90vw;
        height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        border-radius: 25px 25px 0 0;
        border-bottom: none;
        z-index: 1001;
        margin: 0;
    }
    
    .language-panel-header h3 {
        font-size: 1.1em;
    }
    
    /* Enhanced mobile flag visibility */
    .language-item .flag {
        font-size: 1.4em !important;
        min-width: 28px !important;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        -webkit-text-stroke: 0.5px rgba(0,0,0,0.1);
    }
    
    /* Force emoji font for mobile */
    .language-item .flag {
        font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Android Emoji', sans-serif !important;
    }
    
    /* RTL Mobile Language Panel Override - 480px */
    body[lang="ar"] .language-panel,
    body[lang="ur"] .language-panel,
    body[lang="fa"] .language-panel,
    body[lang="dv"] .language-panel {
        position: fixed;
        top: 80px;
        left: 50%;
        right: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 90vw;
        height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        border-radius: 25px 25px 0 0;
        border-bottom: none;
        z-index: 1001;
        direction: ltr;
        margin: 0;
    }
    
    body[lang="ar"] .language-panel.show,
    body[lang="ur"] .language-panel.show,
    body[lang="fa"] .language-panel.show,
    body[lang="dv"] .language-panel.show {
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

/* Animation for language items appearing */
.language-item {
    animation: slideInLanguage 0.3s ease-out;
}

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

/* Hide default nav-language-selector if it exists */
.nav-language-selector {
    display: none;
}

/* Blur body when language panel is open */
body.language-panel-open > *:not(.main-navbar):not(.creative-language-selector) {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

body.language-panel-open {
    /* Remove overflow hidden to prevent screen shifting */
}

/* FINAL FIX: Arabic Mobile Language Panel - Alternative Positioning */
@media screen and (max-width: 768px) {
    body[lang="ar"] .language-panel,
    body[lang="ur"] .language-panel,
    body[lang="fa"] .language-panel,
    body[lang="dv"] .language-panel {
        position: fixed;
        top: 70px;
        left: 50%;
        right: auto;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-50%);
        width: 85vw;
        max-width: 85vw;
        height: calc(100vh - 70px);
        display: flex;
        flex-direction: column;
        border-radius: 25px 25px 0 0;
        border-bottom: none;
        z-index: 1001;
        direction: ltr;
        margin: 0;
    }
    
    body[lang="ar"] .language-panel.show,
    body[lang="ur"] .language-panel.show,
    body[lang="fa"] .language-panel.show,
    body[lang="dv"] .language-panel.show {
        transform: translateX(-50%) scale(1) !important;
    }
}

@media screen and (max-width: 480px) {
    body[lang="ar"] .language-panel,
    body[lang="ur"] .language-panel,
    body[lang="fa"] .language-panel,
    body[lang="dv"] .language-panel {
        position: fixed;
        top: 80px;
        left: 50%;
        right: auto;
        bottom: 0;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-50%);
        width: 90vw;
        max-width: 90vw;
        height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        border-radius: 25px 25px 0 0;
        border-bottom: none;
        z-index: 1001;
        direction: ltr;
        margin: 0;
    }
    
    body[lang="ar"] .language-panel.show,
    body[lang="ur"] .language-panel.show,
    body[lang="fa"] .language-panel.show,
    body[lang="dv"] .language-panel.show {
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

/* Portfolio Link Styling */
.portfolio-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-link:hover {
    transform: translateY(-1px);
    text-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    -webkit-text-fill-color: #667eea;
}

.portfolio-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

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

.portfolio-cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 1.1em;
}

.portfolio-cta .portfolio-link {
    font-size: 1.1em;
    font-weight: 700;
}

.footer .portfolio-link {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 600;
}

.footer .portfolio-link:hover {
    -webkit-text-fill-color: #ffd700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.privacy-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    padding: 40px 0;
}

.privacy-header h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-subtitle {
    font-size: 1.3em;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 300;
}

.last-updated {
    font-size: 1em;
    opacity: 0.8;
    font-weight: 300;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #667eea;
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.privacy-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section ul li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.privacy-section ul li strong {
    color: #667eea;
    font-weight: 600;
}

.privacy-summary {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #667eea;
    margin-top: 20px;
}

.privacy-summary p {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.privacy-summary ul li {
    color: #2e7d32;
    font-weight: 500;
}

/* Privacy Policy Links in Footer */
.footer a[href="privacy-policy.html"] {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer a[href="privacy-policy.html"]:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding-top: 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.5em;
    }
    
    .privacy-content {
        padding: 30px 20px;
        margin: 0 15px 30px 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.8em;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 1em;
    }
}

/* Privacy Policy Link Styling */
.privacy-section a {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    color: #764ba2;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

.privacy-section a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.9em;
    opacity: 0.7;
}
