@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap');

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

html{
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#D4AF37;
font-family:'Cinzel',serif;
overflow-x:hidden;
}

/* Navigation */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 4%;
background:#111111;
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
border-bottom:1px solid #D4AF37;
box-sizing:border-box;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:24px;
font-weight:700;
color:#D4AF37;
margin-left: 10px;
}

.logo img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
border:2px solid #D4AF37;
box-shadow:0 0 15px rgba(212,175,55,.4);
}

.logo span{
color:#D4AF37;
}

/* Menu */

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

.nav-links a{
text-decoration:none;
color:white;
font-size:16px;
transition:.3s;
}

.nav-links a:hover{
color:#D4AF37;
}

/* Hero Section */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;

background:
linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.80)
),
url("../images/hero.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:72px;
font-weight:700;
color:#D4AF37;
line-height:1.2;
margin-bottom:20px;
}

.bareilly{
display:block;
font-size:0.75em;
margin-top:10px;
letter-spacing:4px;
color:#f5e6a8;
}

.hero p{
font-size:24px;
color:#f5e6a8;
margin-bottom:35px;
}

/* Buttons */

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
background:#D4AF37;
color:black;
padding:14px 30px;
font-weight:700;
border-radius:30px;
text-decoration:none;
transition:.3s;
border:none;
cursor:pointer;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 15px rgba(212,175,55,.5);
}

/* Content Sections */

section{
padding:90px 8%;
text-align:center;
}

section h2{
font-size:42px;
color:#D4AF37;
margin-bottom:25px;
}

section p{
max-width:900px;
margin:auto;
font-size:18px;
line-height:1.9;
color:#f5e6a8;
}

/* YouTube Channel Section */

#youtube-channel{
background:#111111;
margin:30px auto;
border:1px solid rgba(212,175,55,.2);
border-radius:20px;
max-width:1200px;
padding:60px 20px;
text-align:center;
}

#youtube-channel iframe{
margin-top:20px;
border:2px solid #D4AF37;
border-radius:15px;
}

#youtube-channel p{
margin-bottom:25px;
}

@media(max-width:768px){

#youtube-channel iframe{
height:250px;
}

}

/* Section Cards */

#about,
#guru,
#gallery,
#contact{
background:#111111;
margin:30px auto;
border:1px solid rgba(212,175,55,0.2);
border-radius:20px;
max-width:1200px;
}

/* ==========================
PHOTO GALLERY SECTION
========================== */

#gallery{
padding:70px 20px;

background:
radial-gradient(
circle at center,
rgba(212,175,55,.60) 0%,
rgba(212,175,55,.30) 25%,
rgba(212,175,55,.10) 45%,
#0b0b0b 75%
);

}

.gallery-title{
text-align:center;
font-size:42px;
font-weight:700;
color:#d4af37;
margin-bottom:45px;
text-shadow:0 0 15px rgba(212,175,55,.8);
}

/* Slider Layout */

.gallery-slider{
max-width:1200px;
margin:auto;

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

gap:15px;

overflow:hidden;
}

/* Cards Container */

.gallery-grid{
flex:1;

display:flex;
flex-wrap:nowrap;

gap:25px;

overflow:hidden;

scroll-behavior:smooth;
}

/* Left Right Buttons */

.gallery-btn{
width:55px;
height:55px;

border:none;
border-radius:50%;

background:#d4af37;
color:#000;

font-size:26px;
font-weight:bold;

cursor:pointer;

flex-shrink:0;

box-shadow:
0 0 15px rgba(212,175,55,.6);

transition:.3s;

z-index:10;
}

.gallery-btn:hover{

transform:scale(1.12);

box-shadow:
0 0 30px rgba(255,215,0,.9);

}

/* =====================
ROYAL GOLDEN CARDS
===================== */

.gallery-card{

min-width:290px;
max-width:290px;

flex-shrink:0;

background:#dcdcdc;

border:2px solid #d4af37;
border-radius:16px;

overflow:hidden;

position:relative;

box-shadow:
0 0 15px rgba(212,175,55,.45);

transition:
transform .4s ease,
box-shadow .4s ease;

}

/* Moving Golden Glow */

.gallery-card::before{

content:"";

position:absolute;

top:-50%;
left:-50%;

width:200%;
height:200%;

background:
conic-gradient(
transparent,
rgba(255,215,0,.9),
transparent,
transparent
);

animation:galleryGoldenRotate 4s linear infinite;

z-index:1;
}

@keyframes galleryGoldenRotate{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

/* Content Above Glow */

.gallery-card > *{
position:relative;
z-index:2;
}

/* Hover Effect */

.gallery-card:hover{

transform:
translateY(-10px)
scale(1.03);

box-shadow:
0 0 20px rgba(255,215,0,.9),
0 0 40px rgba(255,215,0,.7),
0 0 60px rgba(255,215,0,.5);

}

/* Image */

.gallery-card img{

width:100%;
height:220px;

object-fit:cover;

background:#4a4a4a;

padding:10px;

display:block;

transition:
transform .6s ease;

}

/* Zoom */

.gallery-card:hover img{

transform:scale(1.08);

}

/* Caption */

.gallery-caption{

padding:15px;

text-align:center;
}

.gallery-caption h3{

font-size:22px;
color:#333;

margin-bottom:10px;
}

.gallery-caption p{

font-size:15px;
color:#555;
}

/* View Image Button */

.view-image-btn{

width:90%;

margin:10px auto 15px;

display:block;

padding:10px;

border:none;

border-radius:8px;

background:#d4af37;

color:#000;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.view-image-btn:hover{

background:#b89222;

transform:scale(1.03);

}

/* Popup */

.gallery-popup{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.92);

z-index:99999;

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

}

