/* Color Palette & Variables */
:root {
    --primary-color: #ff4757;    /* Vibrant Red/Pink */
    --bg-dark: #0f172a;          /* Deep Blue/Black */
    --card-bg: #1e293b;          /* Lighter Navy */
    --text-main: #f8fafc;        /* Off White */
    --text-dim: #94a3b8;         /* Muted Gray */
    --accent-glow: rgba(255, 71, 87, 0.3);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html{
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}



/* Navbar 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10%;
    background: rgb(15 23 42 / 68%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #892437b3;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 70px;
    width:auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}


*/

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5%;
    background-color: #66151cfa;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo img {
    height: 70px; /* Adjust based on your logo size */
    width: auto;
}

/* Middle Menu List */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Right Side Button */
.apply-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 2px solid var(--primary-color);
}

.apply-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Mobile Menu Logic (Hidden by default) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 2px;
    width: 25px;
    position: relative;
    transition: 0.3s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .nav-toggle-label {
        display: block; /* Show hamburger on mobile */
        order: 2;
    }

    .nav-actions {
        display: none; /* Hide Apply button on small mobile if space is tight, or move into menu */
    }

    .logo {
        order: 1;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        text-align: center;
        gap: 0;
        transform: scale(1, 0); /* Collapse vertically */
        transform-origin: top;
        transition: transform 0.4s ease-in-out;
        opacity: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Show menu when checkbox is checked */
    .nav-toggle:checked ~ .nav-links {
        transform: scale(1, 1);
        opacity: 1;
    }
}













.main-content{display: inline-block;width: 100%;clear: both;float: left;margin: 0;}





.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
    line-height: 1.5;
}







.player-section{
    display: inline-block;
    width: 100%;
    clear: both;
    background: url('/img/music-texture.jpg') left top repeat;
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.player-section .player-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 125px;
}
.player-section .player-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 400px;
    max-height: 600px;
}
.player-section .live-badge {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
.player-section .album-art {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #334155, #475569);
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--primary-color);
    overflow: hidden;
}
.player-section .album-art .disc{background:#fff;overflow: hidden;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
.player-section .album-art .disc img{height: 80%;width:auto;}
.player-section .audio-controls audio {
    width: 100%;
    margin-top: 20px;
    filter: invert(100%);
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.player-section .progress-container {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}
.player-section .progress-bar {
    width: 0%; /* Starts at 0 */
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ff7f50);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.3s ease;
}
.player-section .progress-active {
    animation: live-shimmer 2s infinite linear;
    width: 100% !important;
}
@keyframes live-shimmer {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}
.player-section .controls-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.player-section .volume-group {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.player-section #volume-slider {
    flex-grow: 1;
    cursor: pointer;
    accent-color: var(--text-dim);
}
.player-section .play-pause-btn {
    background: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: transform 0.2s;
}
.player-section .play-pause-btn:active {
    transform: scale(0.9);
}
.player-section .playing-texture{
    position: absolute;
    bottom: -5px;
    width: 100%;
}
.player-section .playing {
  left: 0;
  bottom: 0;
  white-space: nowrap;
}
.player-section .now.playing .bar {
  display: inline-block;
  position: relative;
  margin-right: 1px;
  width: 10px;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(to bottom, #ff9500, #ff5e3a);
  color: transparent;
  animation-name: barpulses;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.player-section .paused.playing .bar {
  animation-iteration-count: 1;
}
.player-section .n1 {
  animation-delay: 0.5s;
}
.player-section .n2 {
  animation-delay: 0.2s;
}
.player-section .n3 {
  animation-delay: 1.2s;
}
.player-section .n4 {
  animation-delay: 0.9s;
}
.player-section .n5 {
  animation-delay: 2.3s;
}
.player-section .n6 {
  animation-delay: 1.3s;
}
.player-section .n7 {
  animation-delay: 3.1s;
}
.player-section .n8 {
  animation-delay: 1.9s;
}
@keyframes barpulses {
  0% {
    height: 1px;
    margin-top: 0;
  }
  10% {
    height: 40px;
    margin-top: -40px;
  }
  50% {
    height: 20px;
    margin-top: -20px;
  }
  60% {
    height: 30px;
    margin-top: -30px;
  }
  80% {
    height: 60px;
    margin-top: -60px;
  }
  100% {
    height: 1px;
    margin-top: 0;
  }
}









.radio-jockey {
    padding: 60px 10%;
    background-color: var(--bg-dark);
}

.radio-jockey .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.radio-jockey .section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
}
.radio-jockey .section-header p {
    color: var(--text-dim);
    font-size: 1.2rem;
    line-height: 1.5;
}
.radio-jockey .rj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.radio-jockey .rj-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}
.radio-jockey .rj-card:hover {
    transform: translateY(-10px);
}
.radio-jockey .rj-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.radio-jockey .rj-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.radio-jockey .social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 71 87 / 76%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: 0.5s ease;
}
.radio-jockey .rj-image-container:hover .social-overlay {
    opacity: 1;
}
.radio-jockey .rj-image-container:hover .rj-photo {
    transform: scale(1.1);
}
.radio-jockey .social-icon {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 20px;
    border: 1px solid white;
    border-radius: 20px;
    transition: 0.3s;
}
.radio-jockey .social-icon:hover {
    background: white;
    color: var(--primary-color);
}
.radio-jockey .rj-info {
    padding: 20px;
}
.radio-jockey .rj-info h3 {
    margin-bottom: 5px;
}
.radio-jockey .rj-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}











