        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-maroon: #800000;
            --primary-gold: #FFD700;
            --accent-gold: #FFDF00;
            --dark-maroon: #5C0000;
            --light-gold: #FFF8DC;
            --white: #FFFFFF;
            --text-dark: #2C2C2C;
            --text-light: #666666;
            --border-color: #E5E5E5;
            --success-green: #25D366;
            --light-bg: #FFF9F0;
            --shadow: rgba(128, 0, 0, 0.15);
        }

        html, body {
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }



        /* Top Info Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-item i {
            font-size: 14px;
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-decoration: none !important;
        }

        .social-links a:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: translateY(-2px);
        }

        .language-switcher {
            display: flex;
            gap: 4px;
            background: rgba(255,255,255,0.15);
            padding: 4px 8px;
            border-radius: 20px;
        }

        .language-switcher a,
        .language-switcher button {
            background: transparent;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            transition: all 0.3s ease;
            font-weight: 600;
            text-decoration: none;
        }

        .language-switcher a:hover,
        .language-switcher a.active,
        .language-switcher button:hover,
        .language-switcher button.active {
            background: var(--accent-gold);
            color: var(--primary-maroon);
        }

        /* Main Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 15px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-main {
            padding: 15px 0;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            flex-shrink: 0;
            width: 65px;
        }
        
        .logo img{
           width: 100%;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--accent-gold);
            box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
            position: relative;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: 2px;
            border: 2px solid var(--accent-gold);
            border-radius: 10px;
            opacity: 0.5;
        }

        .logo-text h1 {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 3px;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--text-light);
            font-style: italic;
        }

        /* Search Bar */
        .search-bar {
            flex: 1;
            max-width: 500px;
        }

        .search-form {
            position: relative;
            display: flex;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 30px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary-maroon);
            box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
        }

        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .search-button:hover {
            transform: translateY(-50%) scale(1.05);
        }

        /* Header CTAs */
        .header-cta {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
        }

        .cta-button i {
            font-size: 16px;
        }

        .cta-call {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
        }

        .cta-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
        }

        .cta-whatsapp {
            background: var(--success-green);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .cta-whatsapp:hover {
            background: #20BA5A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* Navigation */
        .navigation {
            background: var(--light-bg);
            border-top: 1px solid var(--border-color);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-menu li a {
            display: block;
            padding: 15px 25px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-maroon), var(--accent-gold));
            transition: all 0.3s ease;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: var(--primary-maroon);
        }

        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 80%;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-maroon);
        }




                /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social 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(--white);
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 12px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: rgba(255,255,255,0.8);
        }

        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-gold);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-maroon);
            font-size: 18px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* Floating Actions */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .floating-btn:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 35px rgba(0,0,0,0.4);
        }

        .floating-whatsapp {
            background: var(--success-green);
        }

        .floating-call {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-card::after {
                display: none;
            }

            .hero-carousel {
                height: 500px;
            }

            .hero-text h2 {
                font-size: 42px;
            }

            .carousel-arrow {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .header-main .container {
                flex-wrap: wrap;
            }

            .search-bar {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .header-cta {
                display: none;
            }

            .navigation {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-carousel {
                height: 450px;
            }

            .hero-text h2 {
                font-size: 32px;
            }

            .hero-text p {
                font-size: 16px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .section-title {
                font-size: 32px;
            }

            .steps-grid,
            .services-grid,
            .products-grid,
            .testimonials-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .floating-actions {
                bottom: 20px;
                right: 20px;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .carousel-prev {
                left: 15px;
            }

            .carousel-next {
                right: 15px;
            }
        }
