* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070707;
    color: #fff;
    line-height: 1.6;
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
}

.loader-radio {
    font-size: 60px;
    animation: pulse 1s infinite;
}

.loader-content h2 {
    color: #ff2020;
    font-size: 30px;
    margin-top: 10px;
}

.loader-content p {
    color: #fff;
}

@keyframes pulse {
    50% {
        transform: scale(1.15);
    }
}

/* CLOCK AREA */
.time-section {
    background: linear-gradient(135deg, #080808, #260000, #080808);
    padding: 22px 15px;
    border-bottom: 2px solid #e00000;
}

.clock-wrapper {
    max-width: 1050px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

/* ANALOG CLOCK */
.analog-clock {
    width: 145px;
    height: 145px;
    min-width: 145px;
    border: 5px solid #ff2020;
    border-radius: 50%;
    position: relative;
    background: #111;
    box-shadow: 0 0 25px rgba(255, 0, 0, .35);
}

.clock-number {
    position: absolute;
    font-weight: bold;
    font-size: 17px;
}

.n12 {
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.n3 {
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}

.n6 {
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.n9 {
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
}

.clock-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: bottom center;
    border-radius: 10px;
}

.hour-hand {
    width: 5px;
    height: 35px;
    background: #fff;
}

.minute-hand {
    width: 4px;
    height: 48px;
    background: #ff3030;
}

.second-hand {
    width: 2px;
    height: 56px;
    background: #ff0000;
}

.clock-center {
    width: 10px;
    height: 10px;
    background: #ff2020;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* DIGITAL CLOCK */
.digital-area {
    text-align: left;
}

.digital-clock {
    font-family: "Courier New", monospace;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 15px #ff0000;
}

.clock-status {
    color: #ff3030;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 6px;
}

.date-line {
    margin-top: 4px;
    font-size: 15px;
}

.english-date {
    color: #fff;
}

.islamic-date {
    color: #54d7ff;
}

.desi-date {
    color: #ffd34d;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #c00000, #ff1010);
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.4);
}

.logo-area h1 {
    font-size: 34px;
}

.logo-area p {
    font-size: 18px;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 9px 16px;
    border-radius: 25px;
    transition: .3s;
}

nav a:hover {
    background: #fff;
    color: #c00000;
}

/* HERO */
.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.78)),
        url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=1600")
        center/cover no-repeat;
}

.slider {
    width: 100%;
    max-width: 950px;
    text-align: center;
}

.slide {
    display: none;
    padding: 65px 25px;
    border-radius: 22px;
    background: rgba(0,0,0,.58);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 35px rgba(0,0,0,.5);
}

