/* CSS Variables for consistent theming */
        :root {
            --primary-gradient: linear-gradient(0.5turn, rgb(55, 81, 250), #180138, #02055f);
            --accent-color: #5a0081;
            --accent-secondary: #4d0343;
            --accent-tertiary: #7d37ff;
            --text-dark: #601212;
            --text-light: #e9fcfd;
            --shadow-color: rgba(87, 95, 246, 0.3);
            --border-radius: 10px;
            --section-spacing: 100px;
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--primary-gradient);
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .rubik-iso-regular {
            font-family: "Rubik Iso", system-ui;
            font-weight: 400;
            font-style: normal;
            color: var(--accent-secondary);
            text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
        }

        .rubik-80s-fade-regular {
            font-family: "Rubik 80s Fade", system-ui;
            font-weight: 400;
            font-style: normal;
            color: var(--accent-tertiary);
            text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
        }

        .brand-heading {
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
            color: var(--accent-tertiary);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Layout Components */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--section-spacing) 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--accent-tertiary);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* background-color: rgba(255, 255, 255, 0.95); */
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo img {
            height: 40px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-tertiary);
        }

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

        .nav-link {
            text-decoration: none;
            /* color: var(--text-dark); */
            color:antiquewhite;

            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }

        .nav-link:hover {
            background-color: rgba(0, 0, 0, 0.05);
            color: var(--accent-tertiary);
        }

        .cta-button {
            background-color: var(--accent-color);
            color: #8f6b6b;
            padding: 0.50rem 1.0rem;
            border-radius: var(--border-radius);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background-color: var(--accent-tertiary);
            color: white;
        }

        /* Language Switcher */
        .language-switcher {
            position: relative;
            display: inline-block;
        }

        .language-btn {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            font-weight: 500;
        }

        .language-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            z-index: 1001;
        }

        .language-switcher:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.75rem 1rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .language-option:last-child {
            border-bottom: none;
        }

        .language-option:hover {
            background: rgba(0, 0, 0, 0.05);
            color: var(--accent-tertiary);
        }

        .language-option.active {
            background: rgba(210, 158, 233, 0.1);
            color: var(--accent-tertiary);
            font-weight: 600;
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            border-radius: 2px;
            object-fit: cover;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background-image: url('images/project-manageent-software-header-image.jpg'); 
            background-size: cover; 
            mix-blend-mode: luminosity;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            background-color: transparent;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: var(--transition);
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color:var(--text-light); 
            backdrop-filter: blur(3px); 
            font-weight: 600;

        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: transparent;
            color:var(--text-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow-color);
        }

        .service-card h3 {
            color: var(--accent-tertiary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .service-card ul {
            list-style-type: none;
            margin-top: auto;
        }

        .service-card li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
            list-style-type: none;

        }

        .service-card li:before {
            content: "•";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Products Section */
        .product-showcase {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .product-item {
            display: flex;
            align-items: center;
            gap: 3rem;
            background-color: transparent;
            color:var(--text-light);
            padding: 2rem;
            /* border-radius: var(--border-radius); */
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px var(--shadow-color);
        }

        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow-color);
        }
        .product-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .product-image {
            flex: 0 0 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .product-item:hover .product-image img {
            transform: scale(1.05);
        }

        .product-content {
            flex: 1;
        }

        .product-title {
            color: var(--accent-tertiary);
            margin-bottom: 1rem;
        }

        /* CEO Message Section */
        .ceo-message {
            background-color: transparent;
            color:var(--text-light);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .ceo-message:before {
            content: """;
            font-size: 5rem;
            color: var(--accent-color);
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.3;
        }

        .ceo-message blockquote {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Contact Section */
        .contact-section {
            text-align: center;
        }

        .contact-email {
            font-size: 1.5rem;
            margin: 2rem 0;
        }

        .contact-email a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-email a:hover {
            text-decoration: underline;
            color: var(--accent-tertiary);
        }

        /* Footer */
        footer {
            background-color: #1f1f1f;
            color: var(--text-light);
            padding: 3rem 0 1rem;
        }

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

        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

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

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

        .footer-column a {
            /* color: #ccc; */
            color: var(--text-light) !important;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column a:hover { 
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            transition: var(--transition);
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Divider */
        .divider {
            height: 3px;
            /* --accent-color: #5a0081; */

            background: linear-gradient(to right, transparent, #5a0081, transparent);
            margin: 3rem auto;
            width: 75%;
        }

        .path {
        width: 50px;
        /* height: 50px; */
        position: absolute;
        /* background-color: magenta; */
        animation: move 10s linear infinite;
        }

        .xywh-path-1 {
        offset-path: xywh(0px 0px 100% 100% round 5%);
        }

        .xywh-path-2 {
        /* offset-path: xywh(20px 30% 150% 200%); */
        /* offset-path: path("M 10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80"); */
        /* offset-path: path("M-70,-40 C-70,70 70,70 70,-40"); */
        }

        @keyframes move {
        0% {
            offset-distance: 0%;
        }
        100% {
            offset-distance: 100%;
        }
        }


        

        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .product-item,
            .product-item:nth-child(even) {
                flex-direction: column;
            }
            
            .product-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-2 {
            margin-bottom: 2rem;
        }
        
        .mt-2 {
            margin-top: 2rem;
        }

        .office-location {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-location:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.office-location h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-location p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.coming-soon {
    color: #ffd700;
    font-weight: 600;
}

.office-location em {
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-location {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .office-location h4 {
        font-size: 0.95rem;
    }
    
    .office-location p {
        font-size: 0.85rem;
    }
}