.gallery-popup img{

max-width:95%;
max-height:90vh;

object-fit:contain;

background:#fff;

border:4px solid #d4af37;

border-radius:10px;

box-shadow:
0 0 40px rgba(255,215,0,.8);

}

.gallery-close{

position:absolute;

top:20px;
right:30px;

color:#fff;

font-size:45px;

cursor:pointer;

}

/* Mobile */

@media(max-width:768px){

.gallery-title{
font-size:30px;
}

.gallery-slider{
gap:8px;
}

.gallery-btn{
width:42px;
height:42px;
font-size:20px;
}

.gallery-card{
min-width:100%;
max-width:100%;
}

.gallery-card img{
height:180px;
}

}

/* Stats Section */

.stats{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:60px 20px;
}

.stat-box{
background:#111111;
padding:30px;
border:1px solid #D4AF37;
border-radius:15px;
width:250px;
transition:0.4s;
}

.stat-box:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(212,175,55,.4);
}

.stat-box h2{
font-size:40px;
color:#D4AF37;
margin-bottom:10px;
}

.stat-box p{
color:white;
}

/* Contact Form */

.contact-form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:15px;
background:#181818;
border:1px solid #D4AF37;
border-radius:10px;
color:white;
font-size:16px;
outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
box-shadow:0 0 12px rgba(212,175,55,.4);
}

/* Footer */

.footer{
background:#080808;
padding:40px 20px;
text-align:center;
border-top:1px solid #D4AF37;
}

.footer h3{
color:#D4AF37;
margin-bottom:15px;
}

.footer p{
color:#f5e6a8;
margin:8px 0;
}

/* WhatsApp Button */

.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 25px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:9999;
box-shadow:0 0 20px rgba(37,211,102,.5);
transition:.3s;
}

.whatsapp-btn:hover{
transform:scale(1.08);
}

/* Mobile Responsive */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:15px;
}

.logo{
font-size:16px;
}

.logo img{
width:42px;
height:42px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:42px;
}

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

.bareilly{
letter-spacing:2px;
}

section h2{
font-size:32px;
}

section p{
font-size:16px;
}

#live iframe{
height:300px;
}

.whatsapp-btn{
right:15px;
bottom:15px;
padding:12px 16px;
}

.stat-box{
width:100%;
max-width:300px;
}

}
/* =========================
HERO IMAGE SLIDER
========================= */

/* HERO SLIDER */

.hero{
position:relative;
height:120vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
opacity:0;
transition:opacity 1.5s ease;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:contain;
object-position: center top;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.50);
z-index:2;
}

.hero-content{
position:relative;
z-index:3;
max-width:900px;
padding:20px;
animation:fadeUp 1.5s ease;

transform:translateY(0px);

text-align:center;
margin:0 auto;
width:100%;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.hero h1{
font-size:72px;
color:#D4AF37;
text-shadow:0 0 25px rgba(212,175,55,.7);
}

.hero p{
font-size:24px;
color:white;
margin-top:20px;
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

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

}

/* Music Button */

.music-btn{
position:fixed;
left:20px;
bottom:20px;
z-index:9999;

background:#D4AF37;
color:#000;

border:none;
border-radius:50px;

padding:14px 22px;

font-size:16px;
font-weight:bold;

cursor:pointer;

box-shadow:0 0 15px rgba(212,175,55,.5);

transition:.3s;
}

.music-btn:hover{
transform:scale(1.08);
box-shadow:0 0 25px rgba(212,175,55,.8);
}

@media(max-width:768px){

.music-btn{
left:15px;
bottom:80px;
font-size:14px;
padding:12px 18px;
}

}

/* Live Aarti Notice Box */

.live-notice{
max-width:700px;
margin:10px auto 0;
padding:20px;

background:#111111;

border:2px solid #D4AF37;

border-radius:15px;

color:#ffffff;

text-align:center;

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

animation:glow 2s infinite alternate;
}

.live-notice h3{
color:#D4AF37;
font-size:24px;
margin-bottom:15px;
}

.live-notice p{
font-size:18px;
line-height:1.8;
margin:10px 0;
color:#f5e6a8;
}

@keyframes glow{

from{
box-shadow:0 0 15px rgba(212,175,55,.3);
}

to{
box-shadow:0 0 30px rgba(212,175,55,.8);
}

}

@media(max-width:768px){

.live-notice{
padding:15px;
margin-top:20px;
}

.live-notice h3{
font-size:20px;
}

.live-notice p{
font-size:16px;
}

}

#visitors{
background:#111111;
margin:30px auto;
border-radius:20px;
max-width:1200px;
}

.visitor-box{
padding:30px;
}

.visitor-box h3{
font-size:60px;
color:#D4AF37;
}

.visitor-box p{
font-size:20px;
color:#f5e6a8;
}

/* Upcoming Events Section */