.slide.active {
    display: block;
    animation: slideIn .7s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-icon {
    font-size: 60px;
    margin-bottom: 12px;
}

.slide h2 {
    font-size: 43px;
    color: #fff;
}

.slide p {
    font-size: 21px;
    color: #ff3030;
    font-weight: bold;
    margin-top: 10px;
}

.slider-dots {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #777;
    border-radius: 50%;
    margin: 5px;
}

.active-dot {
    background: #ff2020;
    box-shadow: 0 0 10px #ff0000;
}

/* LIVE PLAYER */
.live-player {
    padding: 65px 20px;
    text-align: center;
    background: linear-gradient(180deg, #180000, #080808);
}

.live-badge {
    display: inline-block;
    background: #e00000;
    padding: 7px 18px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    50% {
        box-shadow: 0 0 25px rgba(255,0,0,.7);
    }
}

.live-player h2 {
    font-size: 34px;
}

.live-player > p {
    color: #ccc;
    margin: 8px 0 25px;
}

.radio-player {
    max-width: 750px;
    margin: auto;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 18px;
}

.player-icon {
    font-size: 45px;
}

.player-info {
    flex: 1;
    text-align: left;
}

.player-info strong {
    display: block;
    font-size: 20px;
}

.player-info span {
    color: #aaa;
    font-size: 14px;
}

.player-button {
    background: #e00000;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: bold;
    transition: .3s;
}

.player-button:hover {
    background: #fff;
    color: #d00000;
}

.player-note {
    margin-top: 20px;
    color: #aaa;
}

/* GENERAL SECTIONS */
.schedule,
.rj-team,
.gallery,
.contact {
    padding: 65px 20px;
    text-align: center;
}

.schedule {
    background: #101010;
}

.rj-team {
    background: #080808;
}

.gallery {
    background: #101010;
}

.contact {
    background: #090909;
}

.schedule > h2,
.rj-team > h2,
.gallery > h2,
.contact > h2 {
    color: #ff2020;
    font-size: 32px;
    margin-bottom: 35px;
}

/* PROGRAMS */
.program-card {
    display: inline-block;
    vertical-align: top;
    width: 260px;
    min-height: 135px;
    margin: 10px;
    padding: 25px 18px;
    background: #181818;
    border: 1px solid #333;
    border-radius: 16px;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-7px);
    border-color: #ff2020;
    box-shadow: 0 8px 25px rgba(255,0,0,.2);
}

.program-card h3 {
    margin-bottom: 10px;
}

.program-card p {
    color: #bbb;
}

/* RJ */
.team {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.rj-card {
    width: 280px;
    padding: 20px;
    background: #151515;
    border: 1px solid #333;
    border-radius: 18px;
    transition: .3s;
}

.rj-card:hover {
    transform: translateY(-7px);
    border-color: #ff2020;
}

.rj-card img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e00000;
    margin-bottom: 15px;
}

.rj-card p {
    color: #aaa;
}

/* GALLERY */
.gallery-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #333;
    transition: .3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: #ff2020;
}

/* CONTACT */
.contact p {
    color: #ddd;
    margin: 10px auto;
}

.social {
    margin-top: 25px;
}

.social a {
    display: inline-block;
    margin: 6px;
    padding: 10px 18px;
    border-radius: 25px;
    background: #171717;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
}

.social a:hover {
    background: #e00000;
}

/* FOOTER */
footer {
    text-align: center;
    background: #030303;
    border-top: 1px solid #222;
    padding: 25px 15px;
    color: #aaa;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 27px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,.5);
}

/* TOP BUTTON */
#topBtn {
    position: fixed;
    right: 20px;
    bottom: 85px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #e00000;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    display: none;
    z-index: 1000;
}

/* MOBILE */
@media (max-width: 768px) {

    .clock-wrapper {
        flex-direction: column;
        gap: 18px;
    }

    .digital-area {
        text-align: center;
    }

    .digital-clock {
        font-size: 32px;
    }

    .logo-area h1 {
        font-size: 25px;
    }

    .hero {
        min-height: 430px;
    }

    .slide {
        padding: 45px 18px;
    }

    .slide h2 {
        font-size: 30px;
    }

    .slide p {
        font-size: 18px;
    }

    .radio-player {
        flex-direction: column;
        text-align: center;
    }

    .player-info {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    nav a {
        font-size: 13px;
        padding: 7px 10px;
    }

    .analog-clock {
        width: 125px;
        height: 125px;
        min-width: 125px;
    }

    .digital-clock {
        font-size: 25px;
        letter-spacing: 1px;
    }

    .slide h2 {
        font-size: 24px;
    }

    .slide-icon {
        font-size: 45px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

    .program-card {
        width: 90%;
        max-width: 320px;
    }

    .whatsapp {
        right: 15px;
        bottom: 15px;
    }

    #topBtn {
        right: 15px;
        bottom: 80px;
    }
}
/* =========================
   FPC LIVE CALENDAR
========================= */

.live-calendar {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 30px 20px;
    background: linear-gradient(145deg, #151515, #080808);
    border: 1px solid #333;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 25px;
}

.calendar-header h2 {
    color: #ff2020;
    font-size: 30px;
}

.calendar-header p {
    color: #aaa;
}

.calendar-header button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #e00000;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.calendar-header button:hover {
    background: white;
    color: #d00000;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
}

.calendar-weekdays span {
    padding: 9px 2px;
    color: #ff3030;
    text-align: center;
    font-weight: bold;
}

.calendar-day {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
    border: 1px solid #292929;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s;
}

.calendar-day:hover {
    background: #333;
    border-color: #ff2020;
}

.calendar-day.today {
    background: #e00000;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 18px rgba(255,0,0,.55);
}

.calendar-day.selected {
    outline: 3px solid #ffd34d;
    outline-offset: 1px;
}

.calendar-day.empty {
    background: transparent;
    border: 0;
    cursor: default;
}

.calendar-info {
    margin-top: 25px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid #333;
    line-height: 1.9;
}

#calendarEnglish {
    color: white;
}

