
        :root {
            --primary: #c74a4a;
            --secondary: #0a0114;
            --accent: #25d366;
            --light: #f8f9fa;
            --dark: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Header and Navbar */
        .sub-header {
            background: linear-gradient(135deg, var(--secondary) 0%, #2a0a4a 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar {
            background-color: transparent !important;
            padding: 10px 0;
        }
        
        .navbar .nav-link {
            color: white;
            font-weight: 500;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar .nav-link:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .navbar .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 15px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .navbar .nav-link:hover:after {
            width: calc(100% - 30px);
        }
        
        .navbar-brand img {
            height: 80px;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 70vh;
            background: linear-gradient(rgba(10, 1, 20, 0.7), rgba(10, 1, 20, 0.9)), url('https://images.unsplash.com/photo-1589998059171-988d887df646?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2076&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 20px;
            z-index: 2;
        }
        
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Typing Animation */
        .typing-container {
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
            margin: 30px auto;
            max-width: 800px;
            backdrop-filter: blur(10px);
        }
        
        .typing-text {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #typing-output {
            color: var(--primary);
            font-weight: 800;
            text-shadow: 0 0 10px rgba(199, 74, 74, 0.5);
        }
        
        .cursor {
            display: inline-block;
            width: 3px;
            height: 2rem;
            background-color: white;
            margin-left: 5px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Carousel */
        .media-carousel {
            margin-top: -100px;
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .carousel_img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            background: var(--primary);
        }
        
        /* Marquee */
        .marquee {
            background: linear-gradient(to right, var(--secondary), var(--primary));
            color: white;
            padding: 15px 0;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 30px 0;
            overflow: hidden;
        }
        
        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* Radio Player */
        .radio-player {
            background: linear-gradient(135deg, var(--secondary) 0%, #2a0a4a 100%);
            padding: 40px 0;
            color: white;
            text-align: center;
        }
        
        .player-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .player-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .player-title i {
            color: var(--primary);
        }
        
        /* Media Services */
        .services-section {
            padding: 60px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .service-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .service-body {
            padding: 25px;
            text-align: center;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Location Map */
        .location-section {
            padding: 60px 0;
            background: linear-gradient(rgba(10, 1, 20, 0.05), rgba(10, 1, 20, 0.05));
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            height: 500px;
        }
        
        /* Social Media */
        .social-section {
            padding: 50px 0;
            background: var(--light);
            text-align: center;
        }
        
        .social-title {
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--primary);
        }
        
        .social-icon.facebook:hover { background: #3b5998; }
        .social-icon.twitter:hover { background: #1da1f2; }
        .social-icon.instagram:hover { background: #e1306c; }
        .social-icon.youtube:hover { background: #ff0000; }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animated {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .typing-text {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: 60vh;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .typing-text {
                font-size: 1.5rem;
            }
            
            .carousel_img {
                height: 350px;
            }
            
            .navbar-brand img {
                height: 70px;
            }
            
            .service-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .typing-text {
                font-size: 1.2rem;
            }
            
            .carousel_img {
                height: 250px;
            }
            
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
    