

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, sans-serif;
            background: #0b0b12;
            color: #CF7E04;
        }


        .navbar {
            position: fixed;
            top: 20px;
            left: 40px;
            right: 40px;
            background: transparent;
            backdrop-filter: blur(1px);
            padding: 12px 40px;
            display: flex;
            border-radius: 15px;
            border: #CF7E04 1px solid;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.8);
            top: 0;
            left: 0;
            right: 0;
            margin: 0;
            padding: 12px 40px;
            border-radius: 0;
            border-top: none;
            border-right: none;
            border-left: none;
            border-bottom: #CF7E04 1px solid;
            box-shadow: 0 4px 10px rgba(24, 24, 24, 0.2);
            backdrop-filter: blur(10px);
            animation: slideup 0.8s ease-out;
        }

        @keyframes slideup {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-logo {
            font-weight: bold;
            color: #CF7E04;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        @media (min-width: 1200px) {
            .nav-logo img {
                height: 50px;
            }
        }

        @media (max-width: 992px) {
            .nav-logo img {
                height: 42px;
            }
        }

        @media (max-width: 768px) {
            .nav-logo img {
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .nav-logo img {
                height: 38px;
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #CF7E04;
            transition: width 0.3s ease;
        }

        .nav-links li:hover::after {
            width: 100%;
        }

        .nav-links a {
            color: #CF7E04;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: #ff9d1a;
        }

        .nav-btn {
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 8px;
            border: 2px solid #CF7E04;
            margin-left: 120px;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            height: 40px;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background: #CF7E04;
            color: #000 !important;
            opacity: 0;
            animation: slideInLeft 1s forwards 0.9s;
            flex-shrink: 0;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .nav-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .nav-btn:hover {
            color: #ffffff !important;
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(207, 126, 4, 0.5);
        }

        .nav-btn i {
            margin-right: 5px;
        }


        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #CF7E04;
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 1001;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background: #1a1a1a;
            transition: left 0.3s ease;
            z-index: 1002;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(207, 126, 4, 0.3);
        }

        .mobile-menu-header .nav-logo img {
            height: 35px;
        }

        .close-btn {
            background: none;
            border: none;
            color: #CF7E04;
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 20px 0;
            margin: 0;
        }

        .mobile-nav-links li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-links a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }

        .mobile-nav-links a:hover {
            background: rgba(207, 126, 4, 0.1);
            color: #CF7E04;
        }

        .mobile-nav-btn {
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            border: 2px solid #CF7E04;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: calc(100% - 40px);
            margin: 20px;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background: #CF7E04;
            color: #000 !important;
        }

        .mobile-nav-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .mobile-nav-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .mobile-nav-btn:hover {
            color: #ffffff !important;
            background: transparent;
            box-shadow: 0 0 20px rgba(207, 126, 4, 0.5);
        }

        .mobile-nav-btn i {
            margin-right: 5px;
        }

      
        @media (max-width: 768px) {
            .navbar {
                left: 20px;
                right: 20px;
                padding: 12px 20px;
            }

            .navbar.scrolled {
                padding: 12px 20px;
            }

            .nav-links,
            .nav-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                left: 10px;
                right: 10px;
                padding: 10px 15px;
            }

            .navbar.scrolled {
                padding: 10px 20px;
            }
        }


      
        .page-header {
            text-align: center;
            padding: 80px 20px 40px;
            margin-top: 100px;
            background: url("images/soundwave2.jpg") center/cover no-repeat;
            position: relative;
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.837);
            z-index: 0;
        }

        .page-header h1,
        .page-header p {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 42px;
        }

        .page-header p {
            color: #ffffff;
            margin-top: 10px;
        }

       
        .gallery-page {
            padding: 40px 5% 80px;
        }

       
        .gallery-grid {
            columns: 4;
            column-gap: 20px;
        }

        .gallery-grid img {
            width: 100%;
            margin-bottom: 20px;
            border-radius: 14px;
            cursor: pointer;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.03);
            opacity: 0.9;
        }

        
        @media (max-width: 1200px) {
            .gallery-grid {
                columns: 3;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                columns: 2;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                columns: 1;
            }
        }

      
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
        }

        .lightbox .close {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 42px;
            cursor: pointer;
        }

 /*=============================
            Footer 
    ===============================*/

       .footer {
            position: relative;
            background: url("images/soundwave1.jpg") center/cover no-repeat;
            color: #fff;
            padding: 70px 0 30px;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.75); 
            z-index: 0;
        }

        .footer > * {
            position: relative;
            z-index: 1;
        }

        .footer-container {
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: repeat(1, 1fr);
            }
        }


        .footer-logo-section img {
            height: 70px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .footer-description {
            color: #b0b0b0;
            font-size: 16px;
            line-height: 1.7;
            max-width: 400px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: #FFA500;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #FFA500;
            text-decoration: underline;
            transform: translateX(5px);
        }


        .newsletter-section {
            position: relative;
        }

        .newsletter-text {
            color: #b0b0b0;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 20px;
            background-color: #2d2d44;
            border: none;
            border-radius: 30px;
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            background-color: #3a3a52;
            box-shadow: 0 0 0 2px  #CF7E04;
        }

        .newsletter-input::placeholder {
            color: #888;
        }

        .newsletter-button {
            background-color: #CF7E04;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 14px 25px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start; 
        }

        .newsletter-button:hover {
            background-color: #CF7E04;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px #CF7E04;
        }

        .newsletter-button i {
            margin-left: 8px;
            font-size: 14px;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 2px solid #CF7E04;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            text-align: center;
        }

        .copyright {
            color: #b0b0b0;
            font-size: 16px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            display: flex;
            font-size: 20px;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);

        }



        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {

            .social-links {
                align-items: center;
                margin-left: 20px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .footer-logo-section {
                text-align: center;
            }
            
            .footer-description {
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 50px 0 20px;
            }
            
            .footer-section h3 {
                font-size: 18px;
            }
            
            .newsletter-button {
                position: relative;
                right: auto;
                top: auto;
                width: 100%;
                margin-top: 10px;
                border-radius: 30px;
            }
        }