#calendarHijri {
    color: #54d7ff;
}

#calendarDesi {
    color: #ffd34d;
}

.daily-programs {
    margin-top: 25px;
}

.daily-programs h3 {
    text-align: center;
    color: #ff2020;
    margin-bottom: 18px;
    font-size: 24px;
}

.program-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    margin: 8px 0;
    background: #181818;
    border-left: 4px solid #e00000;
    border-radius: 10px;
}

.program-time {
    min-width: 150px;
    color: #ffd34d;
    font-weight: bold;
}

.program-name {
    color: white;
    font-weight: bold;
}

.program-note {
    color: #aaa;
    font-size: 13px;
    margin-left: auto;
}

@media (max-width: 600px) {

    .live-calendar {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px 10px;
    }

    .calendar-header h2 {
        font-size: 22px;
    }

    .calendar-weekdays,
    .calendar-days {
        gap: 4px;
    }

    .calendar-day {
        min-height: 40px;
        font-size: 13px;
    }

    .program-row {
        display: block;
    }

    .program-time {
        display: block;
        margin-bottom: 5px;
    }

    .program-note {
        display: block;
        margin: 5px 0 0;
    }
}
/* =========================
   LIVE AUDIO PLAYER FIX
========================= */

#aanLivePlayer {
    display: block !important;
    width: 100% !important;
    max-width: 420px !important;
    height: 54px !important;
    min-height: 54px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.radio-player {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

#aanLivePlayer::-webkit-media-controls-panel {
    display: flex !important;
}

@media (max-width: 600px) {

    #aanLivePlayer {
        width: 100% !important;
        max-width: 100% !important;
    }

    .radio-player {
        flex-direction: column !important;
        align-items: stretch !important;
    }

}

/* =====================================================
   🌙 RABI-UL-AWWAL CAMPAIGN
   12 RABI-UL-AWWAL SPECIAL
   SEPARATE FROM LIVE PLAYER
===================================================== */

.rabi-ul-awwal-campaign {
    position: relative;
    width: 100%;
    min-height: 430px;
    margin: 40px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(212,175,55,.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #003d1d,
            #006b32 50%,
            #001f10
        );

    display: flex;
    align-items: center;
    justify-content: center;

    border-top: 2px solid rgba(212,175,55,.55);
    border-bottom: 2px solid rgba(212,175,55,.55);

    box-shadow:
        0 10px 40px rgba(0,0,0,.45);
}

/* SLIDER */

.rabi-slider {
    position: relative;
    width: 100%;
    min-height: 430px;
}

/* SLIDES */

.rabi-slide {
    position: absolute;
    inset: 0;

    padding: 45px 20px 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transform: scale(.96);

    transition:
        opacity .8s ease,
        transform .8s ease,
        visibility .8s ease;
}

.rabi-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* MOON */

.rabi-moon {
    font-size: clamp(60px, 10vw, 100px);
    margin-bottom: 8px;

    animation:
        moonFloat 3s ease-in-out infinite,
        moonGlow 2.5s ease-in-out infinite;
}

@keyframes moonFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes moonGlow {

    0%,100% {
        filter: drop-shadow(
            0 0 5px
            rgba(212,175,55,.4)
        );
    }

    50% {
        filter: drop-shadow(
            0 0 28px
            rgba(212,175,55,.95)
        );
    }
}

/* STARS */

.rabi-stars {
    position: absolute;
    inset: 0;

    pointer-events: none;
    overflow: hidden;
}

.rabi-stars span {
    position: absolute;

    color: #ffffff;
    font-size: 18px;

    opacity: .65;

    animation:
        starTwinkle 2.5s ease-in-out infinite;
}

