:root {
     --primary-color: #0d6efd;
     --secondary-color: #6c757d;
     --accent-color: #ffc107;
     --dark-color: #121212;
     --light-color: #f8f9fa;
}
 body {
     font-family: 'Montserrat', 'Segoe UI', sans-serif;
     background-color: #0a0a0a;
     color: #f0f0f0;
     overflow-x: hidden;
}
/* Navbar */
 .navbar {
     transition: all 0.4s ease;
     padding: 1.5rem 0;
     position: fixed;
     width: 100%;
     z-index: 1000;
}
 .navbar.scrolled {
     background: rgba(10, 10, 10, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
     padding: 0.8rem 0;
}
 .navbar-brand {
     font-weight: 800;
     font-size: 1.8rem;
     letter-spacing: 1px;
     opacity: 0;
     transition: opacity 0.3s ease;
}
 .navbar.scrolled .navbar-brand {
     opacity: 1;
}
 .nav-link {
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
     margin: 0 0.7rem;
     position: relative;
     color: #aaa !important;
     transition: color 0.3s ease;
}
 .nav-link:hover {
     color: var(--primary-color) !important;
}
 .nav-link:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
}
 .nav-link:hover:after {
     width: 100%;
}
/* Hero Section */
 .hero {
     height: 100vh;
     background: linear-gradient(135deg, rgba(128, 128, 128, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%), url('https://ventraradio.com/imgs/mixer.jpg') center/cover no-repeat;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .hero:before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle, transparent 20%, #0a0a0a 90%);
     z-index: -1;
}
 .hero-logo {
     width: 350px;
     height: 350px;
    /* background: linear-gradient(135deg, var(--primary-color), #0d47a1);
     border-radius: 50%;
     box-shadow: 0 0 40px rgba(13, 110, 253, 0.4);
     border: 3px solid rgba(255, 255, 255, 0.1);
     */
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 2rem;
     position: relative;
     overflow: hidden;
}
/* .hero-logo:after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transform: rotate(45deg);
     animation: shine 3s infinite;
}
 */
 @keyframes shine {
     0% {
         transform: rotate(45deg) translateX(-100%);
    }
     100% {
         transform: rotate(45deg) translateX(100%);
    }
}
 .hero-logo i {
     font-size: 7rem;
     color: white;
     z-index: 2;
}
 .hero h1 {
     font-weight: 800;
     font-size: 4.5rem;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 3px;
     text-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
     background: linear-gradient(to right, #fff, #aaa);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .hero p {
     font-size: 1.4rem;
     max-width: 800px;
     margin: 0 auto 2.5rem;
     color: #ccc;
     font-weight: 300;
}
/* Section Styling */
 section {
     padding: 6rem 0;
}
 .section-title {
     text-align: center;
     margin-bottom: 4rem;
     position: relative;
}
 .section-title h2 {
     font-weight: 800;
     font-size: 2.5rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     position: relative;
     display: inline-block;
     padding-bottom: 1rem;
}
 .section-title h2:after {
     content: '';
     position: absolute;
     width: 70px;
     height: 4px;
     background: var(--primary-color);
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}
 .section-title p {
     color: #aaa;
     max-width: 600px;
     margin: 1rem auto 0;
     font-size: 1.1rem;
}
/* Stations Section */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.station-card {
    /* background: rgba(30, 30, 30, 0.7); */
    background: #cdcdcd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}
.station-logo img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.station-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(13, 110, 253, 0.3);
}
.station-header {
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.station-header .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.7em;
}
.station-content {
    padding: 1.2rem;
}
.station-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.station-content ul {
    padding-left: 1rem;
    margin-bottom: 0;
}
.station-content li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

/* Responsive for 3 columns */
@media (max-width: 992px) {
    .stations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stations-grid {
        grid-template-columns: 1fr;
    }
}
/* Programming Section */
 .programming-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 2rem;
}
 .programming-item {
     background: rgba(30, 30, 30, 0.7);
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
}
 .programming-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     border-color: rgba(13, 110, 253, 0.3);
}
 .program-logo {
     height: 120px;
     background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
     display: flex;
     align-items: center;
     justify-content: center;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .program-logo-placeholder {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary-color), #0d47a1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .program-logo-placeholder i {
     font-size: 2.5rem;
     color: white;
}
 .program-content {
     padding: 1.5rem;
}
 .program-content h4 {
     font-size: 1.3rem;
     margin-bottom: 0.8rem;
     display: flex;
     align-items: center;
}
 .program-content h4 i {
     margin-right: 0.8rem;
     color: var(--primary-color);
}
 .program-meta {
     display: flex;
     justify-content: space-between;
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     font-size: 0.9rem;
     color: #aaa;
}
/* Careers Section */
 .job-card {
     background: rgba(30, 30, 30, 0.7);
     border-radius: 10px;
     padding: 1.8rem;
     margin-bottom: 1.8rem;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
}
 .job-card:hover {
     border-color: rgba(13, 110, 253, 0.3);
     transform: translateY(-3px);
}
 .job-card h4 {
     font-size: 1.4rem;
     margin-bottom: 1rem;
}
 .job-meta {
     display: flex;
     justify-content: space-between;
     margin-top: 1.2rem;
     padding-top: 1.2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Careers Section - No Positions Message */
#careers .text-center {
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#careers h3 {
    color: var(--dark-color);
    font-weight: 600;
}