#events{
background:#111111;
margin:30px auto;
border:1px solid rgba(212,175,55,.2);
border-radius:20px;
max-width:1200px;
padding:60px 20px;
}

.event-card{
background:#181818;
border:2px solid #D4AF37;
padding:25px;
margin:25px auto;
max-width:750px;
border-radius:15px;
transition:.4s;
box-shadow:0 0 15px rgba(212,175,55,.15);
}

.event-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(212,175,55,.5);
}

.event-card h3{
color:#D4AF37;
font-size:28px;
margin-bottom:15px;
}

.event-card p{
color:#f5e6a8;
font-size:18px;
line-height:1.8;
}

@media(max-width:768px){

.event-card{
padding:18px;
}

.event-card h3{
font-size:22px;
}

.event-card p{
font-size:16px;
}

}

/* Facebook Feed Section */


.facebook-container{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
    margin-top:40px;
}
.facebook-container iframe{
  width: 650px;
  height: 800px;
  margin-top: 60px;
}

/* Message Card */

.facebook-message{
    max-width:500px;
    padding:35px;
    border-radius:20px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,215,0,0.4);

    box-shadow:
    0 0 25px rgba(255,215,0,0.15),
    0 0 50px rgba(255,105,180,0.08);

    transition:0.4s ease;
}

.facebook-message:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 35px rgba(255,215,0,0.25),
    0 0 60px rgba(255,105,180,0.15);
}

/* Heading */

.facebook-message h3{
    text-align:center;

    font-size:38px;

    margin-bottom:25px;

    color:#FFD700;

    line-height:1.4;

    text-shadow:
    0 0 10px rgba(255,215,0,0.6),
    0 0 20px rgba(255,215,0,0.3);
}

/* Paragraphs */

.facebook-message p{
    font-size:19px;

    color:#f8f4e8;

    line-height:1.9;

    margin-bottom:18px;

    text-align:justify;
}

/* Highlight Text */

.facebook-message strong{
    color:#FFD700;
    font-weight:700;
}

/* Mobile */

@media(max-width:768px){

.facebook-message{
    max-width:100%;
    padding:25px;
}

.facebook-message h3{
    font-size:28px;
}

.facebook-message p{
    font-size:17px;
}

}

/* Aarti Countdown */

#countdown-box{
position:fixed;
left:20px;
bottom:90px;
background:#111;
color:#D4AF37;
padding:15px;
border-radius:15px;
border:2px solid #D4AF37;
z-index:9999;
font-weight:bold;
text-align:center;
box-shadow:0 0 20px rgba(212,175,55,.5);
width:180px;
}

#countdown{
margin-top:8px;
font-size:14px;
color:white;
}

/*Aarti Notifyu Button*/
#notifyBtn{
margin-top:10px;
padding:8px 12px;
border:none;
border-radius:8px;
background:#D4AF37;
cursor:pointer;
font-weight:bold;
}

/* =========================
   CHATBOT UI
========================= */

#chatToggle{
position:fixed;
right:20px;
bottom:90px;
width:65px;
height:65px;
background:#2196f3;
color:#fff;
font-size:28px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
cursor:pointer;
z-index:10000;
box-shadow:0 0 25px rgba(33,150,243,.6);
transition:.3s;
}

#chatToggle:hover{
transform:scale(1.1);
}

#chatbot-container{
position:fixed;
right:20px;
bottom:170px;
width:350px;
max-width:95%;
height:520px;
background:#ffffff;
border-radius:20px;
overflow:hidden;
display:none;
flex-direction:column;
z-index:10000;
box-shadow:0 0 35px rgba(0,0,0,.25);
}

#chatbot-header{
background:#2196f3;
color:white;
padding:15px;
font-size:18px;
font-weight:bold;
display:flex;
justify-content:space-between;
align-items:center;
}

#closeChat{
cursor:pointer;
font-size:18px;
}

#chatbot-body{
display:flex;
flex-direction:column;
height:100%;
}

.chat-help{
background:#eaf4ff;
padding:10px;
font-size:13px;
text-align:center;
color:#333;
}

.quick-questions{
padding:10px;
display:flex;
flex-wrap:wrap;
gap:8px;
}

.q-btn{
border:none;
background:#e3f2fd;
color:#1565c0;
padding:8px 12px;
border-radius:20px;
cursor:pointer;
font-size:12px;
}

.q-btn:hover{
background:#bbdefb;
}

#chatbot-messages{
flex:1;
overflow-y:auto;
padding:12px;
background:#f8f9fa;
}

.bot-message,
.user-message{
padding:10px 14px;
margin-bottom:10px;
border-radius:12px;
max-width:85%;
font-size:14px;
line-height:1.5;
}

.bot-message{
background:#e3f2fd;
color:#222;
}

.user-message{
background:#2196f3;
color:white;
margin-left:auto;
}

.chat-input-area{
display:flex;
gap:5px;
padding:10px;
background:white;
border-top:1px solid #ddd;
}

#chatInput{
flex:1;
padding:10px;
border:1px solid #ccc;
border-radius:10px;
outline:none;
}

#sendBtn,
#micBtn{
border:none;
background:#2196f3;
color:white;
padding:10px 12px;
border-radius:10px;
cursor:pointer;
}

.voice-note{
text-align:center;
font-size:12px;
padding:8px;
background:#f1f8ff;
color:#555;
}

@media(max-width:768px){

#chatbot-container{
width:95%;
right:10px;
bottom:100px;
height:500px;
}

#chatToggle{
right:15px;
bottom:90px;
}

}
/* ==================================
SADHAK ANUBHAV ROYAL GOLDEN BOOK
================================== */

#sadhak-anubhav{
background:#0b0b0b;
margin:30px auto;

/* मोटा बॉर्डर */
border:8px solid #d4af37;

border-radius:25px;
max-width:1200px;
padding:60px 20px;

box-shadow:
0 0 25px rgba(212,175,55,.45),
0 0 50px rgba(212,175,55,.25);
}

.anubhav-title{
font-size:42px;
color:#D4AF37;
margin-bottom:15px;
text-shadow:0 0 20px rgba(212,175,55,.8);
}

.anubhav-subtitle{
color:#f5e6a8;
font-size:18px;
margin-bottom:30px;
}

.book-container{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

#flipbook{
width:800px;
height:500px;
margin:auto;
max-width:100%;
}

.page{
background:#fffdf5;
overflow:hidden;
border:1px solid #d8c27c;
position:relative;
}

.page img{
width:100%;
height:100%;
object-fit:contain;
display:block;
}

/* =====================
ROYAL COVER PAGE
===================== */