.rabi-stars span:nth-child(1) {
    top: 15%;
    left: 12%;
}

.rabi-stars span:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: .5s;
}

.rabi-stars span:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}

.rabi-stars span:nth-child(4) {
    bottom: 18%;
    right: 22%;
    animation-delay: 1.5s;
}

.rabi-stars span:nth-child(5) {
    top: 42%;
    left: 7%;
    animation-delay: 2s;
}

.rabi-stars span:nth-child(6) {
    top: 45%;
    right: 8%;
    animation-delay: .8s;
}

@keyframes starTwinkle {

    0%,100% {
        opacity: .25;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

/* DATE BADGE */

.rabi-date {
    display: inline-block;

    padding: 8px 22px;
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: 1px;

    background: rgba(255,255,255,.10);

    border: 1px solid
        rgba(212,175,55,.65);

    border-radius: 30px;

    box-shadow:
        0 0 20px
        rgba(212,175,55,.12);
}

/* MAIN HEADING */

.rabi-slide h1 {
    margin: 8px 0;

    color: #ffffff;

    font-size:
        clamp(30px, 5vw, 55px);

    font-weight: 900;

    letter-spacing: 1px;

    text-shadow:
        0 3px 15px rgba(0,0,0,.55);
}

/* SUB HEADING */

.rabi-slide h2 {
    margin: 8px 0;

    color: #D4AF37;

    font-size:
        clamp(24px, 4vw, 42px);

    font-weight: 800;
}

/* SMALL HEADING */

.rabi-slide h3 {
    margin: 8px 0;

    color: #E8FFF0;

    font-size:
        clamp(19px, 3vw, 30px);
}

/* TEXT */

.rabi-slide p {
    max-width: 760px;

    margin: 10px auto;

    color: #ffffff;

    font-size:
        clamp(16px, 2vw, 22px);

    line-height: 1.7;
}

/* SPECIAL MESSAGE */

.rabi-message {
    max-width: 800px;

    margin-top: 12px;

    color: #ffffff;

    font-size:
        clamp(17px, 2.5vw, 25px);

    font-weight: 700;
}

/* GOLD LINE */

.rabi-line {
    width: 110px;
    height: 3px;

    margin: 12px auto;

    background: #D4AF37;

    border-radius: 10px;

    box-shadow:
        0 0 12px
        rgba(212,175,55,.65);
}

/* RADIO BRAND */

.rabi-station {
    margin-top: 12px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}

.rabi-station strong {
    color: #D4AF37;
}

/* DOTS */

.rabi-dots {
    position: absolute;

    bottom: 18px;
    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 7px;

    z-index: 20;
}

.rabi-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.40);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.rabi-dot.active {
    width: 30px;

    border-radius: 10px;

    background: #D4AF37;

    box-shadow:
        0 0 12px
        rgba(212,175,55,.65);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .rabi-ul-awwal-campaign,
    .rabi-slider {
        min-height: 480px;
    }

    .rabi-slide {
        padding:
            65px 18px 65px;
    }

    .rabi-date {
        font-size: 14px;
        padding: 7px 15px;
    }

    .rabi-slide p {
        line-height: 1.6;
    }

}

@media (max-width: 480px) {

    .rabi-ul-awwal-campaign,
    .rabi-slider {
        min-height: 500px;
    }

    .rabi-slide {
        padding:
            70px 14px 65px;
    }

    .rabi-moon {
        font-size: 65px;
    }

    .rabi-slide h1 {
        font-size: 27px;
    }

    .rabi-slide h2 {
        font-size: 23px;
    }

}
/* =====================================================
   AAN FM 91.60 KHANEWAL
   GALLERY + RJs
===================================================== */

.aan-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    box-sizing: border-box;
}

.aan-section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.aan-section-heading span {
    font-size: 42px;
}

.aan-section-heading h2 {
    margin: 8px 0;
    font-size: 32px;
    font-weight: 800;
}

.aan-section-heading p {
    margin: 0;
    opacity: .75;
}


/* =========================
   GALLERY
========================= */

.aan-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.aan-gallery-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    transition: .3s ease;
}

.aan-gallery-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.aan-gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.aan-gallery-info {
    padding: 16px;
    text-align: center;
}

