/* =========================
   SHRI RADHA TRAVELS
   PREMIUM WEBSITE
========================= */

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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f7f9fc;
color:#1f2937;
overflow-x:hidden;
}

/* ===== Colors ===== */

:root{

--primary:#2563eb;

--secondary:#ffffff;

--gold:#d4af37;

--dark:#0f172a;

--light:#f8fafc;

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

--radius:20px;

}
.trending-section { padding: 40px 20px; text-align: center; }

.destinations-container { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding: 20px; 
    scroll-behavior: smooth;
    white-space: nowrap;
}

.dest-card {
    /* Purani values hata dein aur naye values use karein */
    width: 150px;            /* Fixed width, same as height */
    height: 150px;           /* Fixed height, same as width */
    border-radius: 50%;      /* Ye ekdam gol (circle) bana dega */
    
    /* Baaki styling jo circle ke andar ke content ko manage karegi */
    display: flex;           
    justify-content: center;
    align-items: center;
    overflow: hidden;       /* Taaki agar photo badi ho, toh wo circle ke bahar na nikle */
    border: 2px solid #d4af37; /* Agar aap gold border chahte hain */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 0;              /* Padding ko zero karna padega taaki content circle ke beech mein rahe */
}

/* Agar circle ke andar image hai, toh use bhi fit karna hoga */
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Photo stretch nahi hogi, balki area fill karegi */
}

/* Agar circle ke andar sirf text hai (jaise 'Delhi') */
.dest-card .location-text {
    text-align: center;
    font-weight: bold;
    margin: 0;
}

.circle { 
    width: 100px; height: 100px; 
    border-radius: 50%; 
    background: #eee; 
    margin: 0 auto 10px; 
    border: 3px solid var(--gold); 
}

.view-btn { 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: bold; 
    display: block; 
    margin-top: 10px; 
}
/* ==================
LOADING SCREEN
=================== */

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-content{

text-align:center;

}

.loader-logo{

width:90px; 

margin-bottom:20px;

animation:logoFloat 2s infinite ease-in-out;

}

.loader-content h1{

font-size:38px;

color:var(--primary);

font-weight:700;

margin-bottom:15px;

}

.loader-content p{

color:#666;

font-size:16px;

}

.loading-bar{

width:220px;

height:8px;

background:#e5e7eb;

border-radius:30px;

overflow:hidden;

margin:20px auto;

}

.loading-bar span{

display:block;

height:100%;

width:0;

background:linear-gradient(90deg,var(--primary),var(--gold));

animation:loading 2.5s forwards;

}

@keyframes loading{

100%{

width:100%;

}

}

@keyframes logoFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}
/* ===========================
        PREMIUM NAVBAR
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{
    width:90%;
    max-width:1400px;
    margin:20px auto;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo h2{
    font-size:24px;
    color:var(--primary);
    font-weight:700;
}

.logo span{
    font-size:13px;
    color:#666;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover{
    color:var(--primary);
}

.nav-buttons{
    display:flex;
    gap:12px;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:var(--primary);
}

.whatsapp-btn{
    background:#22c55e;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-3px);
}
/* ===========================
          HERO SECTION
=========================== */

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

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

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1.5s;
}

.slide:nth-child(1){
background-image:url("images/hero/hero1.jpg");
opacity:1;
}

.slide:nth-child(2){
background-image:url("images/hero/hero2.jpg");
}

.slide:nth-child(3){
background-image:url("images/hero/hero3.jpg");
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    text-align:center;
    color:white;
    z-index:5;
    max-width:850px;
}

.hero-content h1{
    font-size:75px;
    font-weight:800;
    line-height:1.1;
}

.hero-content span{
    color:var(--gold);
}

.hero-content p{
    margin:25px 0;
    font-size:22px;
}

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