.cover-page{
background:linear-gradient(
135deg,
#3b2500,
#b8860b,
#ffd700,
#b8860b,
#3b2500
);

position:relative;
overflow:hidden;

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

.cover-page::before{
content:"";
position:absolute;
top:10px;
left:10px;
right:10px;
bottom:10px;

border:8px solid #fff4b0;
border-radius:18px;

box-shadow:
0 0 25px gold,
inset 0 0 20px gold;
}

.cover-page::after{
content:"";
position:absolute;
top:25px;
left:25px;
right:25px;
bottom:25px;

border:3px solid #fff8dc;
border-radius:12px;
pointer-events:none;
}

.cover-content{
position:relative;
z-index:10;

height:100%;

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

padding:15px;
}

.cover-logo{
width:240px !important;
height:240px !important;

display:block;
margin:40px auto 20px auto;

object-fit:contain;

background:#fff;
padding:8px;
border-radius:50%;

box-shadow:0 0 15px rgba(255,255,255,0.7);
}

.cover-content h1{
font-size:22px;
line-height:1.4;
margin:0;

color:#fff8dc;
text-align:center;

text-shadow:
0 0 8px gold,
1px 1px 3px rgba(0,0,0,.5);
}

.cover-content p{
margin-top:15px;

font-size:22px;
font-weight:bold;

letter-spacing:3px;

color:#fff;

text-shadow:0 0 10px gold;
}

/* =====================
LAST PAGE
===================== */

.end-page{
background:linear-gradient(
135deg,
#3b2500,
#b8860b,
#ffd700,
#b8860b,
#3b2500
);

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

text-align:center;

border:8px solid #fff4b0;

box-shadow:
0 0 25px gold,
inset 0 0 20px gold;

height:100%;
width:100%;
padding:40px;
box-sizing:border-box;
}

.end-page h2{
font-size:42px;
color:white;
text-shadow:0 0 15px gold;

margin:0;
line-height:1.5;
}

.end-page p{
font-size:24px;
margin-top:25px;
color:white;
font-weight:bold;
line-height:1.6;
}

/* =====================
BUTTONS
===================== */

.book-controls{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.book-controls button{
background:#D4AF37;
color:#000;
border:none;
padding:12px 20px;
border-radius:10px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

.book-controls button:hover{
transform:translateY(-3px);
box-shadow:0 0 20px rgba(212,175,55,.7);
}

/* अनुभव सुनें बटन */

.pageSpeakBtn{
position:absolute;
bottom:10px;
right:10px;

background:#d4af37;
color:#000;

border:none;

padding:10px 15px;

border-radius:20px;

cursor:pointer;

font-size:14px;
font-weight:bold;

z-index:999999 !important;

pointer-events:auto !important;
touch-action:none !important;
}

.pageSpeakBtn:hover{
transform:scale(1.05);
}

/* =====================
MAIN HEADING
===================== */

.anubhav-main-heading{
text-align:center;
margin-bottom:40px;
}

.anubhav-main-heading h2{

display:inline-block;

padding:22px 40px;

/* मोटा बॉर्डर */
border:8px solid #d4af37;

border-radius:22px;

background:linear-gradient(
135deg,
rgba(255,215,0,0.12),
rgba(255,215,0,0.04)
);

color:#FFD700;

font-size:42px;
font-weight:bold;

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

text-shadow:
0 0 6px rgba(255,215,0,.6);

/* नई animation */
animation:headingFloat 3s ease-in-out infinite;

}

/* नई animation */

@keyframes headingFloat{

0%{
transform:translateY(0px);
}

25%{
transform:translateY(-4px);
}

50%{
transform:translateY(0px);
}

75%{
transform:translateY(4px);
}

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

}

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

@media(max-width:768px){

#flipbook{
width:100%;
height:350px;
}

.anubhav-title{
font-size:30px;
}

.cover-logo{
width:90px;
height:90px;
}

.cover-content h1{
font-size:22px;
}

.cover-content p{
font-size:16px;
}

.book-controls button{
width:100%;
max-width:250px;
}

.anubhav-main-heading h2{
font-size:26px;
padding:15px 20px;
border:6px solid #d4af37;
}

}

मैं आपको मीडिया कवरेज सेक्शन दे रहा हूँ, उस पूरे कोड को अपडेट करके दे दीजिए ताकि कॉपी पेस्ट करना जाए।

/* ==========================
MEDIA COVERAGE SECTION
========================== */

#media-coverage{
padding:70px 20px;

background:
radial-gradient(
    circle at center,
    rgba(212,175,55,.60) 0%,
    rgba(212,175,55,.30) 25%,
    rgba(212,175,55,.10) 45%,
    #0b0b0b 75%
);

}

.media-title{
text-align:center;
font-size:42px;
font-weight:700;
color:#d4af37;
margin-bottom:45px;
text-shadow:0 0 15px rgba(212,175,55,.8);
}

/* Slider Layout */

.media-slider{
max-width:1200px;
margin:auto;

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

gap:15px;

overflow:hidden;

}

/* Cards Container */

.media-grid{
flex:1;

display:flex;
flex-wrap:nowrap;

gap:25px;

overflow:hidden;

scroll-behavior:smooth;

}

/* Left Right Buttons */

.slider-btn{
width:55px;
height:55px;

border:none;
border-radius:50%;

background:#d4af37;
color:#000;

font-size:26px;
font-weight:bold;

cursor:pointer;

flex-shrink:0;

box-shadow:
0 0 15px rgba(212,175,55,.6);

transition:.3s;

z-index:10;

}

.slider-btn:hover{
transform:scale(1.12);

box-shadow:
0 0 30px rgba(255,215,0,.9);

}

/* =====================
ROYAL GOLDEN CARDS
===================== */

.media-card{

min-width:290px;
max-width:290px;

flex-shrink:0;

background:#dcdcdc;

border:2px solid #d4af37;
border-radius:16px;

overflow:hidden;

position:relative;

box-shadow:
0 0 15px rgba(212,175,55,.45);

transition:
transform .4s ease,
box-shadow .4s ease;

}

/* Moving Golden Glow */

.media-card::before{

content:"";

position:absolute;

top:-50%;
left:-50%;

width:200%;
height:200%;

background:
conic-gradient(
    transparent,
    rgba(255,215,0,.9),
    transparent,
    transparent
);

animation:goldenRotate 4s linear infinite;

z-index:1;

}

@keyframes goldenRotate{

0%{
    transform:rotate(0deg);
}

100%{
    transform:rotate(360deg);
}

}

/* Content Above Glow */

.media-card > *{
position:relative;
z-index:2;
}

/* Hover Effect */

.media-card:hover{

transform:
translateY(-10px)
scale(1.03);

box-shadow:
0 0 20px rgba(255,215,0,.9),
0 0 40px rgba(255,215,0,.7),
0 0 60px rgba(255,215,0,.5);

}

/* Top Bar */

.paper-top{

background:
linear-gradient(
90deg,
#d4af37,
#f3d57a
);

padding:10px 15px;

display:flex;
justify-content:space-between;

font-size:14px;
font-weight:600;

color:#222;

}

/* Images */

.media-card img{

width:100%;
height:220px;

object-fit:contain;

background:#4a4a4a;

padding:10px;

display:block;

transition:
transform .6s ease;

}

/* Zoom Image */

.media-card:hover img{

transform:scale(1.08);

}

/* Bottom Text */

.paper-bottom{

padding:15px;

text-align:center;

font-size:16px;
font-weight:600;

color:#333;

}

/* View News Button */

.view-news-btn{

width:90%;

margin:0 auto 15px;

display:block;

padding:10px;

border:none;

border-radius:8px;

background:#d4af37;

color:#000;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.view-news-btn:hover{

background:#b89222;

transform:scale(1.03);

}

/* Popup */

.news-popup{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.92);

z-index:99999;

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

}

.news-popup img{

max-width:95%;
max-height:90vh;

object-fit:contain;

background:#fff;

border:4px solid #d4af37;

border-radius:10px;

box-shadow:
0 0 40px rgba(255,215,0,.8);

}

.close-popup{

position:absolute;

top:20px;
right:30px;

color:#fff;

font-size:45px;

cursor:pointer;

}

/* Mobile */

@media(max-width:768px){

.media-title{
    font-size:30px;
}

.media-slider{
    gap:8px;
}

.slider-btn{
    width:42px;
    height:42px;
    font-size:20px;
}

.media-card{
    min-width:100%;
    max-width:100%;
}

.media-card img{
    height:180px;
}

.paper-bottom{
    font-size:15px;
}

}

/* =========================
   HOW TO REACH THE DARBAR
========================= */

#location{
    background:#111111;
    margin:30px auto;
    border:1px solid rgba(212,175,55,.2);
    border-radius:20px;
    max-width:1200px;
    padding:60px 20px;
}

.location-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-top:30px;
}

.map-box{
    flex:1;
}

.map-box iframe{
    width:100%;
    height:450px;
    border-radius:15px;
    border:2px solid #D4AF37;
    box-shadow:0 0 20px rgba(212,175,55,.3);
}