.aan-gallery-info h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.aan-gallery-info p {
    margin: 5px 0;
    font-weight: 600;
}

.aan-gallery-info span {
    font-size: 13px;
    opacity: .7;
}


/* =========================
   MEET OUR RJs
========================= */

.aan-rj-section {
    margin-top: 70px;
}

.aan-rj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.aan-rj-card {
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    transition: .3s ease;
}

.aan-rj-card:hover {
    transform: translateY(-7px);
}

.aan-rj-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #168a45;
}

.aan-rj-card h3 {
    margin: 15px 0 7px;
}

.aan-rj-card p {
    min-height: 40px;
    font-size: 14px;
    opacity: .75;
}

.aan-rj-card button {
    border: 0;
    padding: 10px 18px;
    border-radius: 30px;
    background: #168a45;
    color: white;
    cursor: pointer;
    font-weight: 700;
}


/* =========================
   LIGHTBOX
========================= */

.aan-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aan-lightbox img {
    max-width: 95%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 12px;
}

.aan-lightbox-close {
    position: absolute;
    right: 25px;
    top: 15px;
    background: transparent;
    border: 0;
    color: white;
    font-size: 45px;
    cursor: pointer;
}


/* =========================
   RJ MODAL
========================= */

.aan-rj-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0,0,0,.8);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aan-rj-modal-box {
    width: 100%;
    max-width: 500px;
    background: white;
    color: #222;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.aan-rj-modal-box img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #168a45;
}

.aan-rj-modal-box h2 {
    margin: 18px 0 12px;
}

.aan-rj-modal-box p {
    line-height: 1.7;
}

.aan-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 35px;
    cursor: pointer;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .aan-gallery-grid,
    .aan-rj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .aan-section {
        padding: 12px;
        margin: 35px auto;
    }

    .aan-section-heading h2 {
        font-size: 26px;
    }

    .aan-gallery-grid,
    .aan-rj-grid {
        grid-template-columns: 1fr;
    }

    .aan-gallery-card img {
        height: auto;
        max-height: 500px;
    }

    .aan-rj-card img {
        width: 130px;
        height: 130px;
    }

}
/* =====================================================
   AAN FM 91.60 KHANEWAL
   PROFESSIONAL GREEN + WHITE + GOLD THEME
===================================================== */

:root {
    --aan-green: #00843D;
    --aan-dark-green: #005C2A;
    --aan-deep-green: #003D1D;
    --aan-gold: #D4AF37;
    --aan-light: #F5FFF8;
    --aan-dark: #07110B;
    --aan-card: #0D1B13;
}

/* BODY */
body {
    background: var(--aan-dark);
    color: #fff;
}

/* LOADER */
#loader {
    background: var(--aan-dark);
}

.loader-content h2 {
    color: var(--aan-green);
}

/* CLOCK */
.time-section {
    background: linear-gradient(
        135deg,
        #07110B,
        #003D1D,
        #07110B
    );
    border-bottom: 2px solid var(--aan-green);
}

.analog-clock {
    border-color: var(--aan-green);
    background: #0D1B13;
    box-shadow: 0 0 25px rgba(0,132,61,.35);
}

.minute-hand {
    background: #22B866;
}

.second-hand {
    background: var(--aan-gold);
}

.clock-center {
    background: var(--aan-green);
}

.digital-clock {
    text-shadow: 0 0 15px rgba(0,132,61,.8);
}

.clock-status {
    color: #22B866;
}

.islamic-date {
    color: #70D7A0;
}

.desi-date {
    color: var(--aan-gold);
}

/* HEADER */
header {
    background: linear-gradient(
        135deg,
        #006B32,
        #00843D,
        #005C2A
    );
}

/* NAV */
nav a:hover {
    background: #fff;
    color: var(--aan-green);
}

/* HERO */
.hero {
    background:
        linear-gradient(
            rgba(0,20,10,.70),
            rgba(0,0,0,.82)
        ),
        url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=1600")
        center/cover no-repeat;
}

.slide {
    background: rgba(0,30,15,.65);
    border-color: rgba(255,255,255,.18);
}

