  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #262626;
            --secondary-color: #FAFAFA;
            --accent-gradient: linear-gradient(135deg, #C38903 0%, #764ba2 100%);
            --text-light: #666;
            --shadow: 0 20px 60px rgba(0,0,0,0.1);
            --logo-filter: none;
        }

        [data-theme="light"] {
            --primary-color: #FAFAFA;
            --secondary-color: #262626;
            --logo-filter: invert(1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--secondary-color);
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Join Us Button */
        .join-us-btn {
            background: var(--accent-gradient);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 1rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .join-us-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            color: white;
            text-decoration: none;
        }

        /* Color Switcher - Now in header */
        .color-switcher {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-left: 1rem;
        }

        .theme-button {
            width: 35px;
            height: 35px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .theme-button:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .theme-button.active {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        }

        .theme-dark {
            background: #262626;
            color: #FAFAFA;
        }

        .theme-light {
            background: #FAFAFA;
            color: #262626;
            border: 2px solid #262626;
        }

        /* Header - Updated Layout */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-color);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            color: var(--secondary-color);
        }

        nav {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            position: relative;
        }

        /* Logo - Left Side */
        .logo {
            width: 250px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-left: 5px;
        }

        .logo img {
            width: 50%;
            height: 80%;
            filter: var(--logo-filter);
            transition: filter 0.3s ease;
        }

        /* Navigation Links - Right Side */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            transition: all 0.3s ease;
            margin-right: 0;
            padding-right: 0;
            align-items: center;
        }

        .nav-right-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav-links a:hover {
            color: #C38903;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-controls {
            display: none;
            position: absolute;
            right: 15px;
            align-items: center;
            gap: 15px;
        }

        .mobile-color-switcher {
            display: flex;
            gap: 8px;
        }

        .mobile-color-switcher .theme-button {
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--secondary-color);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section - Full View Optimization */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--primary-color);
            transition: background 0.3s ease;
        }

        /* Image Slider Background */
        .slider-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide:nth-child(1) {
            background: url('assets/images/gallery/img_2.jpg');
        }

        .slide:nth-child(2) {
            background: url('assets/images/gallery/img_4.jpg');
        }

        .slide:nth-child(3) {
            background: url('assets/images/gallery/img_3.jpg');
        }

        .slide:nth-child(4) {
           background: url('assets/images/gallery/img_16.jpg');
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: "100%";
            height: "100%";
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 2rem;
        }

        .slider-nav.next {
            right: 2rem;
        }

        /* Hero Content - Full Width Layout */
        .hero-content {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 5;
            padding: 0 2rem;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: slideInFromTop 1.2s ease-out;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.5s both;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-color);
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            animation: fadeInUp 1s ease-out 1s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInRight 1s ease-out;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: #262626;
            color: #FAFAFA;
            text-align: center;
        }

        .cta-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .cta-section p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .cta-button-secondary {
            background: #FAFAFA;
            color: #262626;
            padding: 1.4rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(250, 250, 250, 0.3);
        }

        .cta-button-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(250, 250, 250, 0.4);
        }

        /* Footer Styles */
        .w3l-footer {
            background: #1a1a1a;
            color: #FAFAFA;
            padding: 4rem 5px 2rem 5px;
            width: 100%;
            margin: 0;
        }

        /*


        .w3l-footer .container {
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
            margin: 0;
        }

        */

        .footer-border {
            border-bottom: 1px solid #333;
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }

        .w3l-footer h1 a {
            text-decoration: none;
        }

        .w3l-footer h3 {
            color: #FAFAFA;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-gd-16 {
            list-style: none;
            padding: 0;
        }

        .footer-gd-16 li {
            margin-bottom: 0.8rem;
        }

        .footer-gd-16 a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-gd-16 a:hover {
            color: #C38903;
        }

        .contact {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .contact li {
            margin-bottom: 1rem;
        }

        .contact a {
            color: #FAFAFA;
            text-decoration: none;
        }

        .social {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #C38903;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .below-section {
            text-align: center;
            color: #999;
        }

        .below-section a {
            color: #C38903;
            text-decoration: none;
        }

        /* Move to Top Button */
        #movetop {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #C38903;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        #movetop:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Large Screen Optimizations */
        @media (min-width: 1400px) {
            .hero-content {
                max-width: 1600px;
                gap: 6rem;
            }

            .hero-title {
                font-size: 5rem;
            }

            .hero-subtitle {
                font-size: 1.6rem;
            }

            .features-container {
                max-width: 1600px;
            }

            .section-title {
                font-size: 4rem;
            }
        }

        @media (min-width: 1920px) {
            .hero-content {
                max-width: 1800px;
                gap: 8rem;
            }

            .hero-title {
                font-size: 6rem;
            }

            .features-container {
                max-width: 1800px;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .color-switcher {
                display: none;
            }

            .mobile-controls {
                display: flex;
            }

            .nav-right-section {
                flex-direction: column;
                gap: 1rem;
            }

            .join-us-btn {
                margin-left: 0;
                margin-top: 1rem;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-color);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                gap: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                margin-right: 0;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .menu-toggle {
                display: flex;
            }

            .logo {
                width: 200px;
                margin-left: 10px;
            }

        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }