/* ===== NEXORA LABS WEBSITE STYLES ===== */
/* Consolidated CSS for all pages with Nexora Labs branding */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1A1A2E;
    overflow-x: hidden;
}

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

/* ===== TEMPLATES SECTION STYLES ===== */
.website-templates {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    position: relative;
}

.templates-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.template-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.template-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 60, 255, 0.3);
    border-color: rgba(209, 60, 255, 0.4);
}

.template-preview-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.template-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-preview-card:hover .template-preview-image img {
    transform: scale(1.05);
}

.template-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-preview-card:hover .template-preview-overlay {
    opacity: 1;
}

.preview-btn {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 60, 255, 0.4);
}

.template-preview-content {
    padding: 25px;
}

.template-preview-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #D13CFF;
    font-weight: 600;
}

.template-preview-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.template-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.template-price .price {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.template-price .plus {
    color: #D13CFF;
    font-weight: bold;
    font-size: 1.2rem;
}

.template-price .transport {
    background: linear-gradient(135deg, #fd7e14 0%, #e67e22 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.templates-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.templates-pricing-info h3 {
    color: #D13CFF;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(209, 60, 255, 0.1);
}

.pricing-item i {
    color: #D13CFF;
    font-size: 1.2rem;
}

.pricing-item span {
    flex: 1;
    color: #e0e0e0;
}

.pricing-item strong {
    color: #28a745;
    font-weight: 600;
}

.pricing-total {
    padding: 20px;
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(209, 60, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.pricing-total span {
    color: #D13CFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-total strong {
    color: #D13CFF;
    font-weight: 700;
    font-size: 1.3rem;
}

.templates-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.templates-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ===== TEMPLATES PAGE STYLES ===== */
.templates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 60, 255, 0.3);
    border-color: rgba(209, 60, 255, 0.4);
}

.template-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-image img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-actions {
    display: flex;
    gap: 15px;
}

.template-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.template-btn.preview {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.template-btn.preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.template-btn.buy {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
}

.template-btn.buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 60, 255, 0.4);
}

.template-content {
    padding: 30px;
}

.template-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D13CFF;
    font-weight: 600;
}

.template-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.template-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

.template-category {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.template-category i {
    color: #D13CFF;
}

/* ===== PRICING INFO SECTION ===== */
.pricing-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #D13CFF;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.price-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.1);
}

