/*
Theme Name: WebDesign & Entertainment2 .com
Theme URI: http://www.Tekxmedia.com
Author: TMac
Author URI: http://www.tekxmedia.com/
Description: Theme for Website Design and Digital signage Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: Website design Entertainment & digital signage service
*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0f172a;
            --secondary-dark: #1e293b;
            --accent-teal: #06b6d4;
            --accent-orange: #f97316;
            --text-light: #f8fafc;
            --text-gray: #cbd5e1;
            --card-bg: #1e293b;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 3.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--accent-teal);
        }
        .nav-cta {
            background: var(--accent-orange);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            transition: 0.3s;
        }
        /* Hero Section */
        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 6.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 2.15rem;
            color: var(--text-gray);
            margin-bottom: 3.5rem;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .sidebar {
            float: left;
            margin-right: 5%;
            max-width: 413px;
            position: relative;
            width: 22.4118%;
            background:#fcf9f9f8;
            padding: 1em;
        }
        .sidebar a{
            background: none;
        }
        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.7rem;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-primary {
            background: var(--accent-orange);
            color: white;
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
        }
        .btn-secondary {
            background: transparent;
            color: var(--accent-teal);
            border: 2px solid var(--accent-teal);
        }
        .btn-secondary:hover {
            background: var(--accent-teal);
            color: white;
        }
        .hero-visual {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        .hero-visual::after {
            content: '🖥️';
            font-size: 19rem;
            opacity: 0.3;
        }
        .woocommerce nav.woocommerce-pagination {
            text-align: center;
            margin-top: 87px;
            width: auto;
            padding: 10px;
            background: darkorange;
        }
        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 4.75rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.9rem;
            color: var(--text-gray);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        /* Value Proposition */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .value-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
        }
        .value-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
        }
        .value-card h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-teal);
        }
        .value-card p {
            color: var(--text-gray);
            line-height: 1.5;
        }
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        .service-card {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        .service-card:hover {
            border-color: var(--accent-teal);
            transform: translateY(-5px);
        }
        .service-icon {
            font-size: 7.5rem;
            margin-bottom: 1.5rem;
        }
        .service-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        .service-card p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }
        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .service-features li::before {
            content: '✓';
            color: var(--accent-teal);
            font-weight: bold;
            font-size: 1.2rem;
        }
        .service-cta {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: var(--accent-teal);
            border: 2px solid var(--accent-teal);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .service-cta:hover {
            background: var(--accent-teal);
            color: white;
        }
        /* Use Cases */
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        .use-case-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }
        .use-case-card:hover {
            transform: translateY(-10px);
        }
        .use-case-image {
            height: 250px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9rem;
        }
        .use-case-content {
            padding: 2rem;
        }
        .use-case-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-orange);
        }
        .use-case-content p {
            color: var(--text-gray);
            margin-bottom: 1rem;
        }
        .use-case-result {
            background: rgba(6, 182, 212, 0.1);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            color: var(--accent-teal);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        .pricing-card {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 16px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
            position: relative;
        }
        .pricing-card.featured {
            border-color: var(--accent-teal);
            transform: scale(1.05);
        }
        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--accent-orange);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.9rem;
        }
        .pricing-card h3 {
            font-size: 3.75rem;
            margin-bottom: 1rem;
        }
        .pricing-price {
            font-size: 5rem;
            font-weight: 800;
            color: var(--accent-teal);
            margin-bottom: 0.5rem;
        }
        .pricing-price span {
            font-size: 2.2rem;
            color: var(--text-gray);
        }
        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }
        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .pricing-features li::before {
            content: '✓';
            color: var(--accent-teal);
            font-weight: bold;
            font-size: 1.2rem;
        }
        .pricing-cta {
            width: 100%;
            padding: 1rem;
            background: var(--accent-teal);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .pricing-cta:hover {
            background: var(--accent-orange);
            transform: translateY(-2px);
        }
        .pricing-note {
            text-align: center;
            margin-top: 3rem;
            color: var(--text-gray);
            font-size: 1.8rem;
        }
        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
            padding: var(--section-padding);
            position: relative;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        .testimonial-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--accent-teal);
        }
        .testimonial-quote {
            font-size: 2.1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.8;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--text-light);
        }
        .testimonial-role {
            color: var(--text-gray);
            font-size: 1.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .stat-card {
            text-align: center;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-teal);
        }
        .stat-label {
            color: var(--text-gray);
            font-size: 2.1rem;
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-orange) 100%);
            border-radius: 20px;
            padding: 5rem 3rem;
            text-align: center;
            margin: 4rem auto;
        }
        .cta-section h2 {
            font-size: 5rem;
            margin-bottom: 1rem;
        }
        .cta-section p {
            font-size: 2.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-white {
            background: white;
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        /* Footer */
        footer {
            background: var(--secondary-dark);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-teal);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent-teal);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--accent-teal);
            transform: translateY(-3px);
        }
        /* Modal New */
        .contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .contact-modal.show {
            display: flex;
        }
        .modal-content-custom {
            background: white;
            border-radius: 20px;
            padding: 50px;
            max-width: 500px;
            width: 90%;
            animation: slideInDown 0.5s ease;
            position: fixed; /* Ensures the modal stays in view even when scrolling */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Centers the modal precisely */
            /* Optional: Add a z-index to ensure it appears above other elements */
        }
        .show {
            display:none;
        }
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
            transition: color 0.3s ease;
        }
        .close-modal:hover {
            color: var(--dark-bg);
        }
        .modal-content-custom h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: #1a1d2e;
        }
        .modal-content-custom p {
            color: #64748b;
            margin-bottom: 30px;
        }
        .form-control {
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            padding: 12px 20px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        .submit-btn {
            background: #ef4444;
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 10px;
            color: rgb(248, 244, 244);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            color: rgb(10, 2, 2);
            transform: translateY(-2px);
            background: #1b4fbe;
            box-shadow: 0 10px 30px rgba(10, 76, 219, 0.3);
        }
        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
        }
        .success-message i {
            font-size: 4rem;
            color: #10b981;
            margin-bottom: 20px;
        }
/* Optional: Style social links for better alignment (if needed) */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.social-links a:hover {
    background-color: var(--accent-teal);
}   
        /* Modal old */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: var(--secondary-dark);
            padding: 3rem;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            position: relative;
            animation: slideIn 0.3s ease;
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .modal-close:hover {
            color: var(--accent-orange);
        }
        .modal-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--accent-teal);
        }
        .modal-content p {
            color: var(--text-gray);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #041628;
            font-weight: 500;
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            background: #96a3c1;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-teal);
        }
        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .form-submit:hover {
            background: var(--accent-teal);
            transform: translateY(-2px);
        }
        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: flex;
            }
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 4.5rem;
                font-weight: 800;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-visual {
                height: 350px;
            }
            .section-title {
                font-size: 2rem;
            }
            .services-grid,
            .use-cases-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .btn-primary, .btn-secondary {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }
            section {
                padding: 4rem 1.5rem;
            }
            .modal-content {
                padding: 2rem;
            }
        }
        /* Scroll Animation */
        .fade-in {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 2;
            transform: translateY(0);
        }
        