  /* Base Reset & Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #f8e300;
            --secondary: #ffffff;
            --dark: #121212;
            --light: #f8f8f8;
            --accent: #ecd901;
            --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
            color: var(--light);
            background: var(--dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Canvas Background */
        #webgl-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            opacity: 0.8;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader-spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        .preloader-text {
            font-size: 1.2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

/* Thin Floating Navigation Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 40px; /* Reduced top/bottom padding for thinner height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    height: 60px; /* Fixed height for consistency */
}

.navbar.scrolled {
    padding: 8px 40px; /* Even thinner when scrolled */
    background: rgba(5, 5, 15, 0.95);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    top: 15px;
    left: 15px;
    right: 15px;
    height: 55px; /* Slightly thinner when scrolled */
}

/* Logo - adjusted for thinner navbar */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem; /* Slightly smaller */
    color: var(--light);
    text-decoration: none;
    z-index: 1001;
    position: relative;
    padding: 4px 8px; /* Reduced padding */
    overflow: hidden;
    transition: var(--transition);
}

.logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.logo:hover:before {
    left: 100%;
}

.logo span {
    color: var(--primary);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.logo:hover span {
    transform: rotate(15deg) scale(1.2);
    color: var(--secondary);
}

/* Creative Nav Links - adjusted for thinner navbar */
.nav-links {
    display: flex;
    list-style: none;
    position: relative;
}

.nav-links li {
    margin-left: 28px; /* Slightly reduced margin */
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem; /* Slightly smaller font */
    font-weight: 500;
    letter-spacing: 0.8px; /* Slightly reduced */
    transition: var(--transition);
    position: relative;
    padding: 6px 0; /* Reduced padding */
    display: block;
    overflow: hidden;
}

/* Creative underline effect */
.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Thinner underline */
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-10px);
    opacity: 0;
}

.nav-links a:hover:before {
    width: 100%;
    transform: translateX(0);
    opacity: 1;
}

/* Floating dots animation */
.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 5px; /* Slightly smaller */
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 0 8px var(--secondary);
}

.nav-links a:hover:after {
    opacity: 1;
    animation: float 1.5s infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-12px); /* Reduced float distance */
    }
}

/* Menu button - adjusted for thinner navbar */
.menu-btn {
    display: none;
    width: 36px; /* Slightly smaller */
    height: 36px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.menu-btn:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: rotate(90deg);
}

.menu-btn i {
    font-size: 1.2rem; /* Slightly smaller */
    color: var(--light);
    transition: var(--transition);
}

.menu-btn:hover i {
    color: var(--primary);
}

