        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: 'Arial', sans-serif;
            color: #000000;
        }

        .reveal {
            opacity: 0;
            transform: translateY(var(--reveal-y, 40px));
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            --reveal-y: 0;
        }



       /* Navbar */
        .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;
            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;
            margin-left: 120px;
            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 Styles 
        =============================*/
        .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;
        }

        /* Responsive */
        @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;
            }
        }

      
        /* ===================
            Hero Section 
        =======================*/
        .hero {
            background: linear-gradient(to right, rgba(5, 5, 5, 0.993) 0%, rgba(43, 43, 43, 0.85) 40%, rgba(51, 51, 51, 0.3) 100%),
            url('images/pod-1.jpg');
            background-size: cover;
            background-position: center right;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }

         .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/pod-1.jpg');
            background-size: cover;
            background-position: center right;
            animation: slowZoom 20s ease-in-out infinite alternate;
            z-index: 0;
        }

        @keyframes slowZoom {
            0% {
                transform: scale(1) translateX(0);
            }
            50% {
                transform: scale(1.1) translateX(-20px);
            }
            100% {
                transform: scale(1.05) translateX(20px);
            }
        }

          .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(5, 5, 5, 0.993) 0%, rgba(43, 43, 43, 0.85) 40%, rgba(51, 51, 51, 0.3) 100%);
            z-index: 1;
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 0.95; }
            50% { opacity: 0.85; }
        }


        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 60px;
            max-width: 800px;
            margin-top: 60px;
        }

       
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 60px);
            color: #CF7E04;
            margin-top: 20px;
            margin-bottom: 18px;
            line-height: 1.2;
            font-weight: 800;
            opacity: 0;
            animation: slideInLeft 1s forwards 0.3s !important;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #ffffff;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 600px;
            opacity: 0;
            animation: fadeIn 1s forwards 0.8s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .hero-btn1,
        .hero-btn2 {
            font-size: clamp(16px, 2vw, 18px);
            font-weight: 600;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 8px;
            border: 2px solid #CF7E04;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .hero-btn1 {
            background: #CF7E04;
            color: #000;
            opacity: 0;
            animation: slideInLeft 1s forwards 0.9s;
        }

        .hero-btn1::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;
        }

        .hero-btn1:hover::before {
            width: 300px;
            height: 300px;
        }

        .hero-btn1:hover {
            color: #ffffff; 
            background: transparent;
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(207, 126, 4, 0.5);
        }

        .hero-btn2 {
            background: transparent;
            color: #ffffff;
            opacity: 0;
            animation: slideInRight 1s forwards 0.9s;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-btn2::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: #CF7E04;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: -1;
        }

        .hero-btn2:hover::before {
            width: 300px;
            height: 300px;
        }

        .hero-btn2:hover {
            color: #000;
            box-shadow: 0 0 20px rgba(207, 126, 4, 0.5);
            transform: translateY(-2px); 
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .hero {
                min-height: 75vh;
                padding: 0 4%;
                background-attachment: scroll;
            }

            .hero-content {
                padding: 60px 40px;
                max-width: 700px;
            }

            .hero h1 {
                margin-top: 40px;
            }

            .hero-buttons {
                margin-top: 30px;
                gap: 1.2rem;
            }
        }

        /* Mobile Landscape */
        @media (max-width: 900px) {
            .hero {
                background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(43, 43, 43, 0.88) 60%, rgba(51, 51, 51, 0.4) 100%),
                url('images/pod-1.jpg');
                background-size: cover;
                background-position: center;
            }
        }

        /* Tablet Portrait */
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
                padding: 0 3%;
                align-items: flex-start;
                padding-top: 100px;
                
            }

            .hero-content {
                padding: 40px 30px;
                max-width: 100%;
                margin-top: 0;
            }

            .hero h1 {
                margin-top: 20px;
                margin-bottom: 15px;
            }

            .hero p {
                margin-bottom: 2rem;
                max-width: 100%;
            }

            .hero-buttons {
                margin-top: 25px;
                gap: 1rem;
            }

            .hero-btn1,
            .hero-btn2 {
                padding: 12px 24px;
                min-width: 140px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 600px) {
            .hero {
                padding: 0 5%;
                padding-top: 80px;
                background: linear-gradient(to bottom, rgba(5, 5, 5, 0.96) 0%, rgba(43, 43, 43, 0.9) 70%, rgba(51, 51, 51, 0.5) 100%),
                url('images/pod-1.jpg');
                background-size: cover;
                background-position: center;
            }

            .hero-content {
                padding: 30px 20px;
            }

            .hero h1 {
                margin-top: 10px;
                margin-bottom: 12px;
            }

            .hero p {
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                margin-top: 20px;
                width: 100%;
            }

            .hero-btn1,
            .hero-btn2 {
                width: 100%;
                padding: 14px 20px;
                min-width: unset;
            }
        }

        /* Small Mobile */
        @media (max-width: 400px) {
            .hero {
                padding: 0 4%;
                padding-top: 60px;
            }

            .hero-content {
                padding: 20px 15px;
            }

            .hero h1 {
                margin-top: 0;
            }

            .hero-buttons {
                margin-top: 15px;
            }

            .hero-btn1,
            .hero-btn2 {
                padding: 12px 18px;
                font-size: 15px;
            }
        }

        /* Ultra-wide screens */
        @media (min-width: 1920px) {
            .hero-content {
                max-width: 900px;
                padding: 100px 80px;
            }

            .hero h1 {
                font-size: 70px;
                margin-top: 60px;
            }

            .hero p {
                font-size: 1.3rem;
            }

            .hero-buttons {
                margin-top: 50px;
                gap: 2rem;
            }

            .hero-btn1,
            .hero-btn2 {
                font-size: 20px;
                padding: 16px 32px;
                min-width: 180px;
            }
        }

        /* Accessibility - Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-content,
            .hero h1,
            .hero p,
            .hero-btn1,
            .hero-btn2 {
                animation: none;
                opacity: 1;
                transform: none;
            }

            .hero::before {
                animation: none;
            }
        }

        /*============================
            LAUNCH SECTION
        ===============================*/

        .launch-section {
            display: flex;
            flex-direction: row;
            min-height: 520px;
            height: 560px;
            padding: 40px 20px;
            background-color: #CF7E04;
            text-align: center;
            align-items: center;
            gap: 20px;
        }

        .launch-content {
            flex: 1;
            position: relative;
            z-index: 2;
            max-width: 100%;
            width: auto;
            margin-top: 0;
        }

        .launch-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5.5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #575757, #000000, #8f8e8e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInFromTop 2s forwards;
        }

        .underline1 {
            width: 100%;
            max-width: 600px;
            height: 4px;
            background: #000;
            margin: 0 auto 20px;
            border-radius: 2px;
            animation: slideInFromTop 2s forwards;
        }

        .launch-content p {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #ffffff;
            animation: slideInright 2s forwards;
        }

        .launch-image {
            flex-shrink: 0;
        }

        .launch-image img {
            height: 570px;
            max-width: 100%;
            object-fit: contain;
            margin-top: 40px;
            animation: slideInright 2s forwards;
        }

        .launch-links {
            display: flex;
            gap: 30px;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .launch-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            width: 20px;
            height: 20px;
            padding: 20px;
            margin-top: 20px;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .launch-links a:hover {
            transform: translateY(-5px);
        }

        .launch-links a:nth-child(1) {
            background: #1877F2;
        }

        .launch-links a:nth-child(2) {
            background: #ffffff;
            color: #1da1f2;
        }

        .launch-links a:nth-child(3) {
            background: #ffffff;
            color: #E4405F;
        }

        .launch-links a:nth-child(4) {
            background: #ffffff;
            color: red;
        }

        .launch-links a:nth-child(5) {
            background: #ffffff;
            color: 	#95bf47;
        }


        .launch-links a:nth-child(6) {
            background: #ffffff;
            color: #000000;
        }

        /* Tablet Landscape */
        @media (max-width: 1024px) {
            .launch-section {
                padding: 40px 30px;
                gap: 30px;
            }

            .launch-image img {
                height: 400px;
                margin-right: 0;
            }

            .launch-content p {
                font-size: 18px;
            }

            .launch-links {
                gap: 20px;
            }

            .launch-links a {
                font-size: 26px;
                width: 18px;
                height: 18px;
                padding: 18px;
            }
        }

        /* Tablet Portrait */
        @media (max-width: 768px) {
            .launch-section {
                flex-direction: column;
                min-height: auto;
                padding: 50px 30px;
                gap: 40px;
            }

            .launch-content {
                width: 100%;
                min-width: auto;
                height: auto;
                order: 2;
            }

            .launch-image {
                order: 1;
                margin-right: 0;
            }

            .launch-image img {
                height: 350px;
                width: auto;
                max-width: 100%;
            }

            .underline1 {
                max-width: 400px;
            }

            .launch-content p {
                font-size: 16px;
                letter-spacing: 0.06em;
            }

            .launch-links {
                gap: 20px;
                margin-top: 10px;
            }

            .launch-links a {
                font-size: 24px;
                width: 16px;
                height: 16px;
                padding: 16px;
                margin-top: 15px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .launch-section {
                padding: 40px 20px;
                gap: 30px;
            }

            .launch-content h2 {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                margin-bottom: 0.8rem;
            }

            .launch-image img {
                height: 260px;
                width: 700px;
                margin-top: 0;
                margin-right: 0;
            }

            .underline1 {
                max-width: 280px;
                height: 3px;
                margin-bottom: 15px;
            }

            .launch-content p {
                font-size: 14px;
                letter-spacing: 0.05em;
                line-height: 1.5;
            }

            .launch-links {
                gap: 15px;
                margin-top: 5px;
            }

            .launch-links a {
                font-size: 20px;
                width: 14px;
                height: 14px;
                padding: 14px;
                margin-top: 10px;
            }

            /* Reduce animation intensity on mobile */
            .launch-links a:hover {
                transform: translateY(-3px);
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 360px) {
            .launch-section {
                padding: 30px 15px;
                gap: 25px;
            }

            .launch-content h2 {
                font-size: clamp(1.5rem, 8vw, 2rem);
            }

            .launch-image img {
                height: 240px;
            }

            .underline1 {
                max-width: 240px;
            }

            .launch-content p {
                font-size: 13px;
            }

            .launch-links {
                gap: 12px;
            }

            .launch-links a {
                font-size: 18px;
                width: 12px;
                height: 12px;
                padding: 12px;
            }
        }

        /* Animation definitions (if not already defined) */
        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInright {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /*==================
            ABOUT SECTION
          ====================*/
        .about-section {
            padding: 20px;
            background-color: #000000;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cpath fill='%23f3e70b' fill-opacity='0.62' d='M600 325.1v-1.17c-6.5 3.83-13.06 7.64-14.68 8.64-10.6 6.56-18.57 12.56-24.68 19.09-5.58 5.95-12.44 10.06-22.42 14.15-1.45.6-2.96 1.2-4.83 1.9l-4.75 1.82c-9.78 3.75-14.8 6.27-18.98 10.1-4.23 3.88-9.65 6.6-16.77 8.84-1.95.6-3.99 1.17-6.47 1.8l-6.14 1.53c-5.29 1.35-8.3 2.37-10.54 3.78-3.08 1.92-6.63 3.26-12.74 5.03a384.1 384.1 0 0 1-4.82 1.36c-2.04.58-3.6 1.04-5.17 1.52a110.03 110.03 0 0 0-11.2 4.05c-2.7 1.15-5.5 3.93-8.78 8.4a157.68 157.68 0 0 0-6.15 9.2c-5.75 9.07-7.58 11.74-10.24 14.51a50.97 50.97 0 0 1-4.6 4.22c-2.33 1.9-10.39 7.54-11.81 8.74a14.68 14.68 0 0 0-3.67 4.15c-1.24 2.3-1.9 4.57-2.78 8.87-2.17 10.61-3.52 14.81-8.2 22.1-4.07 6.33-6.8 9.88-9.83 12.99-.47.48-.95.96-1.5 1.48l-3.75 3.56c-1.67 1.6-3.18 3.12-4.86 4.9a42.44 42.44 0 0 0-9.89 16.94c-2.5 8.13-2.72 15.47-1.76 27.22.47 5.82.51 6.36.51 8.18 0 10.51.12 17.53.63 25.78.24 4.05.56 7.8.97 11.22h.9c-1.13-9.58-1.5-21.83-1.5-37 0-1.86-.04-2.4-.52-8.26-.94-11.63-.72-18.87 1.73-26.85a41.44 41.44 0 0 1 9.65-16.55c1.67-1.76 3.18-3.27 4.83-4.85.63-.6 3.13-2.96 3.75-3.57a71.6 71.6 0 0 0 1.52-1.5c3.09-3.16 5.86-6.76 9.96-13.15 4.77-7.42 6.15-11.71 8.34-22.44.86-4.21 1.5-6.4 2.68-8.6.68-1.25 1.79-2.48 3.43-3.86 1.38-1.15 9.43-6.8 11.8-8.72 1.71-1.4 3.26-2.81 4.7-4.3 2.72-2.85 4.56-5.54 10.36-14.67a156.9 156.9 0 0 1 6.1-9.15c3.2-4.33 5.9-7.01 8.37-8.07 3.5-1.5 7.06-2.77 11.1-4.02a233.84 233.84 0 0 1 7.6-2.2l2.38-.67c6.19-1.79 9.81-3.16 12.98-5.15 2.14-1.33 5.08-2.33 10.27-3.65l6.14-1.53c2.5-.63 4.55-1.2 6.52-1.82 7.24-2.27 12.79-5.06 17.15-9.05 4.05-3.72 9-6.2 18.66-9.9l4.75-1.82c1.87-.72 3.39-1.31 4.85-1.91 10.1-4.15 17.07-8.32 22.76-14.4 6.05-6.45 13.95-12.4 24.49-18.92 1.56-.96 7.82-4.6 14.15-8.33v-64.58c-4 8.15-8.52 14.85-12.7 17.9-2.51 1.82-5.38 4.02-9.04 6.92a1063.87 1063.87 0 0 0-6.23 4.98l-1.27 1.02a2309.25 2309.25 0 0 1-4.87 3.9c-7.55 6-12.9 10.05-17.61 13.19-3.1 2.06-3.86 2.78-8.06 7.13-5.84 6.07-11.72 8.62-29.15 10.95-11.3 1.5-20.04 4.91-30.75 11.07-1.65.94-7.27 4.27-6.97 4.1-2.7 1.58-4.69 2.69-6.64 3.66-5.63 2.8-10.47 4.17-15.71 4.17-17.13 0-41.44 11.51-51.63 22.83-12.05 13.4-31.42 27.7-45.25 31.16-7.4 1.85-11.85 7.05-14.04 14.69-1.26 4.4-1.58 8.28-1.58 13.82 0 .82.01.98.24 3.63.45 5.18.35 8.72-.77 13.26-1.53 6.2-4.89 12.6-10.59 19.43-13.87 16.65-22.88 46.58-22.88 71.68 0 2.39.02 4.26.06 8.75.12 10.8.1 15.8-.22 21.95-.56 11.18-2.09 20.73-5 29.3h-1.05c2.94-8.56 4.49-18.12 5.05-29.35.31-6.13.34-11.1.22-21.9-.04-4.48-.06-6.36-.06-8.75 0-25.32 9.07-55.47 23.12-72.32 5.6-6.72 8.88-12.99 10.38-19.03 1.09-4.4 1.18-7.85.74-12.93-.23-2.7-.24-2.86-.24-3.72 0-5.62.32-9.57 1.62-14.1 2.28-7.95 6.97-13.44 14.76-15.39 13.6-3.4 32.82-17.59 44.75-30.84C409 360.14 433.58 348.5 451 348.5c5.07 0 9.77-1.33 15.26-4.07 1.93-.96 3.9-2.05 6.58-3.62-.3.18 5.33-3.16 6.98-4.11 10.82-6.21 19.66-9.67 31.11-11.2 17.23-2.3 22.9-4.75 28.57-10.64 4.25-4.41 5.04-5.16 8.22-7.28 4.68-3.11 10.01-7.14 17.55-13.14a1113.33 1113.33 0 0 0 4.86-3.89l1.28-1.02a4668.54 4668.54 0 0 1 6.23-4.98c3.67-2.9 6.55-5.12 9.07-6.95 4.37-3.19 9.16-10.56 13.29-19.4v66.9z'%3E%3C/path%3E%3C/svg%3E");
            background-position: top left;
            background-repeat: repeat;
        }

        .about-section-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-h1 {
            font-size: 2.5rem;
            color: #CF7E04;
            text-align: center;
            margin-bottom: 0;
            padding-top: 60px;
            text-shadow: #CF7E04 0 0 8px;
        }

        .about-content {
            flex: 1;
            position: relative;
            z-index: 2;
            min-width: 300px;
            width: 100%;
            max-width: 600px;
        }

        .about-content-h2 {
            font-size: 36px;
            color: #CF7E04;
            margin-top: 0;
            animation: slideInFromTop 2s forwards;
        }

        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-content-p {
            font-size: 1.2rem;
            color: #ffffff;
            line-height: 1.8;
            margin-top: 30px;
            max-width: 600px;
            animation: slideInright 2s forwards;
        }

        .about-content-p2 {
            margin-top: 8px;
            font-size: 1.2rem;
            color: #ffffff;
            line-height: 1.8;
            margin-top: 10px;
            max-width: 600px;
            animation: slideInright 2s forwards;
        }

        @keyframes slideInright {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-image-container {
            flex: 1;
            position: relative;
            z-index: 2;
            min-width: 300px;
            max-width: 500px;
        }

        .about-image {
            width: 100%;
            height: auto;
            max-height: 500px;
            border-radius: 15px;
            object-fit: cover;
            animation: slideInLeft 2s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .category {
            text-align: center;
        }

        .category-icon {
            width: 100px;
            height: 100px;
            background: #CF7E04;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.8em;
            cursor: pointer;
            transition: all 0.3s;
            color: #000;
        }

        .category-icon:hover {
            transform: rotate(10deg) scale(1.1);
            background: #CF7E04;
        }

        .category-icon i {
            font-size: 60px;
            pointer-events: none;
        }

        .category h4 {
            margin-top: 10px;
            font-size: 20px;
            color: #CF7E04;
        }

        .category p {
            font-size: 16px;
            color: #ccc;
            margin-top: 8px;
        }

        /* Tablet Landscape */
        @media (max-width: 1024px) {
            .about-section-container {
                padding: 25px;
                gap: 30px;
            }

            .about-content-h2 {
                font-size: 32px;
                margin-top: 40px;
            }

            .about-content-p,
            .about-content-p2 {
                font-size: 1.1rem;
                margin-top: 30px;
            }

            .about-image {
                max-height: 450px;
                margin-left: 0;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        /* Tablet Portrait */
        @media (max-width: 768px) {
            .about-h1 {
                font-size: 2rem;
                padding-top: 30px;
            }

            .about-section-container {
                flex-direction: column;
                padding: 20px;
                gap: 40px;
            }

            .about-content {
                min-width: auto;
                width: 100%;
                max-width: 100%;
                text-align: center;
            }

            .about-content-h2 {
                font-size: 28px;
                margin-top: 20px;
            }

            .about-content-p {
                margin-top: 20px;
                font-size: 1.05rem;
            }

            .about-content-p2 {
                margin-top: 10px;
                font-size: 1.05rem;
            }

            .about-image-container {
                min-width: auto;
                width: 100%;
                max-width: 100%;
            }

            .about-image {
                max-height: 400px;
                margin-left: 0;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 15px;
            }

            .category-icon {
                width: 85px;
                height: 85px;
            }

            .category-icon i {
                font-size: 50px;
            }

            .category h4 {
                font-size: 18px;
            }

            .category p {
                font-size: 15px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .about-section {
                padding: 15px;
            }

            .about-h1 {
                font-size: 1.75rem;
                padding-top: 20px;
                margin-bottom: 5px;
            }

            .about-section-container {
                padding: 15px;
                gap: 30px;
            }

            .about-content-h2 {
                font-size: 24px;
                margin-top: 15px;
            }

            .about-content-p {
                margin-top: 15px;
                font-size: 1rem;
                line-height: 1.6;
            }

            .about-content-p2 {
                margin-top: 8px;
                font-size: 1rem;
                line-height: 1.6;
            }

            .about-image {
                max-height: 300px;
                border-radius: 10px;
            }

            .categories {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px 10px;
                margin-top: 20px;
            }

            .category-icon {
                width: 80px;
                height: 80px;
            }

            .category-icon i {
                font-size: 45px;
            }

            .category h4 {
                font-size: 17px;
                margin-top: 8px;
            }

            .category p {
                font-size: 14px;
            }

            /* Reduce animation intensity on mobile */
            @keyframes slideInFromTop {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes slideInright {
                from {
                    opacity: 0;
                    transform: translateX(30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes slideInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 360px) {
            .about-h1 {
                font-size: 1.5rem;
            }

            .about-content-h2 {
                font-size: 22px;
            }

            .about-content-p,
            .about-content-p2 {
                font-size: 0.95rem;
            }

            .about-image {
                max-height: 250px;
            }

            .categories {
                gap: 15px;
            }

            .category-icon {
                width: 70px;
                height: 70px;
            }

            .category-icon i {
                font-size: 40px;
            }

            .category h4 {
                font-size: 16px;
            }

            .category p {
                font-size: 13px;
            }
        }

        /*=======================
            VISION & MISSION     
        =========================*/

        .vision-mission {
            position: relative;
            background-image: url("images/pod-img1.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 80px 0;
            color: #fff;
            text-align: center;
            overflow: hidden;
        }

        .vision-mission::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 0;
        }

        /* Keep content above overlay */
        .vision-mission .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vm-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .vm-tag {
            display: inline-block;
            font-size: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: #CF7E04;
            color: #000;
            padding: 6px 12px;
            margin-bottom: 18px;
            font-weight: 600;
        }


        .vm-header p {
            color: #ccc;
            font-size: 20px;
            line-height: 1.5;
            font-weight: 500;
        }


        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }


        .vm-card {
            background: #CF7E04;
            padding: 40px;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            overflow: hidden;
            opacity: 0;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #000);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s ease;
        }

        .vm-card:hover::before {
            transform: scaleX(1);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }


        .vm-icon {
            width: 80px;
            height: 80px;
            font-size: 40px;
            color: #000;
            margin-bottom: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #000,) !important;
            transition: all 0.4s ease;
        }

        .vm-card:hover .vm-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .vm-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #533d02, #212021);
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        .vm-icon i {
            font-size: 50px;
            color: white;
            z-index: 1;
        }


         .vm-card h3 {
            color: #000;
            font-size: clamp(1.5rem, 3vw, 20px);
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
        }

        .vm-card p {
            color: #000;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            line-height: 1.8;
            text-align: center;
        }


         /* Responsive Design */
        @media (max-width: 768px) {
            .vision-mission {
                padding: 40px 0;
            }

            .vm-tag {
                font-size: 30px;
            }

            .vm-header {
                margin-bottom: 40px;
            }

            .vm-grid {
                gap: 30px;
                margin-top: 40px;
            }

            .vm-card {
                padding: 30px 20px;
            }

            .vm-icon {
                width: 70px;
                height: 70px;
            }

            .vm-icon i {
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .vm-tag {
                font-size: 20px;
                padding: 6px 18px;
            }

            .vm-card {
                padding: 25px 18px;
            }

            .vm-grid {
                gap: 20px;
            }
        }

        /* Hover effect for better interaction */
        .vm-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .vm-card:hover::after {
            width: 300px;
            height: 300px;
        }

        .vm-card > * {
            position: relative;
            z-index: 1;
        }

        /*======================
                WHY WORLDVOICE
        ========================*/
        .why-worldvoice {  
            padding: 40px 20px;
            color: #000;
            background-color: #CF7E04;
            align-items: center;
            width: 100%;
        }

        .why-worldvoice-content {
            display: flex;
            text-align: left;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-h1 {
            font-size: 18px;
            color: #000;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: #000 0 0 2px;
            width: 100%;
        }

        .underline {
            width: 800px;
            height: 4px;
            background-color: #000;
            margin: 10px auto 30px;
            border-radius: 15px;
        }

        .why-item {
            padding: 20px;
        }

        .why-icon {
            font-size: 40px;
            color: #000;
            margin-bottom: 15px;
        }
        .why-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #ffffff;
            font-weight: bold;
        }

        .why-item p {
            font-size: 18px;
            color: #333;
            line-height: 1.2;
            font-weight: 500;
        }

        .new-episode-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 70px;
            text-align: center;
            background-color: #000000;
            width: 60%;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 -2px 2px rgba(24, 24, 24, 0.2), 0 0 5px rgba(24, 24, 24, 0.2); 
            padding: 40px 10px;
            border-radius: 10px;
            border-top-left-radius: 100px;
            border-bottom-right-radius: 100px;
            transition: box-shadow 0.3s ease, background 0.3s ease
        }

        .new-episode-container:hover {
            box-shadow: 0 -5px 10px rgba(24, 24, 24, 0.2), 5px 5px 10px rgba(24, 24, 24, 0.2); 
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }

        .new-episode h2 {
            font-size: 35px;
            color: #CF7E04;
            text-shadow: #CF7E04 0 0 10px;
        }

    
        .new-episode p {
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
            padding: 20px;
            color: #ffffff;
            font-size: 18px;
            letter-spacing: .5px;
        }

        .new-episode-btn {
            display: inline-flex;
            align-items: center;
            color: #CF7E04;
            font-size: 18px;
            font-weight: 600;
            border: 2px solid #CF7E04;
            background: transparent;
            gap: 10px; 
            margin-top: 30px;
            padding: 12px 20px;
            text-decoration: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.6s ease;
        }

        .new-episode-btn:hover {
            box-shadow: 0 0 20px rgba(240, 223, 71, 0.904);
            transform: translateY(-2px); 
            transition: all 0.6s ease;
        }
        

        /*==================
          Stats Section
          ===================*/
        .stats-section {
            position: relative;
            padding: 90px 5%;
            background: url("images/soundwave2.jpg") center/cover no-repeat;
            overflow: hidden;
            color: #fff;
            min-height: 350px;
            height: auto;
        }

        /* Dark overlay */
        .stats-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(2, 8, 23, 0.95),
                rgba(2, 8, 23, 0.85),
                rgba(2, 8, 23, 0.95)
            );
            z-index: 1;
            opacity: 0.95;
        }

        .stats-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
            margin-top: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-card h2 {
            font-size: 32px;
            font-weight: 800;
            margin: 20px 0 6px;
            color: #ffffff;
        }

        .stat-card p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Glassmorphism Icon Container */
        .icon-wrap {
            width: 90px;
            height: 90px;
            margin: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #CF7E04;
            border: 2px dashed #000;
        }

        .icon-wrap img {
            width: 60px;
            height: 60px;
        }

        /* Floating animation */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0); }
        }

        .float-1 { animation: float 5s ease-in-out infinite; }
        .float-2 { animation: float 6s ease-in-out infinite; }
        .float-3 { animation: float 5.5s ease-in-out infinite; }
        .float-4 { animation: float 6.5s ease-in-out infinite; }

        /* Tablet Responsive */
        @media (max-width: 992px) {
            .stats-section {
                padding: 70px 5%;
                min-height: 400px;
            }

            .stats-container {
                gap: 30px;
                margin-top: 15px;
            }

            .stat-card h2 {
                font-size: 28px;
            }

            .stat-card p {
                font-size: 16px;
            }

            .icon-wrap {
                width: 80px;
                height: 80px;
            }

            .icon-wrap img {
                width: 50px;
                height: 50px;
            }
        }

        /* Medium Tablet - 2 Column Layout */
        @media (max-width: 768px) {
            .stats-section {
                padding: 60px 5%;
                min-height: auto;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
                margin-top: 10px;
            }

            .stat-card h2 {
                font-size: 26px;
                margin: 15px 0 5px;
            }

            .stat-card p {
                font-size: 15px;
            }

            .icon-wrap {
                width: 75px;
                height: 75px;
            }

            .icon-wrap img {
                width: 45px;
                height: 45px;
            }
        }

        /* Mobile - Single Column Layout */
        @media (max-width: 500px) {
            .stats-section {
                padding: 50px 20px;
                background-position: center;
                background-attachment: scroll;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 35px;
                margin-top: 0;
            }

            .stat-card {
                padding: 10px;
            }

            .stat-card h2 {
                font-size: 32px;
                margin: 15px 0 5px;
            }

            .stat-card p {
                font-size: 16px;
                opacity: 0.95;
            }

            .icon-wrap {
                width: 80px;
                height: 80px;
            }

            .icon-wrap img {
                width: 50px;
                height: 50px;
            }

            /* Reduce floating animation on mobile for better performance */
            @keyframes float {
                0% { transform: translateY(0); }
                50% { transform: translateY(-8px); }
                100% { transform: translateY(0); }
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 360px) {
            .stats-section {
                padding: 40px 15px;
            }

            .stats-container {
                gap: 30px;
            }

            .stat-card h2 {
                font-size: 28px;
            }

            .stat-card p {
                font-size: 14px;
            }

            .icon-wrap {
                width: 70px;
                height: 70px;
            }

            .icon-wrap img {
                width: 40px;
                height: 40px;
            }
        }
        /*====================
        Testimonial Section 
        ======================*/
    .testimonial-area {
        position: relative;
        overflow: hidden;
        padding: 60px 0;
        background-color: #1b1b1b;
    }

    .testimonial-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .testimonial-bg img {
        position: absolute;
        top: 0;
        right: 0;
        width: 36%;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        margin-right: 278px;
        position: relative;
        z-index: 1;
    }

    .site-heading {
        position: relative;
        margin-bottom: 50px;
        color: white;
        z-index: 1;
    }

    .site-title-tagline {
        position: relative;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 18px;
        font-weight: 700;
        padding: 5px 2px 5px 5px;
        color: white;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 10px;
        margin-left: 100px;
    }

    .site-title-tagline::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background: #CF7E04;
        height: 50%;
        width: 100%;
        z-index: -1;
        opacity: 0.95;
    }

    .site-title-tagline i {
        line-height: 0;
        font-size: 20px;
    }

    .site-title {
        font-weight: 600;
        text-transform: capitalize;
        font-size: 50px;
        color: var(--color-dark);
        margin-top: 10px;
        margin-bottom: 0;
        position: relative;
        margin-left: 100px;
    }

    .testimonial-slider {
        max-width: 1000px;
        margin: 0 auto;
    }

    .testimonial-item {
        background: #CF7E04;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        position: relative;
        height: 100%;
    }

    .testimonial-item::before {
        content: "";
        position: absolute;
        left: 40px;
        right: 40px;
        bottom: -6px;
        height: 6px;
        background: #CF7E04;
        border-radius: 0 0 10px 10px;
    }

    .testimonial-item::after {
        content: "";
        position: absolute;
        top: 15px;
        right: 15px;
        height: 50px;
        width: 50px;
        border-top: 3px solid #000;
        border-right: 3px solid #000;
        border-top-right-radius: 15px;
        transition: all 0.6s ease;
    }

    .testimonial-item:hover::after {
        height: 70px;
        width: 70px;
    }

    .testimonial-rate {
        margin-bottom: 20px;
    }

    .testimonial-rate i {
        color: white;
        margin-right: 5px;
    }

    .testimonial-quote {
        margin-bottom: 30px;
    }

    .testimonial-quote p {
        color: #000;
        line-height: 1.8;
        font-size: 16px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #000;
    }

    .testimonial-author .author-info {
        margin: 15px 0 10px 0;
    }

    .author-img .author-img {
        width: 75px;
        padding: 4px;
        border-radius: 50px;
        border: 2px solid #000;
    }

    .testimonial-author .author-img img {
        border-radius: 50%;
        width: 60px;
        height: 58px
    }

    .testimonial-author .author-info h4 {
        font-size: 20px;
        color: #000;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .author-info p {
        margin: 5px 0 0;
        color: #000;
        font-size: 14px;
    }

    .quote-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        opacity: 0.1;
        width: 60px;
    }

    .quote-icon img {
        width: 100%;
    }

    .swiper-pagination-bullet-active {
        background: #000;
    }

    /* Tablet Responsive */
    @media (max-width: 992px) {
        .container {
            margin-right: 0;
            padding: 0 30px;
        }

        .site-title-tagline,
        .site-title {
            margin-left: 0;
        }

        .site-title {
            font-size: 40px;
        }

        .testimonial-bg img {
            width: 50%;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .testimonial-area {
            padding: 40px 0;
        }

        .container {
            padding: 0 20px;
            margin-right: 0;
        }

        .site-heading {
            margin-bottom: 30px;
            margin-left: 30px;
        }

        .site-title-tagline {
            font-size: 14px;
            letter-spacing: 2px;
            margin-left: 0;
        }

        .site-title {
            font-size: 28px;
            margin-left: 0;
        }

        .testimonial-bg img {
            display: none;
        }

        .testimonial-item {
            padding: 25px;
            width: 100%;
        }

        .testimonial-item::before {
            left: 25px;
            right: 25px;
        }

        .testimonial-item::after {
            top: 10px;
            right: 10px;
            height: 35px;
            width: 35px;
        }

        .testimonial-item:hover::after {
            height: 45px;
            width: 45px;
        }

        .testimonial-quote p {
            font-size: 15px;
            line-height: 1.6;
        }

        .testimonial-author {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .testimonial-author .author-info h4 {
            font-size: 18px;
        }

        .quote-icon {
            width: 40px;
            top: 15px;
            right: 15px;
        }
    }

    /* Small Mobile Responsive */
    @media (max-width: 480px) {
        .testimonial-area {
            padding: 30px 0;
        }

        .container {
            padding: 0 15px;
        }

        .site-title-tagline {
            font-size: 12px;
        }

        .site-title {
            font-size: 24px;
        }

        .testimonial-item {
            padding: 20px;
        }

        .testimonial-item::before {
            left: 20px;
            right: 20px;
        }

        .testimonial-quote p {
            font-size: 14px;
        }

        .testimonial-author .author-img img {
            width: 50px;
        }

        .testimonial-author .author-info h4 {
            font-size: 16px;
        }

        .author-info p {
            font-size: 13px;
        }
    }



    /*=============================
            Call to Action
    ===============================*/
        .cta {
            position: relative;
            height: auto;
            width: auto;
            overflow: hidden;
            text-align: center;
            padding: 60px 20px;
        }

        .cta-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .cta-tag {
            display: inline-block;
            font-size: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: #000;
            color: #ffffff;
            padding: 6px 12px;
            margin-bottom: 15px;
            font-weight: 600;
        }


        .cta-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            inset: 0;
            filter: brightness(0.5);
            z-index: -1;
            margin: auto;
            overflow: hidden;
            background: linear-gradient(315deg, rgb(0, 0, 0) 3%, rgb(129, 117, 3) 38%, rgb(143, 129, 2) 68%, rgb(8, 8, 8) 98%);
            animation: gradient 15s ease infinite;
            background-size: 400% 400%;
            background-attachment: fixed;
        }

        
                
        @keyframes gradient {
            0% {
                background-position: 0% 0%;
            }
            50% {
                background-position: 100% 100%;
            }
            100% {
                background-position: 0% 0%;
            }
        }

        .wave {
            background: rgb(255 255 255 / 25%);
            border-radius: 1000% 1000% 0 0;
            position: fixed;
            width: auto;
            height: auto; 
            animation: wave 10s -3s linear infinite;
            transform: translate3d(0, 0, 0);
            opacity: 0.8;
            bottom: 0;
            left: 0;
            z-index: -1;
        }

        .wave:nth-of-type(2) {
            bottom: -1.25em;
            animation: wave 18s linear reverse infinite;
            opacity: 0.8;
        }

        .wave:nth-of-type(3) {
            bottom: -2.5em;
            animation: wave 20s -1s reverse infinite;
            opacity: 0.9;
        }

        @keyframes wave {
            2% {
                transform: translateX(1);
            }
            25% {
                transform: translateX(-25%);
            }

            50% {
                transform: translateX(-50%);
            }

            75% {
                transform: translateX(-25%);
            }

            100% {
                transform: translateX(1);
            }
        }

       
        .cta-cards-container {
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
            max-width: 1400px;
            width: 100%;
            height: auto;
            min-height: 200px;
        }

        /* Tablet - 2 cards per row */
        @media (max-width: 1024px) {
            .cta-cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                max-width: 900px;
            }
        }

        /* Mobile - 1 card per row */
        @media (max-width: 600px) {
            .cta-cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }
        }

        .feature-card {
            position: relative;
            padding: 40px 35px;
            border-radius: 20px;
            text-align: left;
            color: #fff;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }


        .feature-card.blue {
            background: linear-gradient(135deg, #CF7E04, #CF7E04);
        }

     
        .feature-card.dark {
            background: linear-gradient(135deg, #000814, #000814);
        }

      
        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0,0,0,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .icon-circle i {
            font-size: 30px;
            color: #fff;
        }

        /* Text */
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Number */
        .card-number {
            position: absolute;
            bottom: 20px;
            left: 30px;
            font-size: 60px;
            font-weight: 700;
            opacity: 0.2;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .feature-container {
                grid-template-columns: 2fr;
            }

            .feature-card {
                padding: 30px;
            }
        }


        .cta h2 {
            font-size: 2.5rem;
            color: #CF7E04;
            margin-bottom: 20px;
            text-shadow: #CF7E04 0 0 8px;
        }

        .cta p {
            font-size: 20px;
            color: #ffffff;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.2;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-buttons i {
            margin-left: 8px;
            font-size: 20px;
        }

        .hero-btn1 i {
            margin-right: 8px;
            font-size: 20px;
        }
        .hero-btn2 i {
            margin-right: 8px;
            font-size: 20px;
        }



        /*========================
            GALLERY SECTION  
         =========================*/

        .gallery-section {
            padding: 40px 20px;
            min-width: 1400px;
            margin: auto;
            background-color: #1b1b1b;
        }

        .gallery-section h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 32px;
            color: #CF7E04;
        }

        .slider-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider {
            overflow: hidden;
            width: 100%;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slider-track img {
            height: 300px;
            width: 300px;
            padding: 15px;
            cursor: pointer;
            border-radius: 40px;
            transition: transform 0.3s;
        }

        .slider-track img:hover {
            transform: scale(1.05);
        }

        /* Navigation buttons */
         /*
        .slider-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            padding: 5px;
        }
            *\
      
        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .lightbox img {
            width: 500px;
            height: 90%;
            border-radius: 10px;
        }

        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            cursor: pointer;
        }

        .see-more-btn {
            display: block;
            width: fit-content;
            margin: 30px auto 0;
            padding: 10px 20px;
            font-size: 18px;
            font-weight: 600;
            background-color: #CF7E04;
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none; 
            transition: background-color 0.5s;
            
        }

        .see-more-btn:hover {
            background-color: transparent;   
            color: #CF7E04;
            border-radius: 2px;
            border-color: #CF7E04;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .slider {
            overflow: hidden;
            max-width: 100%;
        }

        .slider-track {
            display: flex;
            will-change: transform;
        }
        .slider-track img {
            flex-shrink: 0;
        }


        /* ── RESPONSIVE DESIGN ── */

        @media (max-width: 768px) {
            .gallery-section {
                min-width: unset;
                width: 100%;
                padding: 30px 15px;
            }

            .slider-track img {
                width: 220px;
                height: 220px;
                border-radius: 25px;
                padding: 10px;
            }

            .gallery-section h2 {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .gallery-section {
                min-width: unset;
                width: 100%;
                padding: 25px 10px;
            }

            .slider-track img {
                width: 150px;
                height: 150px;
                border-radius: 18px;
                padding: 8px;
            }

            .gallery-section h2 {
                font-size: 22px;
            }

            .lightbox img {
                width: 95%;
                height: auto;
                max-height: 90vh;
            }

            .lightbox .close {
                top: 12px;
                right: 16px;
                font-size: 28px;
            }

            .see-more-btn {
                font-size: 15px;
                padding: 8px 16px;
            }
        }

                
        /*========================
            CONTACT SECTION STYLES 
         =========================*/

         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-section {
            padding: 90px 0;
            background: #111;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-tag {
            display: inline-block;
            background: #CF7E04;
            color: #000;
            padding: 8px 20px;
            letter-spacing: 3px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-radius: 4px;
            position: relative;
        }

        .contact-tag::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: #CF7E04;
            opacity: 0.3;
        }

        .contact-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .contact-header p {
            color: #bbb;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.7;
        }

        /* Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            position: relative;
            z-index: 1;
            margin-bottom: 50px;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            background: #1b1b1b;
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            border-color: #CF7E04;
            box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .info-item:nth-child(1) { animation-delay: 0.2s; }
        .info-item:nth-child(2) { animation-delay: 0.3s; }
        .info-item:nth-child(3) { animation-delay: 0.4s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-item:hover {
            background: #222;
            border-color: #CF7E04;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
        }

        .info-item i {
            font-size: 24px;
            color: #CF7E04;
            width: 50px;
            height: 50px;
            background: rgba(255, 165, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .info-item:hover i {
            background: #CF7E04;
            color: #000;
            transform: rotate(360deg);
        }

        .info-item div {
            flex: 1;
        }

        .info-item h4 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 600;
            color: #fff;
        }

        .info-item p {
            color: #ccc;
            font-size: 15px;
            line-height: 1.6;
        }

        .info-item a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .info-item a:hover {
            color: #CF7E04;
        }

        /* Contact Form */
        .contact-form {
            background: #1b1b1b;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(255, 165, 0, 0.2);
            border: 1px solid #2a2a2a;
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.6s ease 0.3s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #aaa;
            font-size: 14px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 8px;
            border: 2px solid #2a2a2a;
            outline: none;
            background: #111;
            color: #fff;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #CF7E04;
            background: #1a1a1a;
            box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-btn {
            width: 100%;
            padding: 16px;
            background: #CF7E04;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .contact-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;
        }

        .contact-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 165, 0, 0.5);
        }

        .contact-btn:active {
            transform: translateY(-1px);
        }

        .contact-btn span {
            position: relative;
            z-index: 1;
        }

        /* Map Section */
        .contact-map {
            margin-top: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 2px solid #2a2a2a;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.6s ease 0.6s forwards;
            width: 100%;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-map:hover {
            border-color: #CF7E04;
            box-shadow: 0 25px 50px rgba(255, 165, 0, 0.3);
        }

        .contact-map iframe {
            width: 100%;
            height: 350px;
            border: none;
            display: block;
            filter: grayscale(0.3);
            transition: filter 0.3s ease;
        }

        .contact-map:hover iframe {
            filter: grayscale(0);
        }

        /* Success Message */
        .form-message {
            margin-top: 15px;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            display: none;
        }

        .form-message.success {
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            border: 1px solid #22c55e;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border: 1px solid #ef4444;
        }

    
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 40px;
            }

            .contact-section {
                padding: 60px 0;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .info-item {
                padding: 20px;
                align-items: center;
            }
        }

        @media (max-width: 600px) {
            .contact-header {
                margin-bottom: 40px;
            }

            .contact-tag {
                font-size: 11px;
                padding: 6px 16px;
            }

            .info-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .contact-form {
                padding: 25px 20px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px 14px;
                font-size: 14px;
            }

            .contact-map iframe {
                height: 280px;
            }
        }

    /*=============================
            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;
            }
        }



         /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #000000 0%, #f8b703 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(106, 17, 203, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(106, 17, 203, 0.4);
        }

        /* Progress Circle */
        .scroll-progress {
            position: fixed;
            bottom: 30px;
            right: 110px;
            width: 60px;
            height: 60px;
            z-index: 1000;
        }

        .scroll-progress-circle {
            transform: rotate(-90deg);
        }

        .scroll-progress-background {
            fill: none;
            stroke: #e0e0e0;
            stroke-width: 4;
        }

        .scroll-progress-bar {
            fill: none;
            stroke: #d1d5db;
            stroke-width: 4;
            stroke-linecap: round;
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            transition: stroke-dashoffset 0.3s ease;
        }

        .scroll-progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            font-weight: bold;
            color: #d1d5db;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .scroll-progress {
                right: 90px;
                bottom: 110px;
            }
            
            .scroll-top {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .content-section {
                padding: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .scroll-progress {
                display: none;
            }
        }



        /*==================================
             Responsive Design
          ===================================*/

        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                position: static;
            }

            .hero-content {
                min-width: 400px;
                padding: 60px 40px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                min-width: 500px;
                height: auto;
            }

            .about-image {
                height: 400px;
                margin-left: 40px;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-worldvoice-content {
                flex-wrap: wrap;
            }

            .new-episode-container {
                width: 80%;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .cta p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
                margin-left: 0;
                margin-right: 0;
                border-radius: 0;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                min-height: 70vh;
                padding: 0 20px;
            }

            .hero-content {
                min-width: 100%;
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 2rem;
                margin-top: 60px;
            }

            .hero p {
                font-size: 1rem;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                margin-top: 40px;
            }

            .hero-btn1,
            .hero-btn2 {
                width: 100%;
                text-align: center;
            }

            .about-section-container {
                flex-direction: column;
                padding: 20px;
            }

            .about-content {
                min-width: 100%;
                height: auto;
                margin-bottom: 30px;
            }

            .about-content-h2 {
                font-size: 24px;
            }

            .about-content-p,
            .about-content-p2 {
                font-size: 1rem;
                max-width: 100%;
            }

            .about-image {
                height: 300px;
                margin-left: 0;
                width: 100%;
            }

            .about-image-container {
                width: 100%;
            }

            .about-h1 {
                font-size: 2rem;
            }

            .categories {
                grid-template-columns: 1fr;
                padding: 10px;
            }

            .category-icon {
                width: 80px;
                height: 80px;
                font-size: 1.5em;
            }

            .category-icon i {
                font-size: 40px;
            }

            .category h4 {
                font-size: 18px;
            }

            .category p {
                font-size: 14px;
            }

            .why-worldvoice {
                padding: 30px 10px;
            }

            .why-h1 {
                font-size: 14px !important;
                padding: 15px;
            }

            .underline {
                width: 90%;
            }

            .why-item {
                padding: 15px;
            }

            .why-item h3 {
                font-size: 16px;
            }

            .why-item p {
                font-size: 14px;
            }

            .new-episode-container {
                width: 100%;
                padding: 30px 15px;
                border-radius: 10px;
            }

            .new-episode h2 {
                font-size: 24px;
            }

            .new-episode p {
                max-width: 100%;
                font-size: 16px;
            }

            .new-episode-btn {
                font-size: 16px;
                padding: 10px 15px;
            }

            .cta {
                padding: 40px 15px;
            }

            .cta h2 {
                font-size: 1.5rem;
            }

            .cta p {
                font-size: 16px;
                max-width: 100%;
            }

            .cta-buttons {
                gap: 10px;
            }

            .wave {
                height: 8em;
            }

            .main-content {
                padding: 80px 10px 10px;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .about-h1 {
                font-size: 1.5rem;
            }

            .about-content-h2 {
                font-size: 20px;
            }

            .about-image {
                height: 250px;
            }

            .categories {
                gap: 10px;
            }

            .category-icon {
                width: 70px;
                height: 70px;
            }

            .new-episode h2 {
                font-size: 20px;
            }

            .cta h2 {
                font-size: 1.2rem;
            }

            .cta p {
                font-size: 14px;
            }

            .navbar {
                padding: 10px 15px;
            }

            .nav-logo {
                font-size: 1.2em;
            }
        }

     
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                position: static;
            }

            .categories {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 40px 30px;
            }

            .hero::before {
                width: 100%;
            }

            .hero-content h1 {
                font-size: 2em;

            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .trending-grid {
                grid-template-columns: 1fr;
            }
        }

        

