/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 50% 50% 50% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 30% 60% 70% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 50% 60%;
        transform: rotate(270deg) scale(1.1);
    }
}

/* 3D Animated Icons */
@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

@keyframes bounce3d {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    40% {
        transform: translateY(-20px) rotateX(20deg);
    }
    60% {
        transform: translateY(-10px) rotateX(10deg);
    }
}

@keyframes pulse3d {
    0%, 100% {
        transform: scale(1) rotateZ(0deg);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    50% {
        transform: scale(1.2) rotateZ(5deg);
        text-shadow: 0 0 30px rgba(212, 175, 55, 1);
    }
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(15deg);
    }
}

@keyframes spin3d {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.1);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

/* Animated Icon Classes */
.animated-icon-3d {
    animation: rotate3d 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.animated-icon-pulse {
    animation: pulse3d 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.animated-icon-bounce {
    animation: bounce3d 2.5s ease-in-out infinite;
    filter: drop-shadow(0 6px 18px rgba(212, 175, 55, 0.5));
    transition: all 0.3s ease;
}

.animated-icon-rotate {
    animation: spin3d 5s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
    transition: all 0.3s ease;
}

.animated-icon-float {
    animation: float3d 3.5s ease-in-out infinite;
    filter: drop-shadow(0 7px 25px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

/* Hover Effects for 3D Icons */
.service-card:hover .animated-icon-3d {
    animation-duration: 1s;
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.8));
}

.service-card:hover .animated-icon-pulse {
    animation-duration: 1s;
    transform: scale(1.3);
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.9));
}

.service-card:hover .animated-icon-bounce {
    animation-duration: 1s;
    transform: scale(1.25) translateY(-10px);
    filter: drop-shadow(0 15px 35px rgba(212, 175, 55, 0.7));
}

.service-card:hover .animated-icon-rotate {
    animation-duration: 1s;
    transform: scale(1.2) rotateY(180deg);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.8));
}

.service-card:hover .animated-icon-float {
    animation-duration: 1s;
    transform: scale(1.3) translateY(-15px);
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.6));
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Animated Background Shapes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 60%;
    animation: morphing 10s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    animation: pulse 4s ease-in-out infinite;
}

.shape-5 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation: bounce 3s ease-in-out infinite;
}

/* Themed Shapes for Each Slide */

/* App Theme Shapes */
.app-phone {
    width: 30px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    position: relative;
}

.app-phone::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 2px;
}

.app-icon {
    width: 25px;
    height: 25px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    position: relative;
}

.app-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
}

/* Finance Theme Shapes */
.finance-coin {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: relative;
}

.finance-coin::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(212, 175, 55, 0.8);
    font-weight: bold;
    font-size: 20px;
}

.finance-chart {
    width: 50px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
}

.finance-chart::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 8px;
    width: 6px;
    height: 15px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 1px;
}

.finance-chart::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 8px;
    width: 6px;
    height: 25px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 1px;
}

/* Mission Theme Shapes */
.mission-target {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    position: relative;
    background: rgba(212, 175, 55, 0.1);
}

.mission-target::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
}

.mission-target::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
}

.mission-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.mission-arrow::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -8px;
    width: 16px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
}

/* Vision Theme Shapes */
.vision-eye {
    width: 50px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px 50px 50px 50px / 30px 30px 30px 30px;
    position: relative;
}

.vision-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
}

.vision-bulb {
    width: 25px;
    height: 35px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50% 50% 20% 20%;
    position: relative;
}

.vision-bulb::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 8px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 0 0 4px 4px;
}

/* Investment Theme Shapes */
.invest-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 0;
    border-bottom: 40px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
    position: relative;
}

.invest-graph {
    width: 45px;
    height: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.invest-graph::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.8) 100%);
}

.invest-graph::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0;
    border-bottom: 12px solid rgba(212, 175, 55, 0.6);
    transform: rotate(45deg);
}

.invest-money {
    width: 35px;
    height: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    position: relative;
}

.invest-money::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(212, 175, 55, 0.8);
    font-weight: bold;
    font-size: 12px;
}

/* Mobile Sidebar */
.mobile-sidebar, .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px; 
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    overflow-y: auto;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
}

.mobile-sidebar.open, .sidebar.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-sidebar, .close-btn {
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
}