.program-schedule {
    padding: 75px 10%;
    background-color: #111827;
    background: url('/assets/img/schedule-bg.jpg') left top repeat;
    border-top: 2px solid #ff4757;
    border-bottom: 2px solid #ff475794;
}
.program-schedule .tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.program-schedule .tab-btn {
    padding: 10px 20px;
    border: none;
    background: var(--card-bg);
    color: var(--text-dim);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.program-schedule .tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.program-schedule .tab-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease;
}
.program-schedule .tab-panel.active {
    display: grid;
}
.program-schedule .program-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
}
.program-schedule .program-item .time {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    min-width: 85px;
}
.program-schedule .prog-details h4 {
    margin: 0;
    font-size: 1.2rem;
}
.program-schedule .prog-details p {
    margin: 5px 0 0;
    color: var(--text-dim);
    font-size: 0.9rem;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}




.about-us {
    padding: 80px 10%;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.about-us .about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.about-us .about-content, .about-image {
    flex: 1;
    min-width: 300px;
}
.about-us .section-header-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.about-us .about-text {
    margin-bottom: 30px;
    color: var(--text-dim);
}
.about-us .about-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-left: 2px solid var(--primary-color); 
    padding-left: 25px;
}
.about-us .value-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
}
.about-us .value-item ul {
    list-style: none;
}
.about-us .value-item ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    color: var(--text-dim);
}
.about-us .value-item ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.about-us .speaker-note p {
    font-style: italic;
    color: var(--text-main);
    background: var(--card-bg);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}
.about-us .about-image {
    position: relative;
}
.about-us .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--card-bg);
}
.about-us .image-overlay-box {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
.about-us .about-container {
        flex-direction: column-reverse;
    }
    
.about-us .about-image img {
        box-shadow: 10px 10px 0px var(--card-bg);
    }
}






