     /* ============================================
           ROOT VARIABLES & RESET
        ============================================ */
        :root {
            --primary: #F5A623;
            --primary-dark: #D4891C;
            --secondary: #1A1A2E;
            --dark: #0F0F1A;
            --dark-light: #16213E;
            --accent: #E94560;
            --gray: #8892B0;
            --light: #CCD6F6;
            --white: #E6F1FF;
            --gradient-gold: linear-gradient(135deg, #F5A623 0%, #F7C948 50%, #D4891C 100%);
            --gradient-dark: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #16213E 100%);
            --shadow-gold: 0 10px 40px rgba(245, 166, 35, 0.3);
            --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        ::selection {
            background: var(--primary);
            color: var(--dark);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* ============================================
           PRELOADER
        ============================================ */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-inner {
            text-align: center;
        }

        .preloader-icon {
            width: 80px;
            height: 80px;
            position: relative;
            margin: 0 auto 20px;
        }

        .preloader-icon .crane {
            font-size: 40px;
            color: var(--primary);
            animation: craneSwing 1.5s ease-in-out infinite;
        }

        @keyframes craneSwing {
            0%, 100% { transform: rotate(-10deg); }
            50% { transform: rotate(10deg); }
        }

        .preloader-bar {
            width: 200px;
            height: 3px;
            background: rgba(245, 166, 35, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }

        .preloader-bar::after {
            content: '';
            display: block;
            width: 50%;
            height: 100%;
            background: var(--gradient-gold);
            border-radius: 10px;
            animation: preload 1.5s ease-in-out infinite;
        }

        @keyframes preload {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(300%); }
        }

        .preloader-text {
            margin-top: 15px;
            font-size: 14px;
            color: var(--gray);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* ============================================
           CURSOR (Desktop Only)
        ============================================ */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: transform 0.1s ease;
        }

        .cursor-ring {
            width: 35px;
            height: 35px;
            border: 2px solid rgba(245, 166, 35, 0.5);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99997;
            transition: all 0.15s ease;
        }

        .cursor-ring.hover {
            transform: scale(1.5);
            border-color: var(--primary);
            background: rgba(245, 166, 35, 0.1);
        }

        @media (max-width: 768px) {
            .cursor-dot, .cursor-ring { display: none; }
        }

        /* ============================================
           NAVBAR
        ============================================ */
        .navbar {
            padding: 20px 0;
            transition: var(--transition);
            z-index: 1000;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(15, 15, 26, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 900;
            color: red !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand .brand-icon {
            width: 55px;
            height: 55px;
            background: var(--white);
            border-radius: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 20px;
            transform: rotate(-5deg);
            transition: var(--transition);
        }

        .navbar-brand:hover .brand-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .navbar-brand span {
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            font-size: 15px;
            margin: 0 8px;
            position: relative;
            padding: 8px 16px !important;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 70%;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .nav-cta {
            background: var(--gradient-gold);
            color: var(--dark) !important;
            border-radius: 50px;
            padding: 10px 28px !important;
            font-weight: 600;
            margin-left: 15px;
            transition: var(--transition);
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
            color: var(--dark) !important;
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .hamburger {
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 8px; width: 70%; }
        .hamburger span:nth-child(3) { top: 16px; }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
            width: 100%;
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            /* background: url('asset/img/construction.jpg') center/cover no-repeat; */
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 80%, rgba(22, 33, 62, 0.5) 0%, transparent 50%);
            z-index: 1;
        }

        /* Animated Grid Background */
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(245, 166, 35, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 166, 35, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating Geometric Shapes */
        .geo-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .geo-shape:nth-child(1) {
            top: 15%;
            right: 10%;
            width: 100px;
            height: 100px;
            border: 3px solid var(--primary);
            animation-delay: 0s;
            transform: rotate(45deg);
        }

        .geo-shape:nth-child(2) {
            bottom: 20%;
            right: 25%;
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            animation-delay: 2s;
        }

        .geo-shape:nth-child(3) {
            top: 40%;
            right: 5%;
            width: 0;
            height: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 70px solid var(--primary);
            animation-delay: 4s;
        }

        .geo-shape:nth-child(4) {
            bottom: 30%;
            left: 5%;
            width: 80px;
            height: 80px;
            border: 3px solid var(--accent);
            border-radius: 20px;
            transform: rotate(30deg);
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(5deg); }
            66% { transform: translateY(10px) rotate(-3deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(245, 166, 35, 0.1);
            border: 1px solid rgba(245, 166, 35, 0.3);
            border-radius: 50px;
            padding: 8px 24px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(42px, 6vw, 80px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--white);
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-title .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-title .line {
            display: block;
        }

        .hero-description {
            font-size: 18px;
            color: #023ae1;
            max-width: 550px;
            line-height: 1.8;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .btn-primary-custom {
            background: var(--gradient-gold);
            color: var(--dark);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom::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: 0.5s;
        }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            color: var(--dark);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.2);
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .btn-outline-custom .play-icon {
            width: 35px;
            height: 35px;
            background: rgba(245, 166, 35, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--primary);
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            animation: fadeInUp 1s ease 0.8s forwards;
            opacity: 0;
        }

        .hero-stat {
            position: relative;
        }

        .hero-stat::after {
            content: '';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.1);
        }

        .hero-stat:last-child::after {
            display: none;
        }

        .hero-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 900;
            color: #020c04;
        }

        .hero-stat-label {
            font-size: 13px;
            color: #041444;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hero Right - Image/Visual */
        .hero-visual {
            position: relative;
            z-index: 2;
            animation: fadeInRight 1s ease 0.5s forwards;
            opacity: 0;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .hero-image-main {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-dark);
        }

        .hero-image-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A623' stroke-width='0.5' opacity='0.2'%3E%3Crect x='50' y='200' width='80' height='150'/%3E%3Crect x='150' y='150' width='100' height='200'/%3E%3Crect x='270' y='100' width='80' height='250'/%3E%3Cline x1='0' y1='350' x2='400' y2='350'/%3E%3Cpolygon points='190,50 210,50 200,20'/%3E%3Cline x1='200' y1='50' x2='200' y2='150'/%3E%3Cline x1='150' y1='50' x2='250' y2='50'/%3E%3C/g%3E%3C/svg%3E") center/cover;
            opacity: 0.5;
        }

        .hero-image-main .building-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 120px;
            color: rgba(245, 166, 35, 0.15);
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 166, 35, 0.2);
            border-radius: 16px;
            padding: 20px;
            animation: floatCard 3s ease-in-out infinite;
        }

        .hero-floating-card.card-1 {
            top: 20px;
            left: -40px;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            bottom: 40px;
            right: -30px;
            animation-delay: 1.5s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .floating-card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
        }

        .floating-card-subtitle {
            font-size: 12px;
            color: var(--gray);
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ============================================
           SECTION COMMON STYLES
        ============================================ */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .section-subtitle::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--gradient-gold);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.2;
        }

        .section-title .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-size: 16px;
            color: var(--gray);
            max-width: 600px;
            line-height: 1.8;
            margin-top: 15px;
        }

        /* Scroll Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================
           ABOUT SECTION
        ============================================ */
        .about {
            background: var(--dark);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: radial-gradient(ellipse at right, rgba(245, 166, 35, 0.03) 0%, transparent 70%);
        }

        .about-image {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #16213e, #1a1a2e);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .about-img-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A623' stroke-width='0.5' opacity='0.15'%3E%3Ccircle cx='150' cy='150' r='100'/%3E%3Ccircle cx='150' cy='150' r='70'/%3E%3Ccircle cx='150' cy='150' r='40'/%3E%3Cline x1='50' y1='150' x2='250' y2='150'/%3E%3Cline x1='150' y1='50' x2='150' y2='250'/%3E%3C/g%3E%3C/svg%3E") center/cover;
        }

        .about-img-main .icon-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            color: rgba(245, 166, 35, 0.12);
        }

        .about-experience-badge {
            position: absolute;
            bottom: -100px;
            right: -20px;
            width: 140px;
            height: 140px;
            background: var(--gradient-gold);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            box-shadow: var(--shadow-gold);
            animation: floatCard 3s ease-in-out infinite;
        }

        .about-experience-badge .number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
        }

        .about-experience-badge .text {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(245, 166, 35, 0.05);
            border: 1px solid rgba(245, 166, 35, 0.1);
            border-radius: 12px;
            transition: var(--transition);
        }

        .about-feature:hover {
            background: rgba(245, 166, 35, 0.1);
            transform: translateX(5px);
        }

        .about-feature i {
            color: var(--primary);
            font-size: 20px;
        }

        .about-feature span {
            font-size: 14px;
            font-weight: 500;
            color: var(--light);
        }

        /* ============================================
           SERVICES SECTION
        ============================================ */
        .services {
            background: var(--secondary);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
        }

        .service-card {
            background: rgba(15, 15, 26, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(245, 166, 35, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .service-card-bg-number {
            position: absolute;
            top: -10px;
            right: 10px;
            font-family: 'Playfair Display', serif;
            font-size: 120px;
            font-weight: 900;
            color: rgba(245, 166, 35, 0.03);
            line-height: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--gradient-gold);
            color: var(--dark);
            transform: rotate(-5deg) scale(1.1);
        }

        .service-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            gap: 15px;
            color: var(--primary);
        }

        /* ============================================
           PROJECTS SECTION
        ============================================ */
        .projects {
            background: #e3e2d1;
        }

        .section-title-projects {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 900;
            color: #1a59a9;
            line-height: 1.2;
        }

        .section-title-projects .highlight-projects {
            background: #eb3030;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .project-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 25px;
            border: 1px solid rgba(255,255,255,0.1);
            background: transparent;
            color: var(--gray);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--gradient-gold);
            color: var(--dark);
            border-color: transparent;
        }

        .project-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 500px;
            cursor: pointer;
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-card-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #16213e, #1a1a2e);
            position: relative;
        }

        .project-card-bg .project-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            color: rgba(245, 166, 35, 0.1);
            transition: var(--transition);
        }

        .project-card:hover .project-icon {
            transform: translate(-50%, -50%) scale(1.2);
            color: rgba(245, 166, 35, 0.2);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(15, 15, 26, 0.95));
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .project-category {
            font-size: 12px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .project-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .project-title-show {
              font-size: 20px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .project-description {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        .project-card-always-visible {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: var(--primary);
        }

        .project-card:hover .project-card-always-visible {
              position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: var(--primary);
        }

        .project-card-always-visible .project-title {
            font-size: 18px;
            margin-bottom: 0;
        }

        /* ============================================
           STATS / COUNTER SECTION
        ============================================ */
        .stats {
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(233, 69, 96, 0.03) 0%, transparent 50%);
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.1);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--primary);
            transition: var(--transition);
        }

        .stat-item:hover .stat-icon {
            background: var(--gradient-gold);
            color: var(--dark);
            transform: scale(1.1);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-number .suffix {
            color: var(--primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ============================================
           TEAM SECTION
        ============================================ */
        .team {
            background: var(--dark);
        }

        .team-card {
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16213e, #1a1a2e);
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(245, 166, 35, 0.2);
            transition: var(--transition);
        }

        .team-card:hover .team-image {
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
        }

        .team-image .team-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            color: rgba(245, 166, 35, 0.2);
        }

        .team-social {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            display: flex;
            gap: 8px;
            opacity: 0;
            transition: var(--transition);
        }

        .team-card:hover .team-social {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition);
        }

        .team-social a:hover {
            transform: scale(1.2);
        }

        .team-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 5px;
        }

        .team-role {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }

        /* ============================================
           TESTIMONIALS SECTION
        ============================================ */
        .testimonials {
            background: var(--secondary);
            position: relative;
        }

        .testimonial-card {
            background: rgba(15, 15, 26, 0.5);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 40px;
            margin: 15px;
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            border-color: rgba(245, 166, 35, 0.2);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            font-size: 40px;
            color: var(--primary);
            opacity: 0.3;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--light);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 25px;
        }

        .testimonial-stars {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 14px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 200px;
            height: 150px;
            /* border-radius: 50%; */
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-author-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
        }

        .testimonial-author-role {
            font-size: 13px;
            color: var(--gray);
        }

        /* ============================================
           CLIENTS / PARTNERS
        ============================================ */
        .clients {
            background: var(--dark);
            padding: 60px 0;
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /* opacity: 0.4; */
            transition: var(--transition);
            font-size: 24px;
            font-weight: 700;
            color: var(--gray);
            letter-spacing: 2px;
        }

        .client-logo:hover {
            opacity: 1;
            color: var(--primary);
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact {
            background: var(--secondary);
            position: relative;
        }

        .contact-info-card {
            background: rgba(15, 15, 26, 0.5);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .contact-info-card:hover {
            border-color: rgba(245, 166, 35, 0.2);
            transform: translateX(5px);
        }

        .contact-info-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            transition: var(--transition);
        }

        .contact-info-card:hover .contact-info-icon {
            background: var(--gradient-gold);
            color: var(--dark);
        }

        .contact-info-title {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 5px;
        }

        .contact-info-text {
            font-size: 16px;
            color: var(--white);
            font-weight: 500;
        }

        .contact-form {
            background: rgba(15, 15, 26, 0.5);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 40px;
        }

        .form-floating > .form-control,
        .form-floating > .form-select {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: var(--white);
            height: 60px;
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .form-floating > textarea.form-control {
            height: 120px;
        }

        .form-floating > label {
            color: var(--gray);
        }

        .form-floating > .form-control:focus {
            background: rgba(245, 166, 35, 0.05);
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.1);
            color: var(--white);
        }

        .form-floating > .form-control:focus ~ label {
            color: var(--primary);
        }

        .btn-submit {
            background: var(--gradient-gold);
            color: var(--dark);
            border: none;
            padding: 16px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            width: 100%;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            color: var(--dark);
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--dark);
            padding: 80px 0 0;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gradient-gold);
            color: var(--dark);
            border-color: transparent;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient-gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a::before {
            content: '';
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-links a:hover::before {
            width: 15px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-contact-item i {
            color: var(--primary);
            margin-top: 3px;
            min-width: 16px;
        }

        .footer-contact-item span {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 25px 0;
            margin-top: 60px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

        /* ============================================
           BACK TO TOP BUTTON
        ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            border: none;
            box-shadow: var(--shadow-gold);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(15, 15, 26, 0.98);
                backdrop-filter: blur(20px);
                border-radius: 16px;
                padding: 20px;
                margin-top: 15px;
                border: 1px solid rgba(255,255,255,0.05);
            }

            .nav-cta {
                margin-left: 0;
                margin-top: 10px;
                display: inline-block;
            }

            .hero-visual {
                margin-top: 50px;
            }

            .hero-stats {
                gap: 30px;
            }

            .hero-stat::after {
                right: -15px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .stat-item::after {
                display: none;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 70px 0;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .hero-stat::after {
                display: none;
            }

            .hero-floating-card {
                display: none;
            }

            .hero-image-main {
                height: 300px;
            }

            .about-experience-badge {
                width: 100px;
                height: 100px;
                bottom: -10px;
                right: -10px;
            }

            .about-experience-badge .number {
                font-size: 32px;
            }

            .project-card {
                height: 280px;
            }

            .contact-form {
                padding: 25px;
            }

            .testimonial-card {
                padding: 25px;
                margin: 10px;
            }
        }

        /* ============================================
           PARTICLE CANVAS
        ============================================ */
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* ============================================
           MARQUEE ANIMATION
        ============================================ */
        .marquee-wrapper {
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-flex;
            animation: marquee 30s linear infinite;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 0 40px;
            font-size: 20px;
            font-weight: 700;
            color: rgba(255,255,255,0.08);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .marquee-item .dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
        }