/* Reset and base styles */


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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo styles */
.logo-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    background: none;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: #374151;
    background: rgba(59, 130, 246, 0.05);
}

.nav-item.active {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.1);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

/* CTA button */
.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-icon {
    width: 24px;
    height: 24px;
    color: #374151;
}

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
}

.mobile-nav-item {
    background: none;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-nav-item:hover {
    color: #374151;
    background: rgba(59, 130, 246, 0.05);
}

.mobile-nav-item.active {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.1);
}

.mobile-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-align: center;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .desktop-nav, .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .logo-placeholder {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 60px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .logo-placeholder {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ---------------------------------------------------------------------------------------------------------- */


/* OPTION 2: Elegant Strong Script (Uncomment to use) */

.decillion-text {
    font-family: 'Cardo', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: -3px;
}

.softwares-text {
    font-family: 'Cardo', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: -3px;
}


/* Hide old company name */
.company-name {
    display: none;
}

/* Enhanced logo container for better alignment */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive design for professional text */
@media (max-width: 768px) {
    .decillion-text {
        font-size: 18px;
    }
    
    .softwares-text {
        font-size: 14px;
    }
    
    .logo-container {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .decillion-text {
        font-size: 16px;
    }
    
    .softwares-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .logo-container {
        gap: 6px;
    }
}