        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #333;
            overflow-x: hidden;
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(201, 162, 39, 0.2);
            z-index: 9999;
            transform-origin: left;
        }

        .scroll-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #c9a227, #f4d03f);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.1s;
        }

        /* Animated Background */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #c9a227;
            border-radius: 50%;
            opacity: 0.3;
            animation: particleFloat linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.3;
            }

            90% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .gradient-orb {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        .orb1 {
            background: radial-gradient(circle, #c9a227, transparent);
            top: -250px;
            right: -250px;
        }

        .orb2 {
            background: radial-gradient(circle, #f4d03f, transparent);
            bottom: -250px;
            left: -250px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(201, 162, 39, 0.1);
            z-index: 1000;
            padding: 1rem 0;
        }

        .containerss {

            margin: 0 auto;
            padding: 0 2rem;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
            margin-left: 437px;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav a {
            color: #FFFFFF;
            text-decoration: none;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
            position: relative;
        }

        .main-nav a::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 25px;
            right: 25px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, #C5A028);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-nav a:hover {
            color: #D4AF37;
            background: rgba(212, 175, 55, 0.05);
        }

        .main-nav a:hover::before {
            transform: scaleX(1);
        }

        .arrow {
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: -2px;
        }

        .main-nav li:hover .arrow {
            transform: rotate(45deg) translateY(3px);
        }

        .dropdown {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: #1a1a1a;
            min-width: 260px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 30px;
            width: 12px;
            height: 12px;
            background: #1a1a1a;
            transform: rotate(45deg);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .main-nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 16px 24px;
            color: #E5E5E5;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 3px solid transparent;
            font-size: 14px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-item:hover {
            background: rgba(212, 175, 55, 0.05);
            border-left-color: #D4AF37;
            color: #D4AF37;
            padding-left: 30px;
        }

        .dropdown-item:hover::before {
            width: 100%;
        }

        .dropdown-item::after {
            content: '→';
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-left: auto;
        }

        .dropdown-item:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-nav li:hover .dropdown .dropdown-item {
            animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .main-nav li:hover .dropdown .dropdown-item:nth-child(1) {
            animation-delay: 0.05s;
        }

        .main-nav li:hover .dropdown .dropdown-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .main-nav li:hover .dropdown .dropdown-item:nth-child(3) {
            animation-delay: 0.15s;
        }

        .main-nav li:hover .dropdown .dropdown-item:nth-child(4) {
            animation-delay: 0.2s;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
            animation: rotateBackground 30s linear infinite;
        }

        @keyframes rotateBackground {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c9a227, #f4d03f);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 15s;
        }

        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4af37, #ffd700);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
            animation-duration: 18s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #c9a227, #e6c84d);
            border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
            top: 70%;
            left: 20%;
            animation-delay: 4s;
            animation-duration: 20s;
        }

        .shape:nth-child(4) {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #b8941f, #d4af37);
            border-radius: 50%;
            top: 30%;
            left: 85%;
            animation-delay: 1s;
            animation-duration: 16s;
        }

        .shape:nth-child(5) {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #f4d03f, #c9a227);
            border-radius: 30%;
            top: 15%;
            left: 60%;
            animation-delay: 3s;
            animation-duration: 22s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }

            25% {
                transform: translateY(-30px) translateX(30px) rotate(90deg);
            }

            50% {
                transform: translateY(-60px) translateX(-30px) rotate(180deg);
            }

            75% {
                transform: translateY(-30px) translateX(-60px) rotate(270deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1162px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #2C3E50;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
        }

        .gradient-text {
            background: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #d4af37 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            position: relative;
            display: inline-block;
        }

        .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #c9a227, #f4d03f, transparent);
            border-radius: 2px;
            animation: underlineGlow 2s ease infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% center;
            }

            50% {
                background-position: 100% center;
            }
        }

        @keyframes underlineGlow {

            0%,
            100% {
                opacity: 0.5;
                transform: scaleX(0.8);
            }

            50% {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: #5A6C7D;
            margin-bottom: 3rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.2s backwards;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4),
                0 0 0 0 rgba(201, 162, 39, 0.5);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button::after {
            content: '→';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: right 0.3s ease;
            font-size: 1.3rem;
        }

        .cta-button:hover::after {
            right: 15px;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(201, 162, 39, 0.5),
                0 0 0 8px rgba(201, 162, 39, 0.1);
        }

        .cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c9a227, #f4d03f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #5A6C7D;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid #c9a227;
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 10px;
            background: #c9a227;
            border-radius: 3px;
            animation: scrollDot 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);
            }
        }

        @keyframes scrollDot {
            0% {
                top: 10px;
                opacity: 1;
            }

            100% {
                top: 30px;
                opacity: 0;
            }
        }

        /* Services Section */
        .section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 2rem;
            position: relative;
            z-index: 1;
        }

        h2 {
            text-align: center;
            font-size: 3rem;
            background: linear-gradient(135deg, #c9a227, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 60px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px;
            max-width: 1000px;
            margin: auto;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            opacity: 1;
            transform: translateY(0);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
            border-color: #c9a227;
        }

        .service-icono {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #c9a227, #f4d03f);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .service-card:hover .service-icono {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icono svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #636e72;
            line-height: 1.6;
        }

        /* Portfolio Section */
        .portfolio-gride {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .portfolio-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(201, 162, 39, 0.3);
        }

        .portfolio-image {
            height: 240px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, #c9a227, #d4af37, #f4d03f, #e6c84d);
            background-size: 400% 400%;
            animation: gradientMove 8s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .portfolio-image svg {
            max-width: 120px;
            max-height: 120px;
            fill: white;
            opacity: 0.9;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image svg {
            transform: scale(1.1) rotate(5deg);
            opacity: 1;
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-content h3 {
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 15px;
        }

        .portfolio-content p {
            color: #636e72;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .client-tag {
            display: inline-block;
            background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Stats Section */
        .stats-section {
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            margin-left: 291px;
        }

        .footer-section h4 {
            color: #c9a227;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #c9a227;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                transition: left 0.3s;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .main-nav.active {
                left: 0;
            }

            .nav-menu {
                flex-direction: column;
                padding: 2rem;
                gap: 0;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(201, 162, 39, 0.1);
            }

            .nav-link {
                display: block;
                padding: 1rem 0;
            }

            .sub-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 1rem;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s;
            }

            .has-dropdown.active .sub-menu {
                max-height: 300px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            h2 {
                font-size: 2rem;
            }

            .portfolio-gride {
                grid-template-columns: 1fr;
            }
        }