* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            overflow: hidden; /* Disable vertical scrolling */
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #aaa9ff;
        }

        body {
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 90%;
            margin: 0 auto;
        }

        header {
            background-color: #504faf;
            color: #fff;
            padding: 10px 0;
            position: relative;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            height: 50px;
            width: 275px;
        }

        .logo {
            background-image: url(abhishek_logo.png);
            background-size: cover;
            height: 70px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 20px;
            position: relative;
        }

        .active, .nav-links li:hover {
            background: #5C415D;
            border-radius: 10px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 10px;
        }

        .sub-menu-1 {
            display: none;
            position: absolute;
            top: 40px;
            left: 0;
            background: #504faf;
            border-radius: 10px;
            z-index: 100;
        }

        .nav-links li:hover .sub-menu-1 {
            display: block;
        }

        .sub-menu-1 ul {
            list-style: none;
        }

        .sub-menu-1 li {
            padding: 5px 15px;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 5px 0;
        }

        .flag-container {
            position: absolute;
            top: 10px;
            left: 10px;
        }

        .flag-container img {
            height: 50px;
        }

        .motion-text marquee {
            color: #fff;
            padding: 10px 0;
            display: block;
        }

        main {
            flex: 1;
            overflow: hidden;
        }

        #hero {
            height: 100%;
            background-color: #fdf5e6;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 600px;
            color: #504faf;
        }

        .hero-content h1 {
            font-size: 2.25rem;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.55rem;
            margin-bottom: 30px;
        }

        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image img {
            max-width: 300px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
        }


        .btn {
            display: inline-block;
            text-decoration: none;
            color: #fff;
            border: 1px solid black;
            padding: 12px 34px;
            font-size: 13px;
            background: #504faf;
            position: relative;
            cursor: pointer;
            border-radius: 10px;
        }

        .btn:hover {
            background: #5C415D;
            transition: 0.5s;
        }

        footer {
            background-color: #504faf;
            color: #fff;
            text-align: center;
            padding: 10px 0;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 50%;
                background-color: #504faf;
                position: absolute;
                top: 60px;
                right: 0;
                padding: 10px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
            }

            .nav-links a {
                padding: 10px;
                display: block;
            }

            .menu-toggle {
                display: block;
            }

            .hero-wrapper {
                flex-direction: column;
                text-align: center;
            }

            .hero-image img {
                max-width: 200px;
            }
        }