.darbar-photo{
    flex:1;
    text-align:center;
}

.darbar-photo img{
    width:100%;
    max-width:450px;
    border-radius:15px;
    border:3px solid #D4AF37;
    box-shadow:0 0 20px rgba(212,175,55,.4);
    transition:.3s;
}

.darbar-photo img:hover{
    transform:scale(1.02);
}

.darbar-photo h3{
    margin-top:15px;
    font-size:28px;
    color:#D4AF37;
}

.darbar-photo p{
    margin:10px auto 20px;
    color:#f5e6a8;
    line-height:1.8;
}

.location-btn{
    display:inline-block;
    padding:12px 28px;
    background:#D4AF37;
    color:#000;
    font-weight:bold;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.location-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(212,175,55,.7);
}

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

@media (max-width:768px){

    #location{
        padding:40px 10px;
    }

    .location-container{
        display:flex;
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:10px;
        flex-wrap:nowrap;
    }

    .map-box{
        width:55%;
        flex:none;
    }

    .darbar-photo{
        width:45%;
        flex:none;
    }

    .map-box iframe{
        height:220px;
    }

    .darbar-photo img{
        max-width:100%;
    }

    .darbar-photo h3{
        font-size:18px;
        margin-top:8px;
    }

    .darbar-photo p{
        font-size:12px;
        line-height:1.4;
        margin:6px 0 10px;
    }

    .location-btn{
        padding:8px 10px;
        font-size:11px;
    }
}


/* =========================
GURU JI MESSAGE SECTION
========================= */

#guru{
padding:50px 20px;
}

.guru-container{

max-width:1300px;

margin:50px auto;

padding:70px 70px 50px;

position:relative;

background:#000;

border:8px solid #d4af37;

border-radius:25px;

box-shadow:0 0 25px rgba(212,175,55,.30);

}

/* Heading */

.guru-heading h2{

text-align:center;

color:#D4AF37;

font-size:60px;

margin-bottom:30px;

text-transform:uppercase;

letter-spacing:2px;

}

/* Guru Photo */

.guru-photo{

text-align:center;

margin-bottom:35px;

}

.guru-photo img{

width:320px;

height:auto;

display:inline-block;

filter:drop-shadow(0 0 15px rgba(212,175,55,.35));

}

/* Text */

.guru-text p{

width:100%;

color:#ffffff;

text-align:justify;

font-size:20px;

line-height:2;

margin-bottom:30px;

}

/* Guru Speak Button */

.guru-speak-btn{

background:#d4af37;

color:#000;

border:none;

padding:14px 32px;

border-radius:50px;

font-size:18px;

font-weight:600;

cursor:pointer;

float:right;

margin-top:10px;

transition:all .3s ease;

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

}

.guru-speak-btn:hover{

background:#e6c45a;

transform:translateY(-2px);

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

}

/* Float Clear */

.guru-text::after{

content:"";

display:block;

clear:both;

}

/* Mobile */

@media(max-width:768px){

.guru-container{

    padding:50px 25px;
}

.guru-heading h2{

    font-size:38px;
}

.guru-photo img{

    width:220px;
}

.guru-text p{

    font-size:17px;
}

.guru-speak-btn{

    float:none;

    display:block;

    margin:20px auto 0;

    font-size:16px;
}

}

/* =========================
SHAKTIPAT SECTION
========================= */

#shaktipat{

padding:80px 20px;

background:#0b0b0b;

color:#ffffff;

}

/* PREMIUM GOLD BORDER */

.shaktipat-border{

max-width:1350px;

margin:auto;

padding:50px;

border:8px solid #FFD700;

border-radius:30px;

background:#111;

box-shadow:
0 0 30px rgba(255,215,0,.35),
0 0 80px rgba(255,215,0,.18);

}

/* MAIN LAYOUT */

.shaktipat-container{

display:flex;

align-items:center;

justify-content:center;

gap:60px;

flex-wrap:wrap;

}

/* =========================
LEFT VIDEO SECTION
========================= */

.shaktipat-video{

flex:1;

min-width:380px;

text-align:center;

}

/* GLOWING TITLE */

.video-title{

font-size:28px;

font-weight:bold;

line-height:1.6;

margin-bottom:20px;

background:linear-gradient(
90deg,
#FFD700 0%,
#fff3a0 25%,
#FFD700 50%,
#fff3a0 75%,
#FFD700 100%
);

background-size:300% auto;

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:goldShine 4s linear infinite;

}

@keyframes goldShine{

0%{
background-position:-300% center;
}

100%{
background-position:300% center;
}

}

/* VIDEO BOX */

.video-wrapper{

border:4px solid #FFD700;

border-radius:20px;

overflow:hidden;

box-shadow:
0 0 25px rgba(255,215,0,.35);

}

/* YOUTUBE VIDEO */

.video-wrapper iframe{

width:100%;

height:450px;

display:block;

}

/* =========================
RIGHT CONTENT
========================= */

.shaktipat-content{

flex:1;

min-width:380px;

}

.shaktipat-content h2{

font-size:40px;

color:#FFD700;

margin-bottom:25px;

line-height:1.4;

}

.shaktipat-content p{

font-size:18px;

line-height:1.9;

text-align:justify;

margin-bottom:25px;

color:#f1f1f1;

}

