/* Font Face Declarations */
@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/comfortaa/Comfortaa-Regular.woff2') format('woff2'),
         url('../fonts/comfortaa/Comfortaa-Regular.woff') format('woff'),
         url('../fonts/comfortaa/Comfortaa-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pavelt';
    src: url('../fonts/pavelt/Pavelt.otf') format('opentype'),
         url('../fonts/pavelt/Pavelt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables */
:root {
    --dark-bg: #1a1a1a;
    --border-radius: 12px;
    --dark-text: #ffffff;
    --gray: #cccccc;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

p {
    font-family: 'Comfortaa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Header and Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
}

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

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

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

.nav-link:hover {
    color: #ff6b35;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    color: #333;
    padding: 120px 0 80px;
    text-align: center;
}

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

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

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

.btn-primary {
    background-color: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.btn-outline {
    background-color: transparent;
    color: #4a4a4a;
    border-color: #ff6b35;
}

.btn-outline:hover {
    background-color: #ffe4db;
    border-color: #4a4a4a;
    color: #ff6b35;
}

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

.btn-secondary:hover {
    background-color: #ff6b35;
    color: white;
}



/* LiveBazaar Section */
.livebazaar {
    padding: 80px 0;
}

/* Cinepixus Section */
.cinepixus {
    padding: 80px 0;
}

.product-showcase {
    background: transparent;
    border-radius: var(--border-radius);
    padding: 60px 80px;
    margin: 40px 0 0 0;
    box-sizing: border-box;
}

.product-showcase > * {
    margin-left: 40px;
    margin-right: 40px;
}

.livebazaar-showcase {
    border: 1px solid rgba(59, 130, 246, 0.678);
}

.cinepixus-showcase {
    border: 1px solid rgba(59, 130, 246, 0.678);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.app-icon-lb {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.app-icon-lb img {
    width: 100%;
    height: 100%;
    padding: 15px;
    object-fit: contain;
}

.app-icon-cpu {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.app-icon-cpu img {
    width: 100%;
    height: 100%;
    padding: 15px;
    object-fit: contain;
}

.cinepixus .app-icon-cpu {
    padding: 15px;
    height: 230px;
}

.cinepixus-image-wrapper {
    width: 131px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.cinepixus .app-icon-cpu img {
    border-radius: 0;
    width: 131px;
    height: 200px;
    padding: 0;
}

.product-info h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    letter-spacing: 1px;
    font-family: 'Pavelt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.product-title-link:hover {
    opacity: 0.8;
}

.gradient-text {
    background: linear-gradient(45deg, #DDA0DD, #2D1B69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 20px;
    color: rgba(44, 62, 80, 0.7);
    margin-top: -6px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    letter-spacing: 0.45em;
    gap: 10px;
    text-transform: uppercase;
}

.gradient-letter {
    font-family: 'Pavelt', sans-serif;
    font-weight: 200;
    background: linear-gradient(45deg, #DDA0DD, #2D1B69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: -0.3em;
}

.tagline-text {
    font-weight: 300;
}

.tagline-separator {
    color: rgba(44, 62, 80, 0.5);
}

.product-tag {
    display: inline-block;
    background: rgb(64, 134, 255);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.product-description {
    margin-bottom: 40px;
}

.product-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature {
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid #F97316;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 240px;
    height: 240px;
    margin: 0 auto 15px auto;
    display: block;
    object-fit: contain;
}

.feature h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    margin-top: auto;
}

.feature p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-info h2 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 13px;
        letter-spacing: 0.5em;
        gap: 12px;
    }
}

/* Company Values */
.company-values {
    padding: 80px 0;
}

.company-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

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

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #ffffff;
    color: #2c3e50;
    padding: 40px 0 20px;
    border-top: 2px solid #c3c3c3;
    
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-top-row {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 0;
    color: #373737;
}

.footer-description {
    font-size: 0.9rem;
    color: #373737;
}

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

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

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

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

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

.footer-bottom p {
    font-weight: 500;
}

/* Page-specific Styles */
.page-hero {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    color: #333;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nav-link.active {
    color: #ff6b35;
    font-weight: 600;
}

/* About Page Styles */
.story-section {
    padding: 80px 0;
}

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

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #ffffff);
}

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

.timeline-year {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
    height: fit-content;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.name-story {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.name-story h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.name-story ul {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.name-story ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.name-story ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.vision-mission {
    padding: 80px 0;
}

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

.vm-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.vm-item h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.current-focus {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.current-focus h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.focus-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.focus-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Products Page Styles */
.product-showcase {
    padding: 80px 0;
}

.product-detail {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    overflow: hidden;
}

.product-info {
    padding: 3rem;
}

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

.product-logo {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.product-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.product-title h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-title .tagline {
    font-size: 15px;
    letter-spacing: 0.5em;
    gap: 16px;
    margin-top: -14px;
    margin-bottom: 10px;
}

.product-tagline {
    color: #666;
    font-style: italic;
}

.product-description h3, .product-description h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.product-description h3:first-child {
    margin-top: 0;
}

.product-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.product-description ul li {
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.product-status {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.product-ecosystem, .technical-specs {
    padding: 80px 0;
}

.product-ecosystem {
    background-color: #f8f9fa;
}

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

.ecosystem-item, .spec-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ecosystem-item h3, .spec-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-icon {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    color: #333;
    padding: 1rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.contact-details p {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: #666;
}

.business-hours h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hours-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.location-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.location-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.address, .future-plans {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.address h4, .future-plans h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #d3d3d3;
}

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

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #2c3e51;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
    width: 100px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 500;
    color: #2c3e50;
    font-family: monospace;
    flex: 1;
    text-align: left;
}

.info-item-single {
    padding: 0.75rem 0;
    border-bottom: 1px solid #2c3e51;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
}

.info-item-single:last-child {
    border-bottom: none;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #bee4ff, #5093ff);
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero p {
        font-size: 0.85rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .btn {
        width: 200px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-timeline::before {
        left: 25px;
    }

    .timeline-year {
        margin-bottom: 1rem;
        margin-right: 0;
    }

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

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

    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .product-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .focus-content,
    .ecosystem-content,
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .products-overview h2,
    .company-values h2 {
        font-size: 2rem;
    }

    .product-card,
    .value-item {
        padding: 1.5rem;
    }

    /* Products Page ONLY - Remove padding for full width */
    .product-detail .product-info {
        padding: 0;
    }

    .product-detail .product-header {
        flex-direction: row;
        align-items: center;
    }

    .product-detail .product-logo {
        margin-right: 0;
        margin-bottom: 0;
    }

    /* Reduce font sizes for product titles on mobile - Products Page ONLY */
    .product-detail .product-title h2 {
        font-size: 1.5rem;
    }

    .product-detail .product-tagline {
        font-size: 0.9rem;
    }

    .product-detail .product-title .tagline {
        font-size: 11px;
        gap: 10px;
        margin-top: 2px;
    }

    .product-showcase {
        padding: 40px 0;
    }

    .product-detail {
        margin-bottom: 4rem;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    /* Remove container padding on mobile for products page ONLY */
    .product-showcase .container:has(.product-detail) {
        padding: 0;
    }
}