/* The Software Showroom - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #0F172A;
    text-decoration: none;
}

a:hover {
    color: #00D4D4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FAFBFC;
    background-image: url("../images/bg2.da7221ee6277.png?v=1");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #0F172A;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.03) 0%, rgba(91, 140, 255, 0.02) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Bubbles - REMOVED */
.bubble {
    display: none;
}

/* Floating shapes - REMOVED */
.floating-shape {
    display: none;
}

.shape-1 {
    display: none;
}

.shape-2 {
    display: none;
}

.shape-3 {
    display: none;
}

.shape-4 {
    display: none;
}

.shape-5 {
    display: none;
}

/* Diagonal shapes container - REMOVED */
.diagonal-shapes {
    display: none;
}

.diagonal-shape {
    display: none;
}

.accent-dots {
    display: none;
}

/* Navigation Styles - MOVED TO navigation.css */
/* All navigation styles are now in navigation.css for better organization */

@media (max-width: 480px) {
    main {
        padding-top: 0;
    }
}

/* Buttons */
.btn {
    padding: 14px 32px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4D4 0%, #5B8CFF 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5B8CFF 0%, #6366F1 100%);
    transform: translateY(-4px) scale(1.05);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #6366F1;
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 212, 0.15) 100%);
    color: #5B8CFF;
    border: 2px solid #00D4D4;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    transform: translateY(-4px) scale(1.05);
    border-color: #6366F1;
    color: #0F172A;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover i {
    transform: translateX(5px) scale(1.1);
    color: #6366F1;
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    color: #666;
    padding: 50px 20px 30px;
    margin-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #00D4D4;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #0F172A;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-section ul li a:hover {
    color: #00D4D4;
    text-decoration: underline;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.7;
    color: #0F172A;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand h2 {
    color: #0F172A;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-divider {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

/* Responsive Design */
/* Navigation responsive styles are in navigation.css */

@media (max-width: 768px) {
    /* Navigation styles moved to navigation.css */

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer {
        padding: 40px 20px 25px;
        margin-top: 50px;
    }

    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    /* Navigation styles moved to navigation.css */

@media (max-width: 480px) {
    /* Navigation styles moved to navigation.css */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 30px 15px 20px;
        margin-top: 40px;
    }

    .footer-section h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        margin-bottom: 7px;
    }

    .footer-section ul li a {
        font-size: 11px;
    }

    .footer-brand h2 {
        font-size: 16px;
    }

    .footer-divider {
        padding-top: 15px;
        margin-top: 20px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