.our-journey {
    padding: 20px 10%;
    background-color: #0f172a; /* Keeping it consistent with your theme */
}
.our-journey .journey-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.our-journey .journey-image, .our-journey .journey-content {
    flex: 1;
    min-width: 350px;
}
.our-journey .section-header-left h2{
    font-size: 2.5rem;
    color: #ff4757;
}
.our-journey .section-header-left p{
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 10px;
}
.our-journey .image-wrapper {
    position: relative;
}
.our-journey .journey-image img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(20%);
    transition: 0.4s;
}
.our-journey .journey-image img:hover {
    filter: grayscale(0%);
}
.our-journey .experience-tag {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.our-journey .experience-tag .years {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}
.our-journey .experience-tag .text {
    font-size: 0.8rem;
    text-transform: uppercase;
}
.our-journey .journey-text p {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.8;
}
.our-journey .chairman-message-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    margin-top: 40px;
    border-right: 5px solid var(--primary-color);
}
.our-journey .quote-icon {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}
.our-journey .chairman-message-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.our-journey .chairman-message-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
}
.our-journey .chairman-meta strong {
    display: block;
    color: var(--primary-color);
}
.our-journey .chairman-meta span {
    font-size: 0.85rem;
    color: var(--text-dim);
}
@media (max-width: 992px) {
.our-journey .journey-container {
        flex-direction: column;
    }
.our-journey .experience-tag {
        top: 10px;
        left: 10px;
    }
}



.leadership-speech {
    padding: 80px 10%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.leadership-speech .leadership-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
.leadership-speech .leader-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}
.leadership-speech .leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.leadership-speech .leader-image {
    position: relative;
    width: 100%;
    height: 300px;
}
.leadership-speech .leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.leadership-speech .leader-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    font-weight: bold;
    border-top-right-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.leadership-speech .leader-info {
    padding: 40px;
    position: relative;
}
.leadership-speech .quote-mark {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: 'Georgia', serif;
}
.leadership-speech .leader-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}
.leadership-speech .leader-info p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}
.leadership-speech .leader-name h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.leadership-speech .leader-name span {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
.leadership-speech .leadership-speech {
        padding: 50px 5%;
    }
    
.leadership-speech .leader-card {
        max-width: 100%;
    }

.leadership-speech .leader-image {
        height: 250px;
    }
}





.partners-sponsors {
    padding: 60px 0;
    background: #0f172a;
    overflow: hidden;
}
.partners-sponsors .logo-slider {
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.partners-sponsors .logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 40s linear infinite;
}
.partners-sponsors .logo-track:hover {
    animation-play-state: paused;
}
.partners-sponsors .slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}
.partners-sponsors .slide img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}
.partners-sponsors .slide img:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.1);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}
@media (max-width: 768px) {
    .slide {
        width: 180px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 6)); }
    }
}



.main-footer {
    background-color: #070b14;
    color: var(--text-main);
    padding: 80px 10% 20px;
    border-top: 1px solid rgb(255 71 87 / 90%);
    width: 100%;
    display: inline-block;
    float: left;
}
.main-footer .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.main-footer .footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}
.main-footer .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.main-footer .footer-logo img{
    max-width: 100%;
    height: 50px;
    width: auto;
}
.main-footer .footer-logo span {
    color: var(--primary-color);
}
.main-footer .footer-desc {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 25px;
}
.main-footer .social-links {
    display: flex;
    gap: 10px;
}
.main-footer .social-btn {
    width: 35px;
    height: 35px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    transition: 0.3s;
}
.main-footer .social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.main-footer .footer-col ul {
    list-style: none;
}
.main-footer .footer-col ul li {
    margin-bottom: 12px;
}
.main-footer .footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}
.main-footer .footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.main-footer .contact-info p {
    color: var(--text-dim);
    margin-bottom: 15px;
}
.main-footer .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.main-footer .app-btn img {
    height: 45px;
    transition: 0.3s;
}
.main-footer .app-btn:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.main-footer .footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}
.main-footer .footer-bottom  a{
    text-decoration: none;
    color: #2296f3;
}
.main-footer .footer-bottom  a:hover{}
@media (max-width: 1024px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-footer .social-links {
        justify-content: center;
    }
    
    .main-footer .app-buttons {
        align-items: center;
    }
}