/* POINTS */

.shaktipat-points{

display:grid;

gap:14px;

margin-bottom:30px;

}

.shaktipat-points div{

background:#1a1a1a;

padding:14px 18px;

border-left:4px solid #FFD700;

border-radius:10px;

font-size:17px;

}

/* BUTTON */

.shaktipat-btn{

background:#FFD700;

color:#000;

border:none;

padding:14px 28px;

font-size:17px;

font-weight:bold;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.shaktipat-btn:hover{

transform:translateY(-3px);

box-shadow:0 0 15px #FFD700;

}

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

@media(max-width:768px){

.shaktipat-border{

padding:25px;

}

.shaktipat-container{

flex-direction:column;

gap:35px;

}

.video-title{

font-size:22px;

}

.video-wrapper iframe{

height:250px;

}

.shaktipat-content{

min-width:auto;

}

.shaktipat-content h2{

font-size:30px;

text-align:center;

}

.shaktipat-content p{

font-size:16px;

text-align:left;

}

.shaktipat-video{

min-width:auto;

}

}

/* =====================================
ONLINE SHAKTIPAAT LIVE SECTION
===================================== */

#online-shaktipat{

padding:90px 20px;

background:#0b0b0b;

color:#ffffff;

}

/* MAIN WRAPPER */

.online-shaktipat-wrapper{

max-width:1200px;

margin:auto;

text-align:center;

}

/* PREMIUM GOLD BORDER */

.online-shaktipat-border{

padding:50px;

border:8px solid #FFD700;

border-radius:30px;

background:#111;

box-shadow:
0 0 25px rgba(255,215,0,.30),
0 0 60px rgba(255,215,0,.15);

}

.online-shaktipat-wrapper h2{

font-size:42px;

font-weight:700;

color:#FFD700;

margin-bottom:15px;

text-shadow:0 0 10px rgba(255,215,0,0.4);

}

.coming-soon{

display:inline-block;

padding:12px 28px;

background:#FFD700;

color:#000;

font-size:18px;

font-weight:bold;

border-radius:50px;

margin-bottom:30px;

box-shadow:0 0 15px rgba(255,215,0,0.5);

}

.online-desc{

max-width:900px;

margin:auto;

font-size:20px;

line-height:1.9;

color:#f5f5f5;

margin-bottom:40px;

}

/* =====================
COUNTDOWN BOX
===================== */

.online-countdown-box{

background:#141414;

border:2px solid #FFD700;

border-radius:20px;

padding:35px;

margin-bottom:45px;

box-shadow:0 0 25px rgba(255,215,0,0.15);

}

.online-countdown-box h3{

color:#FFD700;

font-size:24px;

margin-bottom:25px;

}

#onlineCountdown{

font-size:34px;

font-weight:bold;

color:white;

letter-spacing:2px;

}

/* =====================
NOTIFY BUTTON
===================== */

.online-notify{

margin-bottom:40px;

}

#onlineNotifyBtn{

background:#FFD700;

color:#000;

padding:15px 30px;

font-size:18px;

font-weight:bold;

border:none;

border-radius:50px;

cursor:pointer;

transition:0.3s;

}

#onlineNotifyBtn:hover{

transform:translateY(-4px);

box-shadow:0 0 18px #FFD700;

}

/* =====================
REGISTRATION FORM
===================== */

.online-form-box{

background:#121212;

padding:45px;

border-radius:20px;

border:1px solid #333;

margin-top:30px;

box-shadow:0 0 20px rgba(255,255,255,0.04);

}

.online-form-box h3{

color:#FFD700;

font-size:28px;

margin-bottom:25px;

}

.online-form-note{

font-size:15px;

color:#ddd;

margin-bottom:25px;

line-height:1.8;

}

.online-form-box form{

display:flex;

flex-direction:column;

gap:18px;

}

.online-form-box input,

.online-form-box textarea{

width:100%;

padding:15px;

font-size:16px;

border-radius:12px;

background:#1a1a1a;

color:white;

border:1px solid #444;

transition:.3s;

}

.online-form-box input:focus,

.online-form-box textarea:focus{

outline:none;

border-color:#FFD700;

box-shadow:0 0 8px rgba(255,215,0,0.3);

}

.online-form-box textarea{

resize:vertical;

}

.online-form-box button{

background:#FFD700;

color:#000;

padding:16px;

font-size:18px;

font-weight:bold;

border:none;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

.online-form-box button:hover{

transform:translateY(-3px);

box-shadow:0 0 15px #FFD700;

}

/* =====================
BOTTOM NOTES
===================== */

.online-note{

margin-top:35px;

font-size:16px;

line-height:1.8;

color:#e5e5e5;

background:#111;

padding:20px;

border-left:4px solid #FFD700;

border-radius:10px;

}

.important-note{

margin-top:20px;

font-size:16px;

line-height:1.9;

background:#181818;

padding:25px;

border-left:5px solid #ff4444;

border-radius:12px;

color:#f5f5f5;

text-align:left;

}

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

@media(max-width:768px){

.online-shaktipat-border{

padding:25px;

}

.online-shaktipat-wrapper h2{

font-size:30px;

}

.coming-soon{

font-size:15px;

padding:10px 20px;

}

.online-desc{

font-size:17px;

}

.online-countdown-box{

padding:20px;

}

.online-countdown-box h3{

font-size:20px;

}

#onlineCountdown{

font-size:22px;

line-height:1.8;

}

.online-form-box{

padding:25px;

}

.online-form-box h3{

font-size:22px;

}

.online-form-box input,

.online-form-box textarea{

font-size:15px;

padding:13px;

}

.online-form-box button{

font-size:16px;

}

}