.slide p {
    color: #39C978;
}

.active-dot {
    background: var(--aan-green);
    box-shadow: 0 0 10px rgba(0,132,61,.8);
}

/* LIVE PLAYER */
.live-player {
    background:
        linear-gradient(
            180deg,
            #0D2416,
            #07110B
        );
}

.live-badge {
    background: var(--aan-green);
}

.radio-player {
    background: var(--aan-card);
    border-color: #1B3A28;
}

.player-button {
    background: var(--aan-green);
}

.player-button:hover {
    background: #fff;
    color: var(--aan-green);
}

/* GENERAL SECTIONS */
.schedule {
    background: #09150E;
}

.rj-team {
    background: #06100A;
}

.gallery {
    background: #09150E;
}

.contact {
    background: #07110B;
}

.schedule > h2,
.rj-team > h2,
.gallery > h2,
.contact > h2 {
    color: #39C978;
}

/* PROGRAM CARDS */
.program-card {
    background: var(--aan-card);
    border-color: #1B3A28;
}

.program-card:hover {
    border-color: var(--aan-green);
    box-shadow: 0 8px 25px rgba(0,132,61,.25);
}

/* RJ */
.rj-card {
    background: var(--aan-card);
    border-color: #1B3A28;
}

.rj-card:hover {
    border-color: var(--aan-green);
}

.rj-card img {
    border-color: var(--aan-green);
}

/* OLD GALLERY */
.gallery-grid img:hover {
    border-color: var(--aan-green);
}

/* SOCIAL */
.social a {
    background: var(--aan-card);
    border-color: #1B3A28;
}

.social a:hover {
    background: var(--aan-green);
}

/* TOP BUTTON */
#topBtn {
    background: var(--aan-green);
}

#topBtn:hover {
    background: var(--aan-gold);
    color: #07110B;
}

/* FPC CALENDAR */
.live-calendar {
    background:
        linear-gradient(
            145deg,
            #0D2416,
            #07110B
        );
    border-color: #1B3A28;
}

.calendar-header h2 {
    color: #39C978;
}

.calendar-header button {
    background: var(--aan-green);
}

.calendar-header button:hover {
    background: #fff;
    color: var(--aan-green);
}

.calendar-weekdays span {
    color: #39C978;
}

.calendar-day {
    background: #102218;
    border-color: #1B3A28;
}

.calendar-day:hover {
    background: #183A27;
    border-color: var(--aan-green);
}

.calendar-day.today {
    background: var(--aan-green);
    box-shadow: 0 0 18px rgba(0,132,61,.55);
}

.calendar-day.selected {
    outline-color: var(--aan-gold);
}

#calendarHijri {
    color: #70D7A0;
}

#calendarDesi {
    color: var(--aan-gold);
}

.daily-programs h3 {
    color: #39C978;
}

.program-row {
    background: #102218;
    border-left-color: var(--aan-green);
}

.program-time {
    color: var(--aan-gold);
}

/* LIVE AUDIO */
#playButton {
    background: var(--aan-green);
}

#playerStatus {
    color: #39C978;
}

/* FOOTER */
footer {
    background: #020805;
    border-top-color: #173322;
}

/* =====================================================
   GALLERY + RJ NEW SECTION
===================================================== */

.aan-section {
    background: transparent;
}

.aan-gallery-card,
.aan-rj-card {
    background:
        linear-gradient(
            145deg,
            #102218,
            #08130D
        );
    border-color: #1B3A28;
}

.aan-gallery-card:hover,
.aan-rj-card:hover {
    box-shadow: 0 15px 35px rgba(0,132,61,.20);
}

.aan-rj-card img {
    border-color: var(--aan-green);
}

.aan-rj-card button {
    background: var(--aan-green);
}

.aan-rj-card button:hover {
    background: var(--aan-gold);
    color: #07110B;
}

/* RJ MODAL */
.aan-rj-modal-box {
    background: #F5FFF8;
    color: #122017;
}