#careers .text-muted {
    color: #666 !important;
}

#careers a {
    color: var(--primary-color);
    text-decoration: none;
}

#careers a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #careers .text-center {
        padding: 2rem 1.5rem;
    }
}


/* Contact Section */
 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
}
 @media (max-width: 768px) {
     .contact-container {
         grid-template-columns: 1fr;
    }
}
 .contact-info {
     background: rgba(30, 30, 30, 0.7);
     padding: 2.5rem;
     border-radius: 10px;
     border: 1px solid rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
}
 .contact-form {
     background: rgba(30, 30, 30, 0.7);
     padding: 2.5rem;
     border-radius: 10px;
     border: 1px solid rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(5px);
}
 .contact-item {
     display: flex;
     margin-bottom: 2rem;
}
 .contact-icon {
     width: 50px;
     height: 50px;
     background: rgba(13, 110, 253, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
     flex-shrink: 0;
}
 .contact-icon i {
     font-size: 1.2rem;
     color: var(--primary-color);
}
 .form-control, .form-select {
     background: rgba(20, 20, 20, 0.7);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: #fff;
     padding: 0.8rem 1rem;
     border-radius: 5px;
     transition: all 0.3s ease;
}
 .form-control:focus, .form-select:focus {
     background: rgba(20, 20, 20, 0.9);
     border-color: var(--primary-color);
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
     color: #fff;
}
 .form-control::placeholder {
     color: #777;
}
/* Footer */
 footer {
     background: #080808;
     padding: 4rem 0 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}
 .footer-logo {
     font-weight: 800;
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
     letter-spacing: 1px;
}
 .social-icon {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-right: 0.8rem;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
}
 .social-icon:hover {
     background: var(--primary-color);
     transform: translateY(-3px);
     border-color: var(--primary-color);
}
 .copyright {
     text-align: center;
     padding-top: 2rem;
     margin-top: 3rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     color: #777;
     font-size: 0.9rem;
}
/* Buttons */
 .btn {
     padding: 0.8rem 1.8rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 30px;
     transition: all 0.3s ease;
     border: none;
}
 .btn-primary {
     background: linear-gradient(135deg, var(--primary-color), #0d47a1);
     border: none;
     position: relative;
     overflow: hidden;
}
 .btn-primary:after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transform: rotate(45deg);
     transition: all 0.6s ease;
}
 .btn-primary:hover:after {
     transform: rotate(45deg) translateX(100%);
}
 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}
/* Responsive */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.8rem;
    }
     .hero p {
         font-size: 1.1rem;
    }
     .hero-logo {
         width: 180px;
         height: 180px;
    }
     .hero-logo i {
         font-size: 5rem;
    }
     .section-title h2 {
         font-size: 2rem;
    }
}