.close-sidebar:hover, .close-btn:hover {
    color: #D4AF37;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-label {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.submenu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.submenu.open {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px 40px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.submenu a:hover {
    color: #D4AF37;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9000;
    padding: 15px 0;
    animation: slideInFromTop 1s ease-out;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.logo img {
    filter: none !important;
    image-rendering: crisp-edges !important;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 2s ease-in-out infinite;
}

/* Desktop Navigation - Hidden by default, shown on larger screens */
.desktop-nav {
    display: none;
}

/* Mobile Menu Button - Shown by default, hidden on larger screens */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9001;
    position: relative;
    padding: 0;
    outline: none;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Carousel - Mobile First */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #000);
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.02) 50%, transparent 60%);
    animation: shimmer 6s ease-in-out infinite;
    z-index: 1;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.slides {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 20px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    position: relative;
    overflow: hidden;
}

/* Unique Background for Each Slide */
.slide:nth-child(1) {
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 220, 111, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a, #000);
}

.slide:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 30% 40%, transparent 0deg, rgba(212, 175, 55, 0.08) 90deg, transparent 180deg, rgba(212, 175, 55, 0.05) 270deg, transparent 360deg);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

.slide:nth-child(2) {
    background: 
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(247, 220, 111, 0.08) 0%, transparent 50%),
        linear-gradient(-45deg, #1a1a1a, #0f0f0f, #000);
}

.slide:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.06) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(247, 220, 111, 0.04) 60%, transparent 80%);
    animation: wave 8s ease-in-out infinite alternate;
    z-index: 1;
}

.slide:nth-child(3) {
    background: 
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.14) 0%, transparent 70%),
        radial-gradient(circle at 20% 70%, rgba(247, 220, 111, 0.09) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #1a1a1a, #000);
}

.slide:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 90deg at 60% 60%, transparent 0deg, rgba(212, 175, 55, 0.1) 120deg, transparent 240deg, rgba(247, 220, 111, 0.06) 300deg, transparent 360deg);
    animation: rotate 30s linear infinite reverse;
    z-index: 1;
}

.slide:nth-child(4) {
    background: 
        radial-gradient(ellipse at 40% 30%, rgba(212, 175, 55, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(247, 220, 111, 0.08) 0%, transparent 50%),
        linear-gradient(90deg, #000, #1a1a1a, #000);
}

.slide:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.05) 25%, transparent 50%, rgba(247, 220, 111, 0.03) 75%, transparent 100%);
    animation: shimmer 6s ease-in-out infinite;
    z-index: 1;
}

.slide:nth-child(5) {
    background: 
        radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.16) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(247, 220, 111, 0.11) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.07) 0%, transparent 40%),
        linear-gradient(225deg, #1a1a1a, #000, #0a0a0a);
}

.slide:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 180deg at 40% 50%, transparent 0deg, rgba(212, 175, 55, 0.09) 60deg, transparent 120deg, rgba(247, 220, 111, 0.05) 240deg, transparent 300deg, rgba(212, 175, 55, 0.07) 360deg);
    animation: rotate 20s linear infinite, pulse 4s ease-in-out infinite alternate;
    z-index: 1;
}

