        /* HEADER ALWAYS OVER HERO */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0);
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
        }

        .header.slide-down {
            position: fixed;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            display: block;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .header.other-pg-menu {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
        }

        .logo img {
            height: 150px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            transition: color 0.3s;
            position: relative;
        }

        .header .nav-link {
            color: #fff;
        }

        .header.slide-down .nav-link {
            color: #333;
        }

        .header.other-pg-menu .nav-link {
            color: #333 !important;
        }

        .nav-link:hover {
            color: #dc3545;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #dc3545;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
            pointer-events: none;
        }

        .nav-item:hover>.dropdown,
        .nav-item:focus-within>.dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-menu {
            list-style: none;
            padding: 10px 0;
            display: block !important;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .dropdown-menu a:hover {
            background: #f8f9fa;
            color: #dc3545;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
        }

        .contact-info a {
            color: #dc3545;
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
            transition: color 0.3s;
        }

        .phone {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
        }

        .user-icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
            z-index: 1101;
        }



        @media (max-width: 1024px) {
            .header-container {
                padding: 0 10px;
            }

            .social-icons {
                right: 10px;
                top: 100px;
            }
        }

        @media (max-width: 900px) {
            .header-container {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                height: 60px;
                padding: 0 10px;
            }

            .logo img {
                height: 80px;
            }

            .contact-info a {
                color: #dc3545;
                text-decoration: none;
                font-weight: 600;
                font-size: 8px;
                transition: color 0.3s;
            }

            /* .nav-menu,
            .contact-info {
                display: none !important;
            } */

            .mobile-menu-toggle {
                display: block;
            }

            .social-icons {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 5px;
            }

            .logo img {
                height: 80px;
            }

            .contact-info a {
                color: #dc3545;
                text-decoration: none;
                font-weight: 600;
                font-size: 8px;
                transition: color 0.3s;
            }
        }

        /* FULLSCREEN MOBILE MENU */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 50vw;
            height: 100vh;
            background: #fff;
            z-index: 2000;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
            transition: opacity 0.3s;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            background: none;
            border: none;
            font-size: 36px;
            color: #333;
            cursor: pointer;
            z-index: 2100;
        }

        .mobile-nav .nav-menu {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 40px;
            align-items: center;
        }

        .mobile-nav .nav-link {
            font-size: 1.2rem;
            color: #222;
            font-weight: 600;
            padding: 12px 0;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav .nav-link:hover {
            color: #dc3545;
        }

        .mobile-nav .dropdown-menu {
            display: none;
            flex-direction: column;
            background: #fafafa;
            margin: 0 0 0 10px;
            border-radius: 6px;
            box-shadow: none;
            padding: 0;
        }

        .mobile-nav .nav-item.open>.dropdown-menu {
            display: flex;
        }

        .mobile-nav .dropdown-menu a {
            font-size: 1rem;
            color: #444;
            padding: 10px 0 10px 18px;
            border: none;
        }

        .mobile-nav .dropdown-menu a:hover {
            color: #dc3545;
            background: #f8f9fa;
        }

        .mobile-nav .submenu-arrow {
            margin-left: 8px;
            font-size: 0.9em;
            transition: transform 0.3s;
        }

        .mobile-nav .nav-item.open>.nav-link .submenu-arrow {
            transform: rotate(180deg);
        }

        .mobile-nav .contact-info {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        @media (min-width: 769px) {
            .mobile-nav {
                display: none !important;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/Kigstown\ project\ 1.jpg') center/cover;
            filter: brightness(0.7);
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 1200px;
            padding: 0 20px;
        }

        .hero-tagline {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 300;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 20px;
            font-weight: 700;
            /* margin-bottom: 10px; */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-banner {
            background: #dc3545;
            color: white;
            padding: 20px 180px;
            font-size: 55px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
            margin-top: -5px;
            line-height: 1;
            transform: skew(-2deg);
        }

        .hero-banner span {
            transform: skew(2deg);
            display: inline-block;
        }

        /* Demo Content Section */
        .demo-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            text-align: center;
        }

        .demo-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .demo-text {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 50px;
        }

        .demo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .demo-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .demo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .demo-card h3 {
            color: #dc3545;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .demo-card p {
            color: #666;
            line-height: 1.6;
        }


        /* Contact Button */
        .contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #dc3545;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(220, 53, 69, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .contact-btn:hover {
            background: #c82333;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-title {
                font-size: 22px;
            }

            .hero-banner {
                font-size: 40px;
                padding: 20px 80px;
                line-height: 1;
            }

            .hero-tagline {
                font-size: 15px;
            }

            .demo-title {
                font-size: 1.3rem;
            }

            .social-icons {
                right: 15px;
            }

            .contact-btn {
                right: 15px;
                bottom: 15px;
                padding: 12px 20px;
                font-size: 14px;
            }

            .header-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 16px;
            }

            .hero-banner {
                font-size: 40px;
                padding: 10px 40px;
                line-height: 1;
                letter-spacing: 1px;
            }

            .hero-tagline {
                font-size: 12px;
            }

            .demo-title {
                font-size: 1rem;
            }

            .social-icons {
                display: none;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .fade-in-delay {
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Home Icon */
        .home-icon {
            width: 16px;
            height: 16px;
            margin-right: 8px;
        }

        .nav-link.home-link {
            display: flex;
            align-items: center;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 14px;
            text-align: center;
            opacity: 0.8;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* HERO NAVBAR STYLES */
        .hero-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* background: #fff; */
            z-index: 1000;
            /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); */
            transition: top 0.3s;
            padding: 0;
        }

        .hero-navbar .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.5rem 2rem;
        }

        .hero-navbar .logo img {
            height: 150px;
            width: auto;
        }

        .hero-navbar .nav {
            /* flex: 1;
            margin-left: 2rem; */
        }

        .hero-navbar .nav-menu {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hero-navbar .nav-item {
            position: relative;
        }

        .hero-navbar .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4em;
        }

        /* .dropdown-menu {
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: baseline;
        }

        .dropdown-menu li {
            line-height: 2
        } */

        /* .hero-navbar .nav-link:hover,
        .hero-navbar .nav-link.home-link {
            background: #f8f9fa;
            color: #dc3545;
        } */

        .hero-navbar .home-icon {
            width: 18px;
            height: 18px;
            margin-right: 0.3em;
        }

        /* .hero-navbar .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 210px;
            background: #fff;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-radius: 6px;
            padding: 0.5rem 0;
            z-index: 10;
        } */

        .hero-navbar .nav-item:hover>.dropdown,
        .hero-navbar .nav-item:focus-within>.dropdown {
            display: block;
        }

        /* .hero-navbar .dropdown-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hero-navbar .dropdown-menu li a {
            display: block;
            padding: 0.7rem 1.2rem;
            color: #222;
            text-decoration: none;
            font-size: 1rem;
            transition: background 0.2s, color 0.2s;
        }

        .hero-navbar .dropdown-menu li a:hover {
            background: #f8f9fa;
            color: #dc3545;
        } */

        .hero-navbar .contact-info {
            margin-left: 2rem;
        }

        .hero-navbar .phone {
            font-weight: 600;
            color: #dc3545;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 0.02em;
        }

        .hero-navbar .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #222;
            margin-left: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-navbar .header-container {
                padding: 0.5rem 1rem;
            }

            .hero-navbar .nav {
                margin-left: 1rem;
            }

            .hero-navbar .contact-info {
                margin-left: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-navbar .nav-menu {
                display: none;
            }

            .hero-navbar .mobile-menu-toggle {
                display: block;
            }

            .hero-navbar .contact-info {
                display: none;
            }
        }


        /* ...existing code... */
        .header .social-icons {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 1200;
            background: none;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .header .social-icons {
                right: 5px;
                top: 50%;
            }
        }

        @media (max-width: 768px) {
            .header .social-icons {
                display: none;
            }
        }

        .social-icons {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 1200;
            background: none;
            margin: 0;
        }

        .social-icons a svg {
            display: block;
            width: 36px;
            height: 36px;
            padding: 6px;
            border-radius: 50%;
            /* background: rgba(0, 0, 0, 0.25); */
            border: 1px solid white;
            transition: background 0.2s, color 0.2s;
            color: #fff;
            /* White by default */
        }

        .social-icons a.linkdin:hover svg {
            color: #0077b5;
            /* LinkedIn blue */
            background: #fff;
        }

        .social-icons a.facebook:hover svg {
            color: #1877f3;
            /* Facebook blue */
            background: #fff;
        }

        .social-icons a.instagram:hover svg {
            color: #e4405f;
            /* Instagram pink */
            background: #fff;
        }

        /* ...existing code... */