.btn-primary,
.btn-secondary{
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn-primary{
    background:var(--gold);
    color:#111;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}
/* ===========================
      BOOKING SECTION
=========================== */

.booking-section{
    position:relative;
    margin-top:-120px;
    z-index:20;
    display:flex;
    justify-content:center;
    padding:0 20px 100px;
}

.booking-card{

    width:100%;
    max-width:1200px;

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

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.3);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    border-radius:30px;

    padding:45px;

}

.booking-card h2{

text-align:center;

font-size:38px;

color:var(--primary);

margin-bottom:35px;

font-weight:700;

}

.trip-type{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:35px;

}

.trip-type button{

padding:14px 35px;

border:none;

border-radius:50px;

background:#edf4ff;

cursor:pointer;

font-size:16px;

font-weight:600;

transition:.4s;

}

.trip-type .active{

background:var(--primary);

color:white;

}

.trip-type button:hover{

background:var(--gold);

color:#111;

}

.booking-card form{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:22px;

}

.booking-card input{

height:60px;

padding:0 18px;

border:none;

outline:none;

border-radius:16px;

font-size:15px;

background:white;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.booking-card input:focus{

border:2px solid var(--primary);

}

.booking-card form button{

height:60px;

background:linear-gradient(135deg,var(--primary),#3b82f6);

color:white;

border:none;

border-radius:16px;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.4s;

}

.booking-card form button:hover{

transform:translateY(-4px);

background:linear-gradient(135deg,var(--gold),#f6c453);

color:#111;

}
/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:992px){

.navbar{

flex-direction:column;

gap:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

}

.hero-content h1{

font-size:52px;

}

.booking-card form{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.booking-card{

padding:30px;

}

.booking-card form{

grid-template-columns:1fr;

}

.trip-type{

flex-direction:column;

}

}
.trending-section { padding: 40px 20px; background: #f9f9f9; }
.destinations-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.dest-card {
    min-width: 150px; 
    padding: 20px;
    background: #fff;
    border-radius: 50px !important; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #003399;
    color: #d4af37;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e6e6e6;
    border: 3px solid #d4af37;
    margin-bottom: 10px;
    transition: 0.3s;
}

.circle:hover { 
    transform: scale(1.1); 
}

body {
    padding-top: 130px; /* Isse navbar ke niche proper jagah ban jayegi aur text overlap nahi hoga */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
/* ===========================
   LUXURY TOURS & BLOGS CARDS UPGRADE
=========================== */

/* Section background & overall styling */
.tours-section, .blogs-section, .trending-section {
    background: linear-gradient(135deg, #0b0f19 0%, #1e293b 50%, #0b0f19 100%);
    padding: 60px 20px;
    position: relative;
}

/* Luxury Animated Cards Design */
.tour-card, .blog-card, .dest-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px);
    border: 2px solid #d4af37 !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Card thoda upar aayega aur golden glow badh jayega */
.tour-card:hover, .blog-card:hover, .dest-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #f6c453 !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Headings ko aur zyada attractive aur golden touch dene ke liye */
.tour-card h3, .blog-card h3, h2 {
    color: #f6c453 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Buttons ko luxury gold gradient look dene ke liye */
.tour-card a, .blog-card a, .tour-card button, .blog-card button {
    background: linear-gradient(135deg, #d4af37, #f6c453) !important;
    color: #0b0f19 !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.tour-card a:hover, .blog-card a:hover {
    background: #ffffff !important;
    color: #0b0f19 !important;
    transform: scale(1.05);
}
/* ===========================
   LUXURY GOLDEN & BLUE UPGRADE
=========================== */

/* Section background: Rich Golden Gradient Base with Deep Blue contrast */
.tours-section, .blogs-section, .trending-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    padding: 60px 20px;
    position: relative;
    border-bottom: 2px solid #d4af37;
}

/* Cards Design: Golden border with Glassmorphism & Smooth Animation */
.tour-card, .blog-card, .dest-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)) !important;
    backdrop-filter: blur(20px);
    border: 2px solid #d4af37 !important;
    border-radius: 24px !important;
    padding: 35px !important;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Animation: Card zoom-in & golden glow effect */
.tour-card:hover, .blog-card:hover, .dest-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #f6c453 !important;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95)) !important;
}

/* Headings Styling */
.tour-card h3, .blog-card h3, h2 {
    color: #f6c453 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Buttons Styling */
.tour-card a, .blog-card a, .tour-card button, .blog-card button {
    background: linear-gradient(135deg, #d4af37, #f6c453) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.tour-card a:hover, .blog-card a:hover {
    background: #ffffff !important;
    color: #0f172a !important;
    transform: scale(1.08);
}
/* Animated Golden Border for Photos */
img, .royal-image {
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    animation: goldShine 3s infinite alternate;
}

@keyframes goldShine {
    0% {
        border-color: #d4af37;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    }
    50% {
        border-color: #ffd700;
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
    }
    100% {
        border-color: #d4af37;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    }
}
/* Golden Animated Border for Details/Explore Page Images */
.destination-details img, 
.explore-content img, 
.detail-card img,
.details-container img {
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    animation: goldShine 3s infinite alternate;
}
/* Fixed & Bigger Navbar */
header, .navbar, nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 9, 19, 0.95); /* Thoda dark premium background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 20px !important; /* Size bada karne ke liye padding badha di */
}

/* Body ke upar space taaki content navbar ke peeche na chhupe */
body {
    padding-top: 90px !important; 
}