/* Mobile menu styles */
@media (max-width: 968px) {
    .navbar {
        padding: 10px 30px; /* Reduced for mobile */
        top: 15px;
        left: 15px;
        right: 15px;
        height: 55px; /* Slightly thinner on mobile */
    }
    
    .navbar.scrolled {
        padding: 7px 30px;
        top: 12px;
        left: 12px;
        right: 12px;
        height: 50px;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px; /* Slightly narrower */
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(108, 99, 255, 0.2);
        border-radius: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 18px 0; /* Slightly reduced */
        opacity: 0;
        transform: translateX(50px);
        transition: var(--transition);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

    .nav-links a {
        font-size: 1.1rem; /* Slightly adjusted */
        padding: 8px 18px; /* Reduced padding */
    }

    .nav-links a:before {
        height: 100%;
        width: 4px; /* Thinner */
        left: 0;
        bottom: 0;
        transform: translateY(0);
        border-radius: 0;
    }

    .nav-links a:hover:before {
        width: 4px;
    }
}

/* Content section */
.content {
    padding: 50px 0;
    text-align: center;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
    line-height: 1.6;
}

.scroll-indicator {
    margin-top: 50px;
    color: var(--gray);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =============================
   HERO SECTION
============================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-content.visible .title-line {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.visible .title-line:first-child {
    transition-delay: 0.5s;
}
.hero-content.visible .title-line:nth-child(2) {
    transition-delay: 0.7s;
}

.title-line.highlight {
    color: var(--primary);
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(231, 212, 1, 0);
    z-index: -1;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-top: 30px;
    max-width: 600px;
    line-height: 1.6;
    color: #cccccc;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-content.visible .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-content.visible .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

/* =============================
   BUTTONS
============================= */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: #222;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231, 212, 1, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 212, 1, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #222;
}
/* Scroll Text Animation Styles */
.scroll-text-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 1000;
    transition: opacity 0.6s ease;
}

.scroll-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-text.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-text.next {
    opacity: 0;
    transform: translateY(-30px);
}

.scroll-text.prev {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
#scrollText{
    font-size: 130px;
}
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enable scrolling when needed */
body.scroll-enabled {
    overflow: auto;
}

body:not(.scroll-enabled) {
    overflow: hidden;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    background-color: #1a1a1a;
}

/* Allow scrolling globally (important fix) */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto !important;
    touch-action: auto !important;
    overscroll-behavior: contain;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
    .hero { padding: 0 5%; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .scroll-text { font-size: clamp(2rem, 10vw, 4rem); }
    .contact-section { padding: 80px 5%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-description { font-size: 1rem; }
    .btn { padding: 12px 30px; }
}

        /* Section Styles */
        .section {
            padding: 100px 10%;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 80px;
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        /* Scroll control classes */
.no-scroll {
    overflow: hidden;
}

.scroll-enabled {
    overflow: auto;
}
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--dark);
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .skills-bars {
            width: 100%;
        }

        .skill-bar {
            margin-bottom: 30px;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .skill-name {
            font-weight: 600;
        }

        .skill-percentage {
            color: var(--primary);
        }

        .skill-progress {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 10px;
            width: 0;
            transition: width 2s ease;
        }

        .skills-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateX(50px);
        }

        .skills-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        
        /* Gallery Filters */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            gap: 15px;
        }

        .filter-btn {
            padding: 12px 30px;
            background: transparent;
            color: var(--light);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .filter-btn.active, .filter-btn:hover {
            color: var(--dark);
            border-color: var(--primary);
        }

        .filter-btn.active::before, .filter-btn:hover::before {
            left: 0;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.6s forwards;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 15px;
        }
        
        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 24px;
            transition: var(--transition);
            opacity: 0.9;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item:hover .play-button {
            background: var(--secondary);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 70%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover .gallery-img,
        .gallery-item:hover .video-element {
            transform: scale(1.1);
        }

        .gallery-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
            font-weight: 600;
        }

        .gallery-category {
            color: var(--primary);
            transform: translateY(20px);
            transition: var(--transition);
            font-weight: 500;
        }

        .gallery-item:hover .gallery-title,
        .gallery-item:hover .gallery-category {
            transform: translateY(0);
        }

        /* See More Button */
        .see-more-container {
            text-align: center;
            margin-top: 30px;
        }

        .see-more-btn {
            padding: 15px 40px;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(248, 227, 0, 0.3);
        }

        .see-more-btn:hover {
            background: var(--secondary);
            color: var(--light);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        .see-more-btn i {
            transition: var(--transition);
        }

        .see-more-btn:hover i {
            transform: translateY(3px);
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            overflow: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: block;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            margin: 2% auto;
            padding: 20px;
            width: 90%;
            max-width: 1200px;
            animation: modalFadeIn 0.5s;
            background: var(--gray);
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 40px;
            color: var(--light);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
        }

        .close-btn:hover {
            color: var(--primary);
            background: rgba(0, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        .modal-body {
            width: 100%;
            display: flex;
            justify-content: center;
            border-radius: 10px;
            overflow: hidden;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
            display: block;
        }
        
        .modal-video-container {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .modal-video {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
            border-radius: 10px;
        }
        
        .modal-local-video {
            width: 100%;
            max-height: 80vh;
            border-radius: 10px;
        }
        
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .modal-video-container:hover .video-controls {
            opacity: 1;
        }
        
        .video-control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .video-control-btn:hover {
            background: var(--primary);
            color: var(--dark);
        }
        
        .progress-bar {
            flex-grow: 1;
            height: 5px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 0.1s;
        }
        
        .time-display {
            color: white;
            font-size: 0.9rem;
            min-width: 100px;
            text-align: center;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .volume-slider {
            width: 80px;
            height: 5px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            position: relative;
            cursor: pointer;
        }
        
        .volume-level {
            height: 100%;
            background: var(--primary);
            width: 70%;
            border-radius: 5px;
        }

        .modal-info {
            margin-top: 20px;
            text-align: center;
            padding: 0 20px 20px;
        }

        .modal-title {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .modal-category {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Hidden items for See More functionality */
        .gallery-item.hidden {
            display: none;
        }

        /* Loading Animation */
        .loader {
            display: none;
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin: 20px auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
            
            .video-controls {
                padding: 15px;
            }
            
            .video-control-btn {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 200px;
                margin-bottom: 10px;
            }
            
            .section {
                padding: 60px 5%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
        }
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transform: rotate(3deg);
            opacity: 0;
        }

        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
            opacity: 0.3;
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
        }

        .contact-form {
            opacity: 0;
            transform: translateX(50px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--light);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus {
            border-color: var(--primary);
            outline: none;
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: transparent;
            padding: 70px 10% 30px;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
        }

        .footer-newsletter p {
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px 0 0 5px;
            color: var(--light);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-btn {
            padding: 0 20px;
            background: var(--primary);
            border: none;
            border-radius: 0 5px 5px 0;
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background: var(--accent);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
            color: var(--dark);
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .logoname h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 5rem;
            color: var(--light);
            text-decoration: none;
            margin-left: 180px;
            margin-top:100px;
        }
           .logoname h3 span {
                color: var(--primary);}

        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Scroll Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            z-index: 1000;
            transition: width 0.2s ease;
        }

        /* Loading Screen Styles */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: opacity 1s ease-out;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }
        
        .progress-container {
            width: 200px;
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #f8e300, #ffea05);
            transition: width 0.3s ease;
        }
        
        .loading-text {
            color: white;
            margin-top: 15px;
            font-family: sans-serif;
            font-size: 14px;
        }

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(2px);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(20px, 20px) rotate(180deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        /* Particle Network */
        .particle-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -2;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .navbar {
                padding: 20px 30px;
            }
            
            .section {
                padding: 80px 5%;
            }
            
            .about-content,
            .contact-container,
            .skills-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image,
            .skills-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 90;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .menu-btn {
                display: block;
                z-index: 100;
            }
            .logoname{
                display: none;
            }
            
            .hero {
                padding: 0 5%;
            }
            
            .btn {
                display: block;
                margin-bottom: 15px;
                width: 100%;
                text-align: center;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .animate-in {
            opacity: 1 !important;
            transform: translateY(0) !important;
            transform: translateX(0) !important;
        }

        .delay-1 {
            transition-delay: 0.2s !important;
        }

        .delay-2 {
            transition-delay: 0.4s !important;
        }

        .delay-3 {
            transition-delay: 0.6s !important;
        }

        