.slide.active .slide-content h1 {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.slide.active .slide-content p {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.slide.active .cta-button {
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Slide Shapes Container */
.slide-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Global styles for all themed shapes */
.slide-shapes > div {
    position: absolute;
    pointer-events: none;
}

/* App Theme Animations */
.app-phone, .app-icon {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Finance Theme Animations */
.finance-coin, .finance-chart {
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Mission Theme Animations */
.mission-target, .mission-arrow {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Vision Theme Animations */
.vision-eye, .vision-bulb {
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Investment Theme Animations */
.invest-arrow, .invest-graph, .invest-money {
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.slide-content {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 3;
}

.slide-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    opacity: 0;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    animation: expandWidth 2s ease-out 1.5s both;
}

@keyframes expandWidth {
    to {
        width: 100px;
    }
}

.slide-content .gold {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.slide-content .gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    border: 2px solid transparent;
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background-position: 100% 50%;
    border-color: rgba(212, 175, 55, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.cta-button:active::after {
    width: 300px;
    height: 300px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 40%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    transform: scale(1.1);
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.nav-btn.prev {
    animation-delay: 0s;
}

.nav-btn.next {
    animation-delay: 1.5s;
}

/* Carousel Pagination */
.carousel-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: slideInFromBottom 1s ease-out 1.5s both;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.dot {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.5s ease-out both;
    text-align: center;
    white-space: nowrap;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot:nth-child(1) { animation-delay: 1.6s; }
.dot:nth-child(2) { animation-delay: 1.7s; }
.dot:nth-child(3) { animation-delay: 1.8s; }
.dot:nth-child(4) { animation-delay: 1.9s; }
.dot:nth-child(5) { animation-delay: 2.0s; }

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.dot:hover::before {
    left: 100%;
}

.dot.active,
.dot:hover {
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    color: #000;
    transform: scale(1.1);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.dot.active {
    animation: pulse 2s ease-in-out infinite;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 20%, rgba(212, 175, 55, 0.02) 40%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    animation: pulse 10s ease-in-out infinite alternate;
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.01) 90deg, transparent 180deg, rgba(212, 175, 55, 0.01) 270deg, transparent 360deg);
    animation: rotate 60s linear infinite;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 2px;
    background: #D4AF37;
    transform: translateY(-50%);
    animation: slideInFromLeft 0.8s ease-out 1s both;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 2px;
    background: #D4AF37;
    transform: translateY(-50%);
    animation: slideInFromRight 0.8s ease-out 1s both;
}

@keyframes slideInFromLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 20px;
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 20px;
        opacity: 1;
    }
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 1.5s both;
}

@keyframes expandWidth {
    to {
        width: 80px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.15),
        0 0 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 2;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.service-icon img {
    filter: none !important;
    image-rendering: crisp-edges !important;
    max-width: 45px;
    max-height: 55px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.service-card:hover .service-icon img {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)) !important;
}

.service-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #D4AF37;
    transform: translateY(-2px);
}

.service-card p {
    color: #ccc;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #e0e0e0;
    transform: translateY(-2px);
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(-45deg, transparent 30%, rgba(212, 175, 55, 0.02) 50%, transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    animation: wave 12s ease-in-out infinite alternate;
}

.case-studies::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: shimmer 8s ease-in-out infinite;
}

.case-studies .section-header {
    color: white;
    margin-bottom: 40px;
}

.case-studies .section-header p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

.case-study {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.case-image {
    margin-bottom: 20px;
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    filter: none !important;
    image-rendering: crisp-edges !important;
}

.case-logo {
    margin-bottom: 20px;
}

.case-logo img {
    filter: none !important;
    image-rendering: crisp-edges !important;
}

.case-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-content h4 {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-list li {
    background: #D4AF37;
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.case-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.case-link:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #111, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.02) 50%, transparent 60%);
    animation: morphing 15s ease-in-out infinite;
}

.about-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.01) 50%, transparent 70%);
    animation: shimmer 10s ease-in-out infinite;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.video-section {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out 0.5s both;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    z-index: 1;
    pointer-events: none;
}

.video-section iframe {
    width: 100%;
    height: 280px;
    border: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-section:hover iframe {
    transform: scale(1.02);
}

.about-text {
    color: white;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-out 0.8s both;
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #D4AF37, #F7DC6F);
    border-radius: 2px;
    animation: slideInFromTop 1s ease-out 1.5s both;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #D4AF37;
    position: relative;
    font-weight: 700;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 2s both;
}

.about-text p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.about-text p:hover {
    color: #e0e0e0;
    transform: translateX(5px);
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 2.5s both;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(180deg, #000, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 20%, rgba(212, 175, 55, 0.03) 50%, transparent 80%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    animation: wave 14s ease-in-out infinite alternate;
}

.projects::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, transparent, rgba(212, 175, 55, 0.04), transparent);
    animation: shimmer 12s ease-in-out infinite reverse;
}

.projects h2 {
    text-align: center;
    color: white;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.projects h2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 1.2s both;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.project-card {
    background: linear-gradient(135deg, #111, #0a0a0a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: fadeInUp 0.8s ease-out both;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, #F7DC6F, #D4AF37);
    background-size: 200% 200%;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    animation: shimmer 3s linear infinite;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: none !important;
    image-rendering: crisp-edges !important;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.project-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1) !important;
}

.project-card h3 {
    color: white;
    padding: 25px 25px 15px;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-card:hover h3 {
    color: #D4AF37;
    transform: translateY(-3px);
}

.project-card p {
    color: #ccc;
    padding: 0 25px 25px;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.project-card:hover p {
    color: #e0e0e0;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block !important;
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

/* Mobile Carousel Adjustments */
/* Mobile - Ensure only mobile menu shows */
@media screen and (max-width: 767px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Mobile Carousel Navigation - Move to avoid text overlap */
    .carousel-nav {
        top: 35%;
        left: 10px;
        right: 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(212, 175, 55, 0.6);
    }
    
    /* Mobile Carousel Pagination - Perfect Centering */
    .carousel-pagination {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 3px;
        padding: 0 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .dot {
        padding: 4px 8px;
        font-size: 8px;
        min-width: 30px;
        flex-shrink: 0;
        white-space: nowrap;
        margin: 1px;
        border-radius: 15px;
    }
    
    /* Slide content adjustments for mobile */
    .slide-content {
        padding: 20px 15px 80px;
        max-width: calc(100% - 30px);
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .slide-shapes > div {
        opacity: 0.6;
        transform: scale(0.7);
    }
}

/* Extra Small Mobile Screens */
@media screen and (max-width: 480px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .carousel-nav {
        top: 30%;
        left: 5px;
        right: 5px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-pagination {
        bottom: 15px;
        padding: 0 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .dot {
        padding: 3px 6px;
        font-size: 7px;
        min-width: 25px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 13px;
    }
}

/* Tablet and above - Show desktop nav, hide mobile menu */
@media screen and (min-width: 768px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex !important;
        gap: 20px;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .carousel-pagination {
        gap: 12px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
    }
    
    .dot {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 70px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .video-section {
        flex: 1;
        margin-right: 30px;
    }
    
    .video-section iframe {
        height: 300px;
    }
    
    .about-text {
        flex: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles - Full desktop navigation with dropdowns */
@media screen and (min-width: 750px) {
    /* Hide mobile elements completely */
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-sidebar {
        display: none !important;
    }
    
    /* Show desktop navigation */
    .desktop-nav {
        display: flex !important;
        gap: 30px;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        color: white;
        text-decoration: none;
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: #D4AF37;
    }
    
    /* Force dropdown menus to be hidden by default */
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px);
        min-width: 200px;
        border-radius: 5px;
        padding: 10px 0;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease;
        z-index: 1000;
        display: block !important;
    }
    
    /* Only show dropdown on hover */
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .dropdown-menu a {
        display: block;
        color: #ccc;
        text-decoration: none;
        padding: 8px 20px;
        transition: color 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        color: #D4AF37;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .slide-content h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .case-study {
        display: flex;
        gap: 40px;
        align-items: center;
    }
    
    .case-image {
        flex: 1;
        margin-bottom: 0;
    }
    
    .case-content {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: 300px 1fr;
        align-items: start;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Additional Mobile Menu Fixes - Ensure consistent behavior across all screens */
@media screen and (max-width: 768px) {
    /* Force mobile menu button to be visible on all mobile screens */
    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 9001;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #D4AF37;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    /* Ensure desktop nav is hidden on mobile */
    .desktop-nav {
        display: none !important;
    }
    
        /* Ensure sidebar is properly positioned */
    .mobile-sidebar, .sidebar, .left-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        transition: all 0.3s ease;
        overflow-y: auto;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
    }

    .mobile-sidebar.open, .sidebar.open, .left-sidebar.active, .left-sidebar.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (min-width: 769px) {
    /* Force mobile menu button to be hidden on desktop */
    .mobile-menu-btn {
        display: none !important;
    }
    
    /* Force desktop nav to be visible on desktop */
    .desktop-nav {
        display: flex !important;
    }
    
    /* Hide mobile sidebar on desktop */
    .mobile-sidebar, .sidebar, .left-sidebar {
        display: none !important;
    }
}

/* Force mobile menu functionality on all touch devices */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 9001;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

/* Additional failsafe for very small screens */
@media screen and (max-width: 480px) {
    .mobile-menu-btn {
        display: flex !important;
        width: 20px;
        height: 16px;
    }
    
    .mobile-menu-btn span {
        height: 2px;
    }
}

/* Ensure proper z-index stacking */
.header {
    z-index: 9000;
}

.mobile-menu-btn {
    z-index: 9001;
}

.mobile-sidebar, .sidebar {
    z-index: 9999;
}

/* Prevent text selection on menu button */
.mobile-menu-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
} 