/* =====================================
   SUVAS DRAV PREMIUM SECTION
===================================== */

#suvas-drav{

padding:80px 20px;

background:#0b0b0b;

}

.suvas-container{

max-width:1250px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

gap:50px;

padding:50px;

border:4px solid gold;

border-radius:25px;

background:#111;

box-shadow:
0 0 20px rgba(255,215,0,.20);

}

/* LEFT SIDE */

.suvas-content{

flex:1;

}

.suvas-badge{

display:inline-block;

background:gold;

color:black;

padding:10px 22px;

font-weight:bold;

border-radius:50px;

margin-bottom:20px;

}

.suvas-content h2{

font-size:40px;

color:gold;

margin-bottom:25px;

line-height:1.4;

}

.suvas-content p{

font-size:18px;

line-height:1.9;

text-align:justify;

color:#f5f5f5;

margin-bottom:25px;

}

.suvas-points{

display:flex;

flex-direction:column;

gap:12px;

}

.suvas-points div{

background:#1a1a1a;

padding:12px 18px;

border-left:4px solid gold;

border-radius:8px;

}

/* BUTTON */

.suvas-btn{

margin-top:25px;

background:gold;

color:black;

border:none;

padding:15px 30px;

font-size:17px;

font-weight:bold;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.suvas-btn:hover{

transform:translateY(-3px);

box-shadow:0 0 15px gold;

}

/* RIGHT SIDE */

.suvas-image{

flex:1;

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

/* GOLDEN LIGHT */

.suvas-image::before{

content:"";

position:absolute;

width:320px;

height:320px;

border-radius:50%;

background:rgba(255,215,0,.20);

filter:blur(60px);

z-index:1;

}

/* ROTATING BOTTLE */

.suvas-image img{

max-width:320px;

width:100%;

position:relative;

z-index:2;

animation:rotateBottle 12s linear infinite;

transform-style:preserve-3d;

}

/* ROTATION */

@keyframes rotateBottle{

0%{

transform:rotateY(0deg);

}

100%{

transform:rotateY(360deg);

}

}

/* MOBILE */

@media(max-width:768px){

.suvas-container{

flex-direction:column;

padding:25px;

}

.suvas-content h2{

font-size:30px;

text-align:center;

}

.suvas-content p{

font-size:16px;

}

.suvas-image img{

max-width:220px;

}

}

/* =====================================
ABOUT SIDDHYOG PREMIUM SECTION
===================================== */

#about{

padding:80px 20px;

background:#0b0b0b;

}

/* GOLDEN BORDER */

.about-siddhyog-border{

max-width:1350px;

margin:auto;

padding:50px;

border:8px solid #FFD700;

border-radius:30px;

background:#111;

box-shadow:
0 0 30px rgba(255,215,0,.35),
0 0 80px rgba(255,215,0,.18);

}

/* CONTAINER */

.about-siddhyog-container{

width:100%;

}

/* HEADING */

.about-siddhyog-container h2{

font-size:42px;

text-align:center;

color:#FFD700;

margin-bottom:30px;

animation:siddhyogGlow 2s ease-in-out infinite alternate;

}

/* GOLDEN GLOW ANIMATION */

@keyframes siddhyogGlow{

from{

text-shadow:
0 0 10px rgba(255,215,0,.4);

}

to{

text-shadow:
0 0 20px rgba(255,215,0,.9),
0 0 40px rgba(255,215,0,.7);

}

}

/* TEXT */

.about-siddhyog-container p{

font-size:18px;

line-height:2;

text-align:justify;

color:#f5f5f5;

margin-bottom:30px;

}

/* FEATURES */

.siddhyog-features{

display:grid;

gap:14px;

margin-bottom:35px;

}

.siddhyog-features div{

background:#1a1a1a;

padding:15px 20px;

border-left:5px solid #FFD700;

border-radius:10px;

font-size:17px;

transition:.3s;

}

.siddhyog-features div:hover{

transform:translateX(8px);

box-shadow:
0 0 15px rgba(255,215,0,.25);

}

/* BUTTON RIGHT SIDE */

.siddhyog-btn{

display:block;

margin-left:auto;

background:#FFD700;

color:#000;

border:none;

padding:16px 30px;

font-size:18px;

font-weight:bold;

border-radius:50px;

cursor:pointer;

transition:.3s;

box-shadow:
0 0 15px rgba(255,215,0,.4);

}

.siddhyog-btn:hover{

transform:translateY(-4px);

box-shadow:
0 0 25px rgba(255,215,0,.9);

}

/* MOBILE */

@media(max-width:768px){

.about-siddhyog-border{

padding:25px;

}

.about-siddhyog-container h2{

font-size:30px;

}

.about-siddhyog-container p{

font-size:16px;

text-align:left;

}

.siddhyog-btn{

margin:20px auto 0;

width:100%;

max-width:320px;

font-size:16px;

}

}


