 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-yellow: #FFD700;
     --secondary-yellow: #FFC700;
     --accent-yellow: #FFEB3B;
     --dark-bg: #000000;
     --light-bg: #0A0A0A;
     --card-bg: #1A1A1A;
     --text-white: #FFFFFF;
     --text-gray: #E5E5E5;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     background: var(--dark-bg);
     color: var(--text-white);
     overflow-x: hidden;
     cursor: none;
 }

 /* Advanced Custom Cursor - Premium Luxury Ring */
 #custom-cursor {
     position: fixed;
     width: 28px;
     height: 28px;
     border: 2px solid var(--primary-yellow);
     border-radius: 50%;
     pointer-events: none;
     z-index: 10000;
     transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
     display: flex;
     align-items: center;
     justify-content: center;
     background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
     box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 0 10px rgba(255, 215, 0, 0.2);
 }

 #cursor-dot {
     position: absolute;
     width: 0;
     height: 0;
     background: transparent;
     transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
 }

 /* Cursor Star Inner Element */
 #cursor-star {
     position: absolute;
     width: 12px;
     height: 12px;
     clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
     background: var(--primary-yellow);
     animation: rotateStar 3s linear infinite;
     box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
 }

 @keyframes rotateStar {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 #cursor-text {
     position: absolute;
     font-size: 8px;
     font-weight: 600;
     color: var(--text-white);
     opacity: 0;
     transition: opacity 0.2s ease;
     pointer-events: none;
 }

 #cursor-trail {
     position: fixed;
     pointer-events: none;
     z-index: 9999;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .cursor-spikes {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .cursor-spike {
     position: absolute;
     width: 2px;
     height: 8px;
     background: var(--primary-yellow);
     top: 50%;
     left: 50%;
     transform-origin: center;
 }

 /* Cursor States */
 .cursor-hover-button #custom-cursor {
     width: 40px;
     height: 40px;
     box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4);
     background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
     clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
     border-radius: 0;
 }

 .cursor-hover-button #cursor-star {
     animation: rotateStar 1.5s linear infinite;
     width: 16px;
     height: 16px;
 }

 .cursor-hover-button #cursor-text {
     opacity: 1;
 }

 .cursor-hover-button .cursor-spikes {
     opacity: 1;
     animation: rotateCursorSpikes 2s linear infinite;
 }

 @keyframes rotateCursorSpikes {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .cursor-hover-link #custom-cursor {
     width: 32px;
     height: 32px;
     border: 2px solid var(--primary-yellow);
     box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
 }

 .cursor-hover-link #cursor-star {
     clip-path: none;
     width: 12px;
     height: 12px;
     background: none;
     border: 2px solid var(--primary-yellow);
     border-radius: 50%;
     animation: none;
 }

 .cursor-hover-link #cursor-star::before,
 .cursor-hover-link #cursor-star::after {
     content: '';
     position: absolute;
     background: var(--primary-yellow);
 }

 .cursor-hover-link #cursor-star::before {
     width: 2px;
     height: 8px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .cursor-hover-link #cursor-star::after {
     width: 8px;
     height: 2px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .cursor-hover-link #cursor-dot {
     width: 5px;
     height: 5px;
 }

 .cursor-hover-explore #custom-cursor {
     width: 36px;
     height: 36px;
     border-width: 3px;
     clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
     border-radius: 0;
     animation: morphShape 2s ease-in-out infinite;
 }

 @keyframes morphShape {

     0%,
     100% {
         clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
     }

     50% {
         clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
     }
 }

 .cursor-hover-explore #cursor-dot {
     width: 6px;
     height: 6px;
 }

 .cursor-clicking #custom-cursor {
     transform: scale(0.8);
 }

 .cursor-clicking #cursor-dot {
     transform: scale(2);
 }

 /* Enhanced Cinematic Loading Screen */
 #loading-screen {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: radial-gradient(circle at center, #0A0A0A 0%, #000000 100%);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 #loading-screen::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
     animation: loadingPulse 3s ease-in-out infinite;
 }

 @keyframes loadingPulse {

     0%,
     100% {
         opacity: 0.3;
         transform: scale(1);
     }

     50% {
         opacity: 0.6;
         transform: scale(1.2);
     }
 }

 #loading-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 #loading-content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 #loading-logo {
     width: 180px;
     height: 180px;
     margin: 0 auto;
     opacity: 0;
     filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
 }

 #loading-progress {
     position: absolute;
     bottom: 60px;
     left: 50%;
     transform: translateX(-50%);
     width: 300px;
     text-align: center;
 }

 #loading-bar {
     width: 100%;
     height: 3px;
     background: rgba(255, 215, 0, 0.2);
     border-radius: 10px;
     overflow: hidden;
     margin-bottom: 15px;
     box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
 }

 #loading-bar-fill {
     height: 100%;
     width: 0%;
     background: linear-gradient(90deg, #FFD700, #FFC700, #FFEB3B);
     border-radius: 10px;
     box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
     transition: width 0.3s ease;
 }

 #loading-percentage {
     color: var(--primary-yellow);
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 2px;
     text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
 }

 #loading-text {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     color: var(--primary-yellow);
     font-size: 18px;
     font-weight: 600;
     letter-spacing: 3px;
     opacity: 0;
     animation: fadeInOut 2s ease-in-out infinite;
 }

 @keyframes fadeInOut {

     0%,
     100% {
         opacity: 0.3;
     }

     50% {
         opacity: 1;
     }
 }

 #skip-btn {
     position: absolute;
     top: 30px;
     right: 30px;
     background: rgba(255, 215, 0, 0.1);
     color: var(--primary-yellow);
     border: 2px solid var(--primary-yellow);
     padding: 12px 24px;
     border-radius: 30px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 3;
     backdrop-filter: blur(10px);
     box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
 }

 #skip-btn:hover {
     background: var(--primary-yellow);
     color: var(--dark-bg);
     transform: translateY(-2px);
     box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6);
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 20px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: all 0.3s ease;
 }

 nav.scrolled {
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(10px);
     padding: 15px 60px;
     box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
 }

 .nav-logo {
     width: 50px;
     height: 50px;
     transition: transform 0.3s ease;
     filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
 }

 .nav-logo:hover {
     transform: scale(1.15) rotate(10deg);
     filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
 }

 .nav-links {
     display: flex;
     gap: 40px;
     list-style: none;
 }

 .nav-links a {
     color: var(--text-white);
     text-decoration: none;
     font-size: 15px;
     font-weight: 500;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--primary-yellow);
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--primary-yellow);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .cta-btn {
     background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
     color: var(--dark-bg);
     padding: 12px 28px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 14px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
     position: relative;
     overflow: hidden;
 }

 .cta-btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
 }

 .cta-btn:hover::before {
     width: 300px;
     height: 300px;
 }

 .cta-btn:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 5px 40px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
 }

 /* Hamburger Menu */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 6px;
     cursor: pointer;
 }

 .hamburger span {
     width: 30px;
     height: 3px;
     background: var(--primary-yellow);
     transition: all 0.3s ease;
 }

 /* Hero Section */
 #hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     padding: 100px 60px 60px;
 }

 #hero-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     max-width: 1200px;
 }

 .hero-title {
     font-size: 80px;
     font-weight: 900;
     line-height: 1.2;
     margin-bottom: 30px;
     opacity: 0;
     font-family: 'Playfair Display', serif;
     letter-spacing: 2px;
     text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
 }

 .hero-title span {
     display: inline-block;
 }

 .hero-tagline {
     font-size: 32px;
     color: var(--primary-yellow);
     font-weight: 600;
     margin-bottom: 40px;
     opacity: 0;
     letter-spacing: 1px;
     text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
 }

 .hero-description {
     max-width: 900px;
     margin: 0 auto;
     opacity: 0;
 }

 .hero-description p {
     font-size: 18px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.8;
     margin-bottom: 15px;
     opacity: 0;
     transform: translateY(30px);
 }

 .hero-cta {
     margin-top: 50px;
     opacity: 0;
 }

 .hero-cta .cta-btn {
     padding: 18px 40px;
     font-size: 16px;
     animation: float 3s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 /* Hero Logo Styles */
 .hero-logo-container {
     position: relative;
 }

 .hero-logo {
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .hero-logo:hover {
     filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1));
     transform: scale(1.1);
 }

 .scroll-indicator {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     opacity: 0;
     animation: bounce 2s ease-in-out infinite;
 }

 .scroll-arrow {
     font-size: 32px;
     color: var(--primary-yellow);
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     50% {
         transform: translateX(-50%) translateY(-15px);
     }
 }

 /* Services Section */
 #services {
     margin-top: -700px;
     padding: 60px 60px 40px;
     position: relative;
     overflow: hidden;
 }

 #service-canvas {
     position: absolute;
     left: 0;
     top: 0;
     width: 50%;
     height: 60%;
     z-index: 1;
 }

 .section-title {
     font-size: 64px;
     font-weight: 800;
     text-align: center;
     margin-bottom: 1px;
     position: relative;
     z-index: 2;
     font-family: 'Playfair Display', serif;
     letter-spacing: 2px;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
     margin: 20px auto 0;
     box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
 }

 .section-title span {
     color: var(--primary-yellow);
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     position: relative;
     z-index: 2;
     max-width: 1400px;
     margin: 0 auto;
 }

 .service-detail {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     margin-bottom: 120px;
     min-height: 80vh;
     align-items: center;
     opacity: 0;
     transform: translateY(50px);
 }

 .service-detail.visible {
     opacity: 1;
     transform: translateY(0);
     transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .service-visual {
     position: relative;
     height: 600px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
     border: 1px solid rgba(255, 215, 0, 0.2);
 }

 .service-visual canvas {
     width: 100%;
     height: 100%;
 }

 .service-content {
     padding: 40px;
 }

 .service-name {
     font-size: 18px;
     color: var(--primary-yellow);
     font-weight: 600;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
 }

 .service-name::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     width: 100%;
     height: 2px;
     background: var(--primary-yellow);
     animation: expandLine 1s ease-out;
 }

 @keyframes expandLine {
     from {
         width: 0;
     }

     to {
         width: 100%;
     }
 }

 .service-headline {
     font-size: 44px;
     font-weight: 700;
     line-height: 1.3;
     margin-bottom: 25px;
     color: var(--text-white);
     font-family: 'Playfair Display', serif;
     letter-spacing: 1px;
 }

 .service-description {
     font-size: 18px;
     line-height: 1.8;
     color: var(--text-gray);
     margin-bottom: 40px;
     text-align: justify;
 }

 .service-subcategories {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 40px;
 }

 .subcategory-card {
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
     border-left: 4px solid var(--primary-yellow);
     padding: 20px;
     border-radius: 12px;
     transition: all 0.3s ease;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(10px);
 }

 .subcategory-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .subcategory-card:hover {
     transform: translateX(10px) scale(1.02);
     box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
     background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
     border-left-width: 6px;
 }

 .subcategory-card:hover::before {
     opacity: 1;
 }

 .subcategory-icon {
     font-size: 32px;
     margin-bottom: 12px;
 }

 .subcategory-card h4 {
     font-size: 16px;
     font-weight: 600;
     color: var(--primary-yellow);
     margin-bottom: 8px;
 }

 .subcategory-card p {
     font-size: 14px;
     color: var(--text-gray);
     line-height: 1.6;
     text-align: justify;
 }

 .service-stats {
     display: flex;
     gap: 30px;
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .stat-item {
     font-size: 14px;
     color: var(--text-gray);
 }

 .stat-number {
     font-size: 20px;
     font-weight: 700;
     color: var(--primary-yellow);
     display: block;
     margin-bottom: 5px;
 }

 .service-tagline {
     font-size: 20px;
     font-style: italic;
     color: var(--primary-yellow);
     margin-top: 30px;
     animation: pulse 2s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.7;
     }
 }

 /* Clients Section */
 #clients {
     min-height: 100vh;
     padding: 100px 60px;
     position: relative;
     overflow: hidden;
 }

 #clients-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .client-logo-circle img {
     border-radius: 50%;
     object-fit: cover;
 }

 .clients-content {
     position: relative;
     z-index: 2;
 }

 .client-logos-orbit {
     position: relative;
     height: 600px;
     margin: 80px auto;
     max-width: 1000px;
 }

 .client-logo {
     position: absolute;
     width: 100px;
     height: 100px;
     background: rgba(26, 26, 26, 0.9);
     border: 2px solid rgba(255, 215, 0, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-gray);
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
     filter: grayscale(100%);
 }

 .client-logo::before {
     content: attr(data-name);
 }

 .client-logo:hover {
     filter: grayscale(0%);
     transform: scale(1.8) translateZ(300px);
     border-color: var(--primary-yellow);
     box-shadow: 0 0 40px rgba(255, 215, 0, 0.6),
         0 0 80px rgba(255, 215, 0, 0.4);
     z-index: 100;
     background: rgba(255, 215, 0, 0.1);
     color: var(--primary-yellow);
 }

 .client-logo:not(:hover) {
     opacity: 1;
 }

 .client-logos-orbit:hover .client-logo:not(:hover) {
     opacity: 0.1;
 }

 .client-detail-card {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0.8);
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(20px);
     border: 2px solid var(--primary-yellow);
     border-radius: 20px;
     padding: 40px;
     max-width: 500px;
     width: 90%;
     opacity: 0;
     pointer-events: none;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     z-index: 1000;
 }

 .client-detail-card.show {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
     pointer-events: auto;
 }

 .client-detail-card h3 {
     font-size: 32px;
     color: var(--primary-yellow);
     margin-bottom: 20px;
 }

 .client-detail-card .achievement {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .client-detail-card .metrics {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
     margin-bottom: 20px;
 }

 .client-detail-card .metric {
     background: rgba(255, 215, 0, 0.1);
     padding: 15px;
     border-radius: 8px;
     border-left: 3px solid var(--primary-yellow);
 }

 .client-detail-card .metric-label {
     font-size: 12px;
     color: var(--text-gray);
     margin-bottom: 5px;
 }

 .client-detail-card .metric-value {
     font-size: 20px;
     font-weight: 700;
     color: var(--primary-yellow);
 }

 .client-detail-card .badge {
     display: inline-block;
     background: var(--primary-yellow);
     color: var(--dark-bg);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     margin-top: 15px;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-top: 60px;
     max-width: 1200px;
     margin-left: auto;
     margin-right: auto;
 }

 .stat-card {
     background: rgba(26, 26, 26, 0.8);
     backdrop-filter: blur(10px);
     padding: 40px;
     border-radius: 20px;
     text-align: center;
     border: 1px solid rgba(255, 215, 0, 0.2);
     transition: all 0.3s ease;
 }

 .stat-card:hover {
     border-color: var(--primary-yellow);
     transform: translateY(-5px);
 }

 .stat-icon {
     font-size: 48px;
     margin-bottom: 20px;
 }

 .stat-value {
     font-size: 48px;
     font-weight: 800;
     color: var(--primary-yellow);
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 16px;
     color: var(--text-gray);
 }

 /* Testimonials Section */
 #testimonials {
     min-height: 100vh;
     padding: 100px 60px;
     position: relative;
     overflow: hidden;
 }

 .testimonials-container {
     max-width: 900px;
     margin: 0 auto;
     position: relative;
     height: 500px;
     margin: 100px auto 0 auto;
     perspective: 1000px;
 }

 .testimonial-card {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     background: rgba(26, 26, 26, 0.9);
     backdrop-filter: blur(10px);
     padding: 60px;
     border-radius: 20px;
     border: 2px solid var(--primary-yellow);
     transition: all 0.6s ease;
     cursor: pointer;
 }

 .testimonial-quote {
     font-size: 20px;
     line-height: 1.8;
     margin-bottom: 30px;
     color: var(--text-gray);
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .author-info h4 {
     font-size: 18px;
     color: var(--primary-yellow);
     margin-bottom: 5px;
 }

 .author-info p {
     font-size: 14px;
     color: var(--text-gray);
 }

 .rating {
     display: flex;
     gap: 5px;
     margin-top: 10px;
 }

 .rating span {
     color: var(--primary-yellow);
     font-size: 20px;
 }

 .testimonial-nav {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 40px;
 }

 .testimonial-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 215, 0, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .testimonial-dot.active {
     background: var(--primary-yellow);
     transform: scale(1.3);
 }

 /* About Section */
 #about {
     min-height: 100vh;
     padding: 100px 60px;
     position: relative;
     overflow: hidden;
     background: var(--light-bg);
 }

 #about-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .about-content {
     position: relative;
     z-index: 2;
     max-width: 1400px;
     margin: 0 auto;
 }

 .about-text {
     font-size: 24px;
     line-height: 1.8;
     margin-bottom: 60px;
     color: var(--text-gray);
     text-align: center;
 }

 .differentiators-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     margin-top: 60px;
     margin: 100px auto 0 auto;
 }

 .differentiator-card {
     background: rgba(26, 26, 26, 0.8);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 15px;
     border: 1px solid rgba(255, 215, 0, 0.2);
     transition: all 0.3s ease;
 }

 .differentiator-card:hover {
     border-color: var(--primary-yellow);
     transform: translateY(-5px);
 }

 .differentiator-card h4 {
     font-size: 20px;
     color: var(--primary-yellow);
     margin-bottom: 15px;
 }

 .differentiator-card p {
     font-size: 14px;
     color: var(--text-gray);
     line-height: 1.6;
 }

 /* Contact Section */
 #contact {
     min-height: 100vh;
     padding: 100px 60px;
     position: relative;
     overflow: hidden;
 }

 #contact-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .contact-container {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     margin: 80px auto 0 auto;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
 }

 .contact-form {
     background: rgba(26, 26, 26, 0.8);
     backdrop-filter: blur(10px);
     padding: 50px;
     border-radius: 20px;
     border: 2px solid var(--primary-yellow);
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     color: var(--text-gray);
     font-size: 14px;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 15px;
     background: rgba(0, 0, 0, 0.5);
     border: 1px solid rgba(255, 215, 0, 0.3);
     border-radius: 10px;
     color: var(--text-white);
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary-yellow);
     box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     width: 100%;
     padding: 18px;
     background: var(--primary-yellow);
     color: var(--dark-bg);
     border: none;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .info-card {
     background: rgba(26, 26, 26, 0.8);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 15px;
     border: 1px solid rgba(255, 215, 0, 0.2);
     transition: all 0.3s ease;
 }

 .info-card:hover {
     border-color: var(--primary-yellow);
     transform: translateX(10px);
 }

 .info-card h3 {
     font-size: 18px;
     color: var(--primary-yellow);
     margin-bottom: 10px;
 }

 .info-card p {
     font-size: 16px;
     color: var(--text-gray);
 }

 /* Footer */
 footer {
     background: var(--light-bg);
     padding: 80px 60px 40px;
     position: relative;
     overflow: hidden;
 }

 #footer-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .footer-content {
     position: relative;
     z-index: 2;
     max-width: 1400px;
     margin: 0 auto;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-logo {
     width: 80px;
     height: 80px;
     margin-bottom: 20px;
 }

 .footer-tagline {
     font-size: 18px;
     color: var(--text-gray);
     margin-bottom: 30px;
 }

 .footer-section h4 {
     font-size: 18px;
     color: var(--primary-yellow);
     margin-bottom: 20px;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section li {
     margin-bottom: 12px;
 }

 .footer-section a {
     color: var(--text-gray);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section a:hover {
     color: var(--primary-yellow);
 }

 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 20px;
 }

 .social-link {
     width: 40px;
     height: 40px;
     background: rgba(255, 215, 0, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: var(--primary-yellow);
     transform: rotate(360deg);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 40px;
     border-top: 1px solid rgba(255, 215, 0, 0.2);
     color: var(--text-gray);
     font-size: 14px;
 }
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    padding: 0;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: transparent !important;
}

.social-icon:hover {
    transform: scale(1.15);
}
 /* Scroll Progress */
 #scroll-progress {
     position: fixed;
     right: 30px;
     top: 50%;
     transform: translateY(-50%);
     z-index: 1000;
 }

 .progress-line {
     width: 2px;
     height: 200px;
     background: rgba(255, 215, 0, 0.2);
     position: relative;
 }

 .progress-fill {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 0%;
     background: var(--primary-yellow);
     transition: height 0.3s ease;
 }

 .progress-dots {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .progress-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 215, 0, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .progress-dot.active {
     background: var(--primary-yellow);
     transform: scale(1.5);
 }

 .progress-dot:hover {
     background: var(--primary-yellow);
 }

 /* Responsive */
 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         animation-iteration-count: 1 !important;
         transition-duration: 0.01ms !important;
     }
 }

 @media (max-width: 768px) {
     body {
         cursor: auto;
     }

     #custom-cursor,
     #cursor-trail {
         display: none;
     }

     .hero-title {
         font-size: 42px;
         text-align: center;
     }

     .hero-tagline {
         font-size: 20px;
         text-align: center;
     }

     .hero-description {
         text-align: center;
     }

     .hero-description p {
         font-size: 16px;
         text-align: center;
     }

     nav {
         padding: 15px 20px;
     }

     .nav-links {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .service-detail {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .service-visual {
         height: 300px;
     }

     .service-headline {
         font-size: 24px !important;
         line-height: 1.3;
         text-align: center;
         margin-bottom: 20px;
     }

     .service-description {
         font-size: 15px !important;
         line-height: 1.7;
         text-align: justify;
         text-justify: inter-word;
         hyphens: auto;
         margin: 0 auto 30px;
         padding: 0 5px;
         max-width: 100%;
     }

     .service-subcategories {
         grid-template-columns: 1fr;
     }

     .subcategory-card h4 {
         text-align: center;
     }

     .subcategory-card p {
         text-align: center;
     }

    /* Client Carousel - Mobile Optimized */
    .client-white-container {
        padding: 0px 0 !important;
    }

    .client-white-container > div {
        padding: 0 20px !important;
    }

    .client-logo-container {
        min-width: 140px !important;
        width: 140px !important;
        height: 90px !important;
        padding: 8px !important;
    }

    .client-logo-container img {
        max-width: 100%;
        max-height: 100%;
    }

    .client-scroll-track {
        gap: 40px !important;
    }

     .project-card {
         min-width: 280px;
     }

     .project-card h3 {
         text-align: center;
     }

     .project-card p {
         text-align: center;
     }

     #hero,
     #services,
     #clients,
     #testimonials,
     #reviews,
     #about,
     #contact {
         padding: 60px 20px;
     }

     .section-title {
         font-size: 32px;
         text-align: center;
     }

     .stat-card {
         text-align: center;
     }

     .stat-label {
         text-align: center;
     }

     .testimonial-quote {
         text-align: justify;
        hyphens: auto;

     }

     .testimonial-author {
         text-align: center;
     }

     .differentiator-card h3 {
         text-align: center;
     }

     .differentiator-card p {
         text-align: center;
     }

     .about-content h3 {
         text-align: center;
     }

     .about-content p {
         text-align: center;
     }

     .info-card h3 {
         text-align: center;
     }

     .info-card p {
         text-align: center;
     }

     .contact-container {
         grid-template-columns: 1fr;
     }

     .contact-info h3 {
         text-align: center;
     }

     .contact-info p {
         text-align: center;
     }

     .info-item {
         text-align: center;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .footer-section h4 {
         text-align: center;
     }

     .footer-section ul {
         text-align: center;
     }

     .footer-section p {
         text-align: center;
     }

     #scroll-progress {
         display: none;
     }
 }

 /* Success Message */
 .success-message {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(26, 26, 26, 0.95);
     backdrop-filter: blur(10px);
     padding: 60px;
     border-radius: 20px;
     border: 2px solid var(--primary-yellow);
     text-align: center;
     z-index: 10000;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
 }

 .success-message.show {
     opacity: 1;
     pointer-events: auto;
 }

 .success-icon {
     font-size: 72px;
     color: var(--primary-yellow);
     margin-bottom: 20px;
 }

 .success-message h3 {
     font-size: 28px;
     margin-bottom: 15px;
 }

 .success-message p {
     font-size: 16px;
     color: var(--text-gray);
 }

 /* Mobile 3D Optimizations */
 @media (max-width: 768px) {

     /* Keep canvases but optimize */
     canvas {
         image-rendering: auto;
         transform: translateZ(0);
         will-change: transform;
     }

     /* Reduce animation complexity */
     .hero-logo {
         animation-duration: 4s !important;
     }

     .client-scroll-track {
         animation-duration: 50s !important;
     }

     /* Simplify shadows but keep them visible */
     .stat-card,
     .testimonial-card {
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
     }

     /* Optimize transforms */
     .service-detail {
         transform: none !important;
     }

     /* Reduce blur effects */
     .contact-form,
     .testimonial-card {
         backdrop-filter: blur(5px) !important;
     }
 }