.aan-rj-modal-box img {
    border-color: var(--aan-green);
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {
    background: #25D366;
}

/* =====================================================
   GOLD ACCENTS
===================================================== */

.campaign-date {
    border-color: rgba(212,175,55,.6);
}

.calendar-day.selected {
    box-shadow: 0 0 15px rgba(212,175,55,.25);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    header {
        background: linear-gradient(
            135deg,
            #006B32,
            #00843D
        );
    }

}
/* =====================================================
   🇵🇰 UPCOMING EVENTS PAKISTAN
===================================================== */

.upcoming-events-section {
    width: 100%;
    padding: 55px 20px;
    background:
        radial-gradient(
            circle at top center,
            rgba(0,132,61,.22),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #07110B,
            #003D1D,
            #07110B
        );
    border-top: 1px solid rgba(0,132,61,.35);
    border-bottom: 1px solid rgba(0,132,61,.35);
}

.events-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.events-heading {
    text-align: center;
    margin-bottom: 30px;
}

.events-badge {
    display: inline-block;
    padding: 7px 17px;
    border-radius: 30px;
    background: rgba(0,132,61,.15);
    border: 1px solid rgba(0,132,61,.45);
    color: #70D7A0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.events-heading h2 {
    margin: 10px 0 5px;
    color: #39C978;
    font-size: 34px;
    font-weight: 900;
}

.events-heading p {
    margin: 0;
    color: #aaa;
    font-size: 15px;
}

/* MAIN UPCOMING EVENT */

.upcoming-event-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    margin-bottom: 25px;

    background:
        linear-gradient(
            145deg,
            #102218,
            #08130D
        );

    border: 1px solid #1B3A28;
    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

    transition: .3s ease;
}

.upcoming-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--aan-green);
    box-shadow:
        0 18px 45px rgba(0,132,61,.20);
}

/* EVENT ICON */

.event-icon {
    width: 110px;
    height: 110px;
    min-width: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,132,61,.30),
            rgba(0,61,29,.15)
        );

    border: 2px solid rgba(0,132,61,.45);

    font-size: 50px;

    box-shadow:
        0 0 30px rgba(0,132,61,.15);
}

/* EVENT INFORMATION */

.event-info {
    flex: 1;
}

.event-category {
    display: inline-block;
    margin-bottom: 5px;

    color: #D4AF37;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
}

.event-info h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 28px;
    font-weight: 900;
}

.event-info p {
    margin: 0 0 14px;

    color: #bbb;

    font-size: 15px;
    line-height: 1.7;
}

.event-date {
    display: inline-block;

    padding: 7px 14px;

    background: rgba(0,132,61,.13);

    border: 1px solid #1B3A28;

    border-radius: 8px;

    color: #70D7A0;

    font-size: 13px;
    font-weight: 700;
}

.event-countdown {
    margin-top: 12px;

    color: #39C978;

    font-size: 14px;
    font-weight: 800;
}

/* OTHER UPCOMING EVENTS */

.events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.event-small-card {
    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #102218,
            #08130D
        );

    border: 1px solid #1B3A28;
    border-radius: 16px;

    transition: .3s ease;
}

.event-small-card:hover {
    transform: translateY(-5px);
    border-color: var(--aan-green);

    box-shadow:
        0 10px 30px rgba(0,132,61,.18);
}

.small-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.small-category {
    color: #D4AF37;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .8px;
}

.event-small-card h4 {
    margin: 6px 0;

    color: #fff;

    font-size: 17px;
    font-weight: 800;
}

.event-small-card p {
    margin: 0;

    color: #999;

    font-size: 13px;
    line-height: 1.6;
}

.event-small-date {
    margin-top: 10px;

    color: #70D7A0;

    font-size: 12px;
    font-weight: 700;
}

/* MOBILE */

@media (max-width: 768px) {

    .upcoming-events-section {
        padding: 40px 15px;
    }

    .upcoming-event-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 18px;
    }

    .event-icon {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 40px;
    }

    .event-info h3 {
        font-size: 23px;
    }

    .event-info p {
        font-size: 14px;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .events-heading h2 {
        font-size: 27px;
    }

    .events-heading p {
        font-size: 13px;
    }

    .event-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 35px;
    }

    .event-info h3 {
        font-size: 21px;
    }

}