.price-main {
    margin-bottom: 15px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.price-label {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.price-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.price-total {
    grid-column: 1 / -1;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

.total-label {
    display: block;
    color: #D13CFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D13CFF;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features h3 {
    color: #D13CFF;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.pricing-features i {
    color: #28a745;
}

.pricing-action {
    text-align: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.template-modal {
    width: 95%;
    max-width: 1400px;
    margin: 20px auto;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    border-radius: 25px;
    border: 2px solid rgba(209, 60, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(209, 60, 255, 0.3);
    backdrop-filter: blur(10px);
}

.modal-header h2 {
    color: #D13CFF;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2::before {
    content: "🌐";
    font-size: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.close {
    color: #e0e0e0;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: #D13CFF;
    background: rgba(209, 60, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    height: 75vh;
    position: relative;
    background: #000;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.5s ease;
}

.modal-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #D13CFF 0%, #8A2BE2 50%, #D13CFF 100%);
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
    opacity: 0.1;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.modal-body iframe {
    position: relative;
    z-index: 2;
}

/* Loading spinner for iframe */
.modal-body.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid rgba(209, 60, 255, 0.3);
    border-top: 3px solid #D13CFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

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

/* Preview badge */
.preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

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

.preview-badge::before {
    content: "🔴";
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .templates-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .templates-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .template-modal {
        width: 98%;
        margin: 10px auto;
    }
    
    .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-actions {
        width: 100%;
        justify-content: center;
    }
    
    .modal-body {
        height: 60vh;
    }
    
    /* Blog Page Responsive */
    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(209, 60, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 60, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D13CFF;
    border: 2px solid #D13CFF;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1A1A2E;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== IMAGE OPTIMIZATION AND RESPONSIVE DESIGN ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* ===== LOGO STYLING ===== */
.nav-logo .logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D13CFF;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #D13CFF;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

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

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: left;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
    max-height: calc(100vh - 200px);
}

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

/* ===== HERO IMAGE STYLING ===== */
.hero-main-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(209, 60, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    aspect-ratio: 16/9;
}

.hero-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(209, 60, 255, 0.4);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 80px;
    width: auto;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    color: #e0e0e0;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #D13CFF;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(209, 60, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D13CFF;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: #1A1A2E;
}

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

.service-card {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(209, 60, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(209, 60, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

/* ===== IMAGE SLIDER SECTION ===== */
.image-slider-section {
    background: #1A1A2E;
    padding: 5rem 0;
}

.image-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    position: relative;
    height: 500px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    min-height: 400px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(209, 60, 255, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #D13CFF;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

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

.feature-card {
    background: #1A1A2E;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: #1A1A2E;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D13CFF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* ===== HIDDEN ADMIN BUTTON ===== */
.hidden-admin-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.hidden-admin-btn:hover {
    opacity: 1;
    color: #D13CFF;
    background: rgba(209, 60, 255, 0.1);
}

/* ===== PORTFOLIO HIGHLIGHTS ===== */
.portfolio-highlights {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

.portfolio-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-item {
    display: none;
    background: #1A1A2E;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item.active {
    display: block;
}

.portfolio-image {
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tech-tag {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #D13CFF;
    background: transparent;
    color: #D13CFF;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #D13CFF;
    color: white;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-cta .btn {
    background: white;
    color: #D13CFF;
}

.contact-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0F0F1E;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 30px;
    width: auto;
}

.footer-section h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D13CFF;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #D13CFF;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

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

/* Admin Access Button */
.admin-access {
    position: relative;
    display: inline-block;
}

.admin-access-btn {
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.2), rgba(139, 47, 201, 0.2));
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    color: #D13CFF;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.admin-access-btn:hover {
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.3), rgba(139, 47, 201, 0.3));
    border-color: rgba(209, 60, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 60, 255, 0.3);
}

.admin-icon {
    font-size: 14px;
}

.admin-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .admin-access-btn {
        margin: 0 auto;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(209, 60, 255, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 2rem;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        max-height: none;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-main-image {
        max-height: 280px;
        aspect-ratio: 16/9;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .slider-track {
        height: 350px;
    }
    
    .slider-slide img {
        min-height: 350px;
    }
    
    .nav-menu {
        display: none; /* Hide old menu */
    }

    .nav-overlay {
        display: none; /* Hide overlay by default on mobile */
    }

    .nav-overlay.active {
        display: flex; /* Show overlay when active */
    }

    .nav-toggle {
        display: flex !important;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

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

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

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

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

    .hero-main-image {
        max-height: 220px;
        aspect-ratio: 16/9;
        border-radius: 15px;
    }

    .nav-logo .logo {
        height: 30px;
    }

    .slider-track {
        height: 250px;
    }

    .slider-slide img {
        min-height: 250px;
    }

    .footer-logo .logo {
        height: 25px;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

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

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

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

/* ===== HIGH-DPI DISPLAY SUPPORT ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo .logo,
    .footer-logo .logo,
    .hero-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .hero-main-image,
    .slider-slide img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===== IMAGE LOADING OPTIMIZATION ===== */
/* Note: loading and decoding properties are HTML attributes, not CSS properties */

/* ===== PROJECT AND PORTFOLIO IMAGES ===== */
.project-image img,
.portfolio-image img,
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

.project-image img {
    aspect-ratio: 16/10;
}

.member-avatar img {
    aspect-ratio: 1/1;
    border-radius: 50%;
}

/* ===== BLOG AND JOB IMAGES ===== */
.post-image img,
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

.post-image img {
    aspect-ratio: 16/9;
}

.featured-image img {
    aspect-ratio: 21/9;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    aspect-ratio: 16/9;
}

/* ===== SOCIAL ICON IMAGES ===== */
.social-btn-icon,
.footer-social-icon,
.whatsapp-support-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ===== PAGE HEADER IMAGES ===== */
.page-header-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    aspect-ratio: 16/9;
}

.page-header-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D13CFF;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(209, 60, 255, 0.2);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.5);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D13CFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== ADMIN DASHBOARD STYLES ===== */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav .btn {
    flex: 1;
    min-width: 150px;
}

.data-table {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(209, 60, 255, 0.1);
}

.data-table th {
    background: rgba(209, 60, 255, 0.1);
    color: #D13CFF;
    font-weight: 600;
}

.data-table tr:hover {
    background: rgba(209, 60, 255, 0.05);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-new {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-read {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(209, 60, 255, 0.3);
    border-radius: 50%;
    border-top-color: #D13CFF;
    animation: spin 1s ease-in-out infinite;
}

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

/* ===== ERROR AND SUCCESS MESSAGES ===== */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.3);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.3);
}

/* ===== PAGE TRANSITIONS ===== */
.page-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #D13CFF;
    outline-offset: 2px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    padding: 8rem 0 4rem;
    text-align: left;
}

.page-header-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-header-main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.page-header-content {
    flex: 1;
    max-width: 600px;
}

.page-header-content h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

/* ===== ABOUT PAGE STYLES ===== */
.our-story {
    background: #1A1A2E;
    padding: 5rem 0;
}

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

.story-text h2 {
    color: #D13CFF;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.partner-card {
    background: #1A1A2E;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.partner-card h3 {
    color: #D13CFF;
    margin-bottom: 0.5rem;
}

.partner-tagline {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.partner-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-strengths {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.strength-tag {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

/* ===== MISSION & VALUES ===== */
.mission-values {
    background: #1A1A2E;
    padding: 5rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.mission-section h2,
.values-section h2 {
    color: #D13CFF;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.value-item {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.value-item h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text h2 {
    color: #D13CFF;
    margin-bottom: 2rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.point-content h4 {
    color: #D13CFF;
    margin-bottom: 0.5rem;
}

.point-content p {
    line-height: 1.6;
}

.philosophy-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: #1A1A2E;
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #D13CFF;
}

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

.team-member h3 {
    color: #D13CFF;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-tag {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background: white;
    color: #D13CFF;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #D13CFF;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 768px) {
    .page-header-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-header-image {
        order: 2;
    }
    
    .page-header-content {
        order: 1;
        max-width: 100%;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-buttons {
        justify-content: center;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .story-content,
    .mission-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .philosophy-point {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .partner-card,
    .team-member {
        padding: 2rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .member-avatar {
        width: 120px;
        height: 120px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-detailed {
    background: #1A1A2E;
    padding: 5rem 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detailed {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.service-detailed:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.service-header h3 {
    color: #D13CFF;
    margin: 0;
    font-size: 2rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.service-features li i {
    color: #28a745;
    font-size: 0.9rem;
}

.tech-stack h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: #1A1A2E;
    padding: 5rem 0;
}

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

.advantage-item {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.advantage-item h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #1A1A2E;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #D13CFF;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #b0b0b0;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #D13CFF;
}

.period {
    color: #b0b0b0;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    text-align: left;
}

.pricing-features li i {
    color: #28a745;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(209, 60, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.pricing-note p {
    color: #b0b0b0;
    margin: 0;
}

.pricing-note i {
    color: #D13CFF;
    margin-right: 0.5rem;
}

/* ===== RESPONSIVE DESIGN FOR SERVICES PAGE ===== */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detailed {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-filter {
    background: #1A1A2E;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(209, 60, 255, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid rgba(209, 60, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.portfolio-grid-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #1A1A2E;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.portfolio-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(209, 60, 255, 0.4);
    box-shadow: 0 15px 35px rgba(209, 60, 255, 0.2);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 60, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: #D13CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: #D13CFF;
    color: white;
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.portfolio-content .tech-stack {
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(209, 60, 255, 0.2);
}

.project-category {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-year {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ===== PROJECT STATISTICS ===== */
.project-stats {
    background: #1A1A2E;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D13CFF;
    line-height: 1;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE DESIGN FOR PORTFOLIO PAGE ===== */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-actions {
        gap: 0.5rem;
    }
    
    .portfolio-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    background: #1A1A2E;
    padding: 5rem 0;
}

/* ===== FORM TABS ===== */
.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(209, 60, 255, 0.2);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: #b0b0b0;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.tab-btn.active {
    color: #D13CFF;
    border-bottom-color: #D13CFF;
}

.tab-btn:hover {
    color: #D13CFF;
}

.tab-content {
    display: none;
}

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

/* ===== BLOG PAGE STYLES ===== */
.featured-blog {
    background: #1A1A2E;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #D13CFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #b0b0b0;
    flex-wrap: wrap;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: #D13CFF;
}

.featured-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.featured-content p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.blog-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.read-time {
    color: #b0b0b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-categories {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

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

.category-card {
    background: #1A1A2E;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.post-count {
    display: inline-block;
    background: rgba(209, 60, 255, 0.1);
    color: #D13CFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.blog-posts {
    background: #1A1A2E;
    padding: 5rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover .post-overlay {
    opacity: 1;
}

.read-more-btn {
    background: #D13CFF;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.05);
}


/* ===== JOBS PAGE STYLES ===== */
.job-categories {
    background: #1A1A2E;
    padding: 5rem 0;
}

.job-listings {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: #1A1A2E;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.job-image {
    height: 200px;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-content {
    padding: 2rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.job-type {
    background: rgba(209, 60, 255, 0.1);
    color: #D13CFF;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
}

.job-location {
    color: #b0b0b0;
}

.job-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.skill-tag {
    background: rgba(209, 60, 255, 0.1);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.job-status {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-style: italic;
}

.why-work-section {
    background: #1A1A2E;
    padding: 5rem 0;
}

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

.benefit-card {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.application-process {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container .form-container {
    margin: 0;
}

.contact-form-container h2 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.contact-info-container {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.contact-info-card h2 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #D13CFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #e0e0e0;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.social-links h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-btn:hover .social-btn-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.social-btn i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.social-btn:hover i {
    color: white;
    transform: scale(1.1);
}

.contact-numbers {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(209, 60, 255, 0.2);
}

.contact-numbers h5 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.number-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(209, 60, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.number-item:hover {
    background: rgba(209, 60, 255, 0.2);
    transform: translateX(5px);
}

.number-item i {
    color: #D13CFF;
    font-size: 1.1rem;
}

.number-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.number-item a:hover {
    color: #D13CFF;
}

/* ===== FOOTER SOCIAL MEDIA ===== */
.footer-social-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    background: rgba(209, 60, 255, 0.1);
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: #D13CFF;
    border-color: #D13CFF;
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-social-btn:hover .footer-social-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-social-btn i {
    font-size: 18px;
    color: #D13CFF;
    transition: all 0.3s ease;
}

.footer-social-btn:hover i {
    color: white;
    transform: scale(1.1);
}

/* ===== WHATSAPP SUPPORT BUTTON ===== */
.whatsapp-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-support-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-support-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 3px;
}

.whatsapp-support-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-support-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .whatsapp-support-text {
        display: none;
    }
    
    .whatsapp-support-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===== SUCCESS MESSAGE STYLING ===== */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.success-message p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0.9;
}

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

/* ===== FORM STYLES ===== */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(209, 60, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #D13CFF;
    border-color: #D13CFF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1A1A2E;
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(209, 60, 255, 0.4);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(209, 60, 255, 0.05);
}

.faq-question h3 {
    color: #D13CFF;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #D13CFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(209, 60, 255, 0.1);
}

/* ===== RESPONSIVE DESIGN FOR CONTACT PAGE ===== */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .form-container {
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.8rem;
        border: 1px solid rgba(209, 60, 255, 0.3);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        font-size: 1rem;
    }
    
    .contact-info-container {
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info-card {
        width: 100%;
        margin-bottom: 1rem;
        box-sizing: border-box;
        padding: 1.5rem;
    }
    
    .social-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.5rem;
        width: 100%;
        justify-items: center;
        box-sizing: border-box;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(209, 60, 255, 0.3);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .social-btn:hover {
        background: rgba(209, 60, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .social-btn-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
    
    .contact-numbers {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    .number-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    .number-item a {
        color: #D13CFF;
        text-decoration: none;
        font-weight: 500;
    }
    
    .number-item a:hover {
        color: #ffffff;
    }
    
    .form-tabs {
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }
    
    .tab-btn {
        flex: 1;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(209, 60, 255, 0.3);
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .tab-btn.active {
        background: rgba(209, 60, 255, 0.3);
        border-color: #D13CFF;
    }
    
    .tab-content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info-container {
        position: static;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .social-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 1rem;
    }
    
    .form-container {
        padding: 0.5rem;
    }
    
    .social-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .contact-numbers {
        font-size: 0.9rem;
    }
    
    .number-item {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}

/* ===== ADMIN LOGIN PAGE STYLES ===== */
.admin-login-body {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.admin-login-screen {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.admin-dashboard-screen {
    background: #1A1A2E;
    min-height: 100vh;
}

.admin-login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-login-card {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(209, 60, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.login-logo .logo {
    height: 40px;
    width: auto;
}

.login-header h1 {
    color: #D13CFF;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-header p {
    color: #b0b0b0;
    margin-bottom: 0;
}

.admin-login-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-login-form label {
    color: #D13CFF;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #D13CFF;
    z-index: 2;
}

.input-group input {
    padding-left: 45px;
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #D13CFF;
    cursor: pointer;
    z-index: 2;
}

.login-btn {
    width: 100%;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer a {
    color: #D13CFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #8A2BE2;
}

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

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    border-radius: 20px;
}

/* ===== ADMIN DASHBOARD STYLES ===== */
.admin-navbar {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(209, 60, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.admin-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav-logo .logo {
    height: 35px;
    width: auto;
}

.admin-nav-actions {
    display: flex;
    gap: 1rem;
}

.admin-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-nav-btn:hover {
    background: #D13CFF;
    color: white;
    transform: translateY(-2px);
}

.admin-header {
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    padding: 3rem 0;
    text-align: center;
}

.admin-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.admin-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.dashboard-stats {
    background: #1A1A2E;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 60, 255, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D13CFF;
    line-height: 1;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.charts-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 3rem 0;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.chart-card {
    background: #1A1A2E;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.chart-card h3 {
    color: #D13CFF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.submissions-section {
    background: #1A1A2E;
    padding: 3rem 0;
}

.submission-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.submission-filters select {
    background: rgba(26, 26, 46, 0.5);
    color: white;
    border: 2px solid rgba(209, 60, 255, 0.2);
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.submissions-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
}

.submissions-table th,
.submissions-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(209, 60, 255, 0.1);
}

.submissions-table th {
    background: rgba(209, 60, 255, 0.1);
    color: #D13CFF;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.submissions-table tr:hover {
    background: rgba(209, 60, 255, 0.05);
}

.loading-row {
    text-align: center;
    padding: 2rem;
    color: #b0b0b0;
}

.no-data {
    text-align: center;
    padding: 2rem;
    color: #b0b0b0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-controls .btn.active {
    background: #D13CFF;
    color: white;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(209, 60, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #D13CFF;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #D13CFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(209, 60, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(209, 60, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.submission-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-group h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-group p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

/* ===== RESPONSIVE DESIGN FOR ADMIN PAGES ===== */
@media (max-width: 768px) {
    .admin-login-container {
        padding: 1rem;
    }
    
    .admin-login-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        padding: 1.5rem;
    }
    
    .submission-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .submissions-table {
        font-size: 0.9rem;
    }
    
    .submissions-table th,
    .submissions-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-login-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin: 0 0.1rem;
    }
}

/* ===== 404 PAGE STYLES ===== */
.error-page {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.error-animation {
    text-align: center;
    position: relative;
}

.error-number {
    font-size: 12rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(209, 60, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(209, 60, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(209, 60, 255, 0);
    }
}

.error-text h1 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.error-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-suggestions {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
    margin-bottom: 2rem;
}

.error-suggestions h3 {
    color: #D13CFF;
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.error-suggestions li i {
    color: #D13CFF;
    width: 20px;
}

.error-suggestions li a {
    color: #D13CFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions li a:hover {
    color: #8A2BE2;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-illustration {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF 0%, #8A2BE2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 1.5s;
}

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

/* ===== RESPONSIVE DESIGN FOR 404 PAGE ===== */
@media (max-width: 768px) {
    .error-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .error-number {
        font-size: 8rem;
    }
    
    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .error-text h1 {
        font-size: 1.5rem;
    }
    
    .error-suggestions {
        padding: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 200px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .scroll-to-top,
    .hero-buttons,
    .slider-controls {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
}

/* ===== NEW SECTIONS STYLES ===== */

/* Latest Projects Section */
.latest-projects {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 60, 255, 0.3);
    border-color: #D13CFF;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.project-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
}

/* Job Opportunities Section */
.job-opportunities {
    padding: 5rem 0;
    background: #0a0a1f;
}

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

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 60, 255, 0.2);
    border-color: #D13CFF;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.job-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
}

.job-type {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.job-details p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-requirements h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.job-info {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-info span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.job-info i {
    color: #D13CFF;
    margin-right: 0.5rem;
}

/* Desktop Applications Section */
.desktop-apps {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
}

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

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 60, 255, 0.2);
    border-color: #D13CFF;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.app-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.app-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features {
    margin-bottom: 2rem;
}

.app-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.app-features li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.app-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    color: #ffffff;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #D13CFF;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content p {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 2rem;
}

.access-form .form-group {
    margin-bottom: 1.5rem;
}

.access-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.access-form input,
.access-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.access-form input:focus,
.access-form textarea:focus {
    outline: none;
    border-color: #D13CFF;
    box-shadow: 0 0 10px rgba(209, 60, 255, 0.3);
}

.access-form input::placeholder,
.access-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .projects-grid,
    .jobs-grid,
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .job-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .latest-projects,
    .job-opportunities,
    .desktop-apps {
        padding: 3rem 0;
    }
    
    .project-card,
    .job-card,
    .app-card {
        padding: 1.5rem;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== WEBSITE PRICING STYLES ===== */
.website-pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #1A1A2E;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(209, 60, 255, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #D13CFF;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.period {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.price-ugx {
    margin-bottom: 1rem;
}

.price-ugx small {
    color: #e0e0e0;
    font-weight: 600;
}

.renewal-price {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features h4 {
    color: #D13CFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    font-size: 0.9rem;
}

.pricing-features i.fa-times {
    color: #dc3545;
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn {
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-note p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-note i {
    color: #D13CFF;
    margin-right: 0.5rem;
}

/* ===== FULL-SCREEN NAVIGATION OVERLAY ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #16213E 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-overlay-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.nav-overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(209, 60, 255, 0.1);
    border: 2px solid #D13CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.nav-overlay-close:hover {
    background: rgba(209, 60, 255, 0.2);
    transform: rotate(90deg);
}

.nav-overlay-close::before,
.nav-overlay-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #D13CFF;
    border-radius: 2px;
}

.nav-overlay-close::before {
    transform: rotate(45deg);
}

.nav-overlay-close::after {
    transform: rotate(-45deg);
}

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

.nav-overlay-links li {
    margin: 0.5rem 0;
}

.nav-overlay-link {
    display: block;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-overlay-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.nav-overlay-link:hover::before {
    left: 0;
}

.nav-overlay-link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    text-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
}

.nav-overlay-dropdown {
    margin: 0.5rem 0 1rem 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay-dropdown.active {
    opacity: 1;
    max-height: 300px;
}

.nav-overlay-dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    margin: 0.4rem 0;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-overlay-dropdown-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.nav-overlay-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-overlay-dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #D13CFF;
    transition: transform 0.3s ease;
}

.nav-overlay-dropdown.active .nav-overlay-dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-overlay-link {
        font-size: 1.5rem;
        margin: 0.3rem 0;
        padding: 0.6rem 1rem;
    }
    
    .nav-overlay-links li {
        margin: 0.3rem 0;
    }
    
    .nav-overlay-dropdown-link {
        font-size: 1rem;
        margin: 0.3rem 0;
        padding: 0.5rem 0.8rem;
    }
    
    .nav-overlay-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .nav-overlay-close::before,
    .nav-overlay-close::after {
        width: 20px;
        height: 2px;
    }
    
    .nav-overlay-content {
        padding: 1rem;
        max-height: 90vh;
    }
}

/* ===== PACKAGE DETAILS STYLES ===== */
.package-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

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

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card.comparison {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.comparison .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card.comparison .pricing-header h3 {
    color: #D13CFF;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.comparison-text {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-card.comparison .pricing-features h4 {
    color: #28a745;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.pricing-card.comparison .pricing-features ul {
    margin-bottom: 1.5rem;
}

.pricing-card.comparison .pricing-features li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.pricing-card.comparison .pricing-action {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-card.comparison .btn {
    flex: 1;
    min-width: 120px;
}

/* Mobile Responsive for Package Details */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card.comparison .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card.comparison .pricing-action {
        flex-direction: column;
    }
    
    .pricing-card.comparison .btn {
        width: 100%;
    }
}

/* ===== PRICING CARDS RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
        width: 100%;
        min-height: auto;
        text-align: left;
        display: flex;
        flex-direction: column;
    }
    
    .pricing-header {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        text-align: left;
    }
    
    .price {
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .currency {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .period {
        text-align: left;
    }
    
    .price-ugx {
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .renewal-price {
        text-align: left;
        margin-top: 0.3rem;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .pricing-features h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .pricing-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        gap: 0.5rem;
        text-align: left;
        justify-content: flex-start;
    }
    
    .pricing-features i {
        flex-shrink: 0;
        margin-right: 0.5rem;
    }
    
    .pricing-action {
        text-align: center;
        margin-top: auto;
    }
    
    .pricing-action .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ===== SOFTWARE SOLUTIONS STYLES ===== */
.software-solutions {
    padding: 5rem 0;
    background: #0a0a1f;
}

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

.software-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 60, 255, 0.2);
    border-color: #D13CFF;
}

.software-card.premium {
    border-color: #28a745;
}

.software-card.free {
    border-color: #ffc107;
}

.software-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.software-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.software-card.free .software-icon {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.software-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.software-price {
    text-align: right;
}

.software-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.software-card.free .currency {
    color: #ffc107;
}

.software-price .period {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.software-features {
    margin-bottom: 2rem;
}

.software-features h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.software-features ul {
    list-style: none;
    padding: 0;
}

.software-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #b0b0b0;
}

.software-features li i {
    color: #28a745;
    font-size: 0.9rem;
}

.software-action {
    display: flex;
    gap: 1rem;
}

/* Download Form Styles */
.download-form .form-group {
    margin-bottom: 1.5rem;
}

.download-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.download-form input,
.download-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.download-form input:focus,
.download-form textarea:focus {
    outline: none;
    border-color: #D13CFF;
    box-shadow: 0 0 10px rgba(209, 60, 255, 0.3);
}

.download-form input::placeholder,
.download-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Pricing and Software */
@media (max-width: 768px) {
    .pricing-grid,
    .software-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card,
    .software-card {
        padding: 1.5rem;
    }
    
    .software-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .software-action {
        flex-direction: column;
    }
    
    .currency {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .website-pricing,
    .software-solutions {
        padding: 3rem 0;
    }
    
    .pricing-action {
        flex-direction: column;
    }
    
    .software-header h3 {
        font-size: 1.1rem;
    }
    
    .software-price .currency {
        font-size: 1.2rem;
    }
}

/* ===== DROPDOWN NAVIGATION STYLES ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    min-width: 220px;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.dropdown-item:hover {
    background: rgba(209, 60, 255, 0.2);
    color: #D13CFF;
    padding-left: 1.5rem;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(209, 60, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
    }
    
    .dropdown-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu.active .dropdown-menu {
        max-height: 300px;
    }
}

/* ===== CHATBOT STYLES ===== */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1000;
}

.chatbot-toggle {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(40, 167, 73, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 73, 0.4);
}

.chat-status {
    font-size: 0.8rem;
    font-weight: 500;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

/* Chatbot header */
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(209, 60, 255, 0.1);
    border-bottom: 1px solid rgba(209, 60, 255, 0.3);
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D13CFF, #8B2FC9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.chatbot-details h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.chatbot-status-text {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.8rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Chatbot messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.8rem;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #D13CFF, #8B2FC9);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 15px;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: rgba(40, 167, 73, 0.2);
}

/* Chatbot suggestions */
.chatbot-suggestions {
    padding: 0.5rem 1rem;
    border-top: 1px solid rgba(209, 60, 255, 0.3);
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    background: rgba(26, 26, 46, 0.5);
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(209, 60, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.suggestion-btn:hover {
    background: rgba(209, 60, 255, 0.2);
    transform: translateY(-1px);
}

/* Chatbot input */
.chatbot-input {
    padding: 1rem;
    border-top: 1px solid rgba(209, 60, 255, 0.3);
    background: rgba(26, 26, 46, 0.9);
}

.input-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: #D13CFF;
    background: rgba(255, 255, 255, 0.15);
}

.chatbot-input input::placeholder {
    color: #b0b0b0;
}

.chatbot-input button {
    background: linear-gradient(135deg, #D13CFF, #8B2FC9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(209, 60, 255, 0.4);
}

/* Mobile responsive chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 380px;
    }
    
    .chatbot-window {
        width: 100%;
        height: 400px;
        left: 0;
        transform: none;
        border-radius: 15px 15px 0 0;
        position: fixed;
        bottom: 0;
        max-height: 70vh;
        transition: all 0.3s ease;
    }
    
    .chatbot-window.keyboard-open {
        height: 50vh;
        max-height: 50vh;
        bottom: 0;
    }
    
    .chatbot-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        position: relative;
        z-index: 1002;
    }
    
    /* Chatbot messages area */
    .chatbot-messages {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
        max-height: calc(100% - 120px);
        transition: max-height 0.3s ease;
    }
    
    .chatbot-window.keyboard-open .chatbot-messages {
        max-height: calc(50vh - 120px);
    }
    
    /* Chatbot input area */
    .chatbot-input {
        padding: 1rem;
        border-top: 1px solid rgba(209, 60, 255, 0.3);
        background: rgba(26, 26, 46, 0.9);
        position: relative;
        z-index: 10;
    }
    
    .chatbot-input input {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid rgba(209, 60, 255, 0.3);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .chatbot-input input:focus {
        outline: none;
        border-color: #D13CFF;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .chatbot-input button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: #D13CFF;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .chatbot-input button:hover {
        background: #8B2FC9;
        transform: translateY(-50%) scale(1.1);
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        height: 350px;
        max-height: 80vh;
    }
    
    .chatbot-window.keyboard-open {
        height: 45vh;
        max-height: 45vh;
    }
    
    .chatbot-messages {
        max-height: calc(100% - 110px);
        font-size: 0.9rem;
    }
    
    .chatbot-window.keyboard-open .chatbot-messages {
        max-height: calc(45vh - 110px);
    }
    
    .chatbot-input {
        padding: 0.8rem;
    }
    
    .chatbot-input input {
        padding: 0.6rem;
        font-size: 16px;
    }
    
    .chatbot-input button {
        width: 30px;
        height: 30px;
        right: 3px;
    }
}

.chatbot-window.active {
    display: flex;
}

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

.chatbot-header {
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-details h4 {
    color: white;
    font-size: 1rem;
    margin: 0;
    margin-bottom: 0.2rem;
}

.chatbot-status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
}

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

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.8rem;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

.chatbot-suggestions {
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-btn {
    background: rgba(209, 60, 255, 0.2);
    border: 1px solid rgba(209, 60, 255, 0.3);
    color: #D13CFF;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.suggestion-btn:hover {
    background: rgba(209, 60, 255, 0.3);
    transform: translateY(-1px);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#chatbotInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.6rem 1rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

#chatbotInput:focus {
    border-color: #D13CFF;
    box-shadow: 0 0 10px rgba(209, 60, 255, 0.3);
}

#chatbotInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#chatbotSend {
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#chatbotSend:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(209, 60, 255, 0.4);
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #D13CFF;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive Chatbot */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: 0;
        left: 20px;
    }
    
    .chatbot-suggestions {
        flex-direction: column;
    }
    
    .suggestion-btn {
        justify-content: center;
    }
}

/* ===== ENHANCED VISUAL ELEMENTS ===== */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.1), rgba(139, 47, 201, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(209, 60, 255, 0.1), transparent, rgba(139, 47, 201, 0.1));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ===== ENHANCED SECTION SPACING ===== */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D13CFF, #8b2fc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ENHANCED CARDS ===== */
.enhanced-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.enhanced-card:hover::before {
    left: 100%;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(209, 60, 255, 0.3);
    border-color: #D13CFF;
}

/* ===== ACTIVITY INDICATORS ===== */
.activity-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.activity-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

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

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D13CFF, transparent);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #D13CFF, #8b2fc9);
    z-index: 10000;
    transition: width 0.3s ease;
}

/* ===== JOURNEY BUTTONS IN CONTENT ===== */
.journey-buttons-content {
    text-align: center;
    margin-top: 2rem;
}

.journey-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    position: relative;
    z-index: 5;
}

.journey-btn {
    background: linear-gradient(135deg, #D13CFF 0%, #8B2FC9 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

.journey-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(209, 60, 255, 0.4);
    background: linear-gradient(135deg, #8B2FC9 0%, #6B1FA9 100%);
    color: white;
}

.journey-btn.primary {
    background: linear-gradient(135deg, #D13CFF 0%, #8B2FC9 100%);
}

.journey-btn.donate {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.journey-btn.donate:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
}

.journey-btn.coffee {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.journey-btn.coffee:hover {
    background: linear-gradient(135deg, #5a32a3 0%, #4a2c8a 100%);
}

.journey-btn.invest {
    background: linear-gradient(135deg, #fd7e14 0%, #e67e22 100%);
}

.journey-btn.invest:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

/* Mobile responsive for journey buttons */
@media (max-width: 768px) {
    .journey-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .journey-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .journey-buttons-content h3 {
        font-size: 1.2rem !important;
        margin: 1.5rem 0 1rem 0 !important;
    }
}

/* ===== PORTFOLIO SLIDER STYLES ===== */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(209, 60, 255, 0.2);
}

.slider-btn {
    background: linear-gradient(135deg, #D13CFF 0%, #8B2FC9 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #8B2FC9 0%, #6B1FA9 100%);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #D13CFF;
    border-color: #D13CFF;
    transform: scale(1.2);
}

/* Portfolio items for slider */
.portfolio-grid {
    position: relative;
    overflow: hidden;
}

.portfolio-item {
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
}

.portfolio-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile responsive slider */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .portfolio-item {
        margin-bottom: 1rem;
    }
}

/* ===== GLOBAL RESPONSIVE FIXES ===== */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure all interactive elements are clickable */
a, button, .btn, .journey-btn, input, textarea, select {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    -webkit-touch-callout: auto !important;
}

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

/* Prevent forms from overflowing */
form {
    max-width: 100%;
    overflow: hidden;
}

form input, form textarea, form select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix viewport issues */
img {
    max-width: 100%;
    height: auto;
}

/* ===== MOBILE USER EXPERIENCE FIXES ===== */
@media (max-width: 768px) {
    /* Navigation improvements */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(26, 26, 46, 0.98) !important;
        padding: 0 20px;
    }
    
    .nav-container {
        position: relative;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none; /* Hide old menu */
    }

    .nav-overlay {
        display: none; /* Hide overlay by default on mobile */
    }

    .nav-overlay.active {
        display: flex; /* Show overlay when active */
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-toggle {
        padding: 10px;
        background: transparent;
        border: none;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active {
        position: fixed;
        right: 20px;
        top: 20px;
        transform: translateY(0);
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #ffffff;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #ffffff;
    }
    
    /* Allow text selection for all content */
    body, p, span, div, h1, h2, h3, h4, h5, h6 {
        -webkit-touch-callout: auto;
        -webkit-user-select: auto;
        -khtml-user-select: auto;
        -moz-user-select: auto;
        -ms-user-select: auto;
        user-select: auto;
    }
    
    /* Allow text selection and clicks for important elements */
    .journey-btn, .btn, button, input, textarea, select, a, .nav-link, .nav-menu, .nav-toggle, .chatbot-toggle, .chatbot-window, .chatbot-input input, .chatbot-input button, .suggestion-btn, .tab-btn, .form-group input, .form-group textarea, .form-group select {
        -webkit-user-select: auto !important;
        -khtml-user-select: auto !important;
        -moz-user-select: auto !important;
        -ms-user-select: auto !important;
        user-select: auto !important;
        -webkit-touch-callout: auto !important;
        pointer-events: auto !important;
    }
    
    /* Allow text selection for inputs and text areas */
    input, textarea, select, [contenteditable] {
        -webkit-touch-callout: text;
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Global container fixes */
    .container {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Prevent all content overflow - be more specific */
    .container, .section, .contact-content, .contact-form-container, .contact-info-container, .form-container, .contact-info-card, .portfolio-grid, .services-grid, .team-grid, .about-content, .philosophy-content, .story-content, .cta-content, .page-header-content, .hero-content, .footer-content {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
    
    /* Fix images and media */
    img, video, iframe {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    /* Fix tables */
    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    /* Fix forms */
    form {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Smooth scrolling for mobile */
    html, body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Prevent double-tap zoom */
    .btn, button, a {
        touch-action: manipulation;
    }
    
    /* Prevent content from jumping */
    body {
        padding-top: 70px;
    }
    
    /* Prevent highlight issues */
    ::selection {
        background: rgba(209, 60, 255, 0.3) !important;
        color: #ffffff !important;
    }
    
    ::-moz-selection {
        background: rgba(209, 60, 255, 0.3) !important;
        color: #ffffff !important;
    }
    
    /* Prevent tap highlight on mobile */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    /* Allow tap highlight for buttons and links */
    button, .btn, a, [onclick], [role="button"] {
        -webkit-tap-highlight-color: rgba(209, 60, 255, 0.2) !important;
    }
    
    /* Prevent double-tap zoom */
    .btn, button, a {
        touch-action: manipulation;
    }
    
    /* Prevent content from jumping */
    body {
        padding-top: 70px;
    }
}

/* ===== TEMPLATE QUOTE SECTION ===== */
.template-quote-section {
    background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
    padding: 5rem 0;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(209, 60, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

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

.quote-header h2 {
    color: #D13CFF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-header p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #D13CFF;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(209, 60, 255, 0.2);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.5);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D13CFF;
    background: rgba(26, 26, 46, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.quote-summary {
    background: linear-gradient(135deg, rgba(209, 60, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(209, 60, 255, 0.3);
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(209, 60, 255, 0.1);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: #e0e0e0;
    font-weight: 500;
}

.summary-value {
    color: #D13CFF;
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(209, 60, 255, 0.3);
}

.summary-total .summary-label {
    color: #D13CFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-total .summary-value {
    color: #D13CFF;
    font-weight: 700;
    font-size: 1.3rem;
}

.quote-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.quote-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .quote-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .quote-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quote-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}
