/* CSS Document */
/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#F8EFE5;
}

a{
    text-decoration:none;
    color:inherit;
}

/* ===== TOP BAR ===== */

.top-bar{
    background:#7A1E2C;
    color:#fff;
    font-size:14px;
    padding:8px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid #C6A75E;
}

.top-bar span{
    margin:0 8px;
}

/* ===== NAVBAR ===== */

.navbar{
    background:#ffffff;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
    font-family:'Playfair Display', serif;
    font-size:26px;
    color:#7A1E2C;
}

.logo span{
    display:block;
    font-size:12px;
    color:#C6A75E;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:30px;
    font-weight:500;
}

.nav-links a{
    position:relative;
    padding-bottom:5px;
}

.nav-links a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#C6A75E;
    left:0;
    bottom:0;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.book-btn{
    background:#7A1E2C;
    color:#fff;
    padding:10px 18px;
    border-radius:4px;
    font-size:14px;
    margin-left:20px;
}

.book-btn:hover{
    background:#C6A75E;
    color:#000;
}

/* ===== HAMBURGER ===== */

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.hamburger div{
    width:25px;
    height:3px;
    background:#7A1E2C;
}

/* ===== MOBILE MENU ===== */

.mobile-menu{
    display:none;
    flex-direction:column;
    background:#fff;
    width:100%;
    position:absolute;
    top:100%;
    left:0;
    border-top:1px solid #ddd;
}

.mobile-menu a{
    padding:15px 20px;
    border-bottom:1px solid #eee;
    color:#7A1E2C;
    font-weight:500;
}

.mobile-menu a:last-child{
    border-bottom:none;
}

.mobile-menu.active{
    display:flex;
}

/* ===== HERO SECTION ===== */

.hero{
    height:90vh;
    background:linear-gradient(rgba(224,122,138,0.6),rgba(122,30,44,0.6)),
     url('../images/BANNER.cms') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-family:'Playfair Display', serif;
    font-size:42px;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    margin-bottom:30px;
}

.hero-buttons a{
    padding:12px 22px;
    margin:0 10px;
    border-radius:4px;
    font-weight:500;
    display:inline-block;
}

.call-btn{
    background:#7A1E2C;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#000;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .book-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .navbar{
        position:relative;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero{
        height:85vh;
    }

    .top-bar{
        flex-direction:column;
        gap:5px;
        text-align:center;
        padding:10px;
    }
}

/* ===== ABOUT JAIPUR SECTION ===== */

.about-jaipur{
    padding:80px 20px;
    background:#ffffff;
}

.container{
    max-width:1100px;
    margin:auto;
}

.about-jaipur h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#7A1E2C;
    margin-bottom:25px;
    text-align:center;
}

.about-jaipur h3{
    font-size:24px;
    color:#7A1E2C;
    margin-top:35px;
    margin-bottom:15px;
}

.about-jaipur p{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:18px;
}

/* CTA BOX */

.cta-box{
    background:#F8EFE5;
    padding:30px;
    margin:40px 0;
    text-align:center;
    border-left:5px solid #C6A75E;
}

.cta-box h4{
    font-size:22px;
    margin-bottom:15px;
    color:#7A1E2C;
}

/* Responsive */

@media(max-width:768px){

    .about-jaipur h2{
        font-size:26px;
    }

    .about-jaipur h3{
        font-size:20px;
    }

    .cta-box{
        padding:20px;
    }
}

/* ===== PACKAGES SECTION ===== */

.packages-section{
    padding:80px 20px;
    background:#F8EFE5;
    text-align:center;
}

.packages-section h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#7A1E2C;
    margin-bottom:15px;
}

.section-subtitle{
    max-width:700px;
    margin:0 auto 50px auto;
    color:#555;
    font-size:16px;
}

/* GRID */

.packages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.package-card{
    background:#ffffff;
    padding:30px 25px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    position:relative;
    text-align:left;
}

.package-card:hover{
    transform:translateY(-8px);
}

.package-card h3{
    color:#7A1E2C;
    margin-bottom:15px;
    font-size:22px;
}

.package-card ul{
    margin-bottom:20px;
    padding-left:18px;
}

.package-card ul li{
    margin-bottom:8px;
    font-size:14px;
    color:#333;
}

.package-desc{
    font-size:14px;
    margin-bottom:20px;
    color:#555;
}

/* Buttons */

.package-buttons{
    display:flex;
    gap:10px;
}

.call-btn{
    background:#7A1E2C;
    color:#fff;
    padding:8px 15px;
    border-radius:4px;
    font-size:14px;
}

.whatsapp-btn{
    background:#25D366;
    color:#000;
    padding:8px 15px;
    border-radius:4px;
    font-size:14px;
}

/* Featured Card */

.featured{
    border:2px solid #C6A75E;
}

.badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#C6A75E;
    color:#000;
    padding:5px 10px;
    font-size:12px;
    border-radius:4px;
}

/* RESPONSIVE */

@media(max-width:992px){
    .packages-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .packages-grid{
        grid-template-columns:1fr;
    }

    .package-card{
        text-align:center;
    }

    .package-buttons{
        justify-content:center;
    }
}

/* ===== DESTINATIONS SECTION ===== */

.destinations-section{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.destinations-section h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#7A1E2C;
    margin-bottom:15px;
}

.destinations-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

/* CARD */

.destination-card{
    background:#F8EFE5;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    text-align:left;
    color:#333;
}

.destination-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.destination-content{
    padding:20px;
}

.destination-content h3{
    color:#7A1E2C;
    margin-bottom:10px;
}

.destination-content p{
    font-size:14px;
    color:#555;
}

.destination-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */

@media(max-width:992px){
    .destinations-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .destinations-grid{
        grid-template-columns:1fr;
    }

    .destination-card{
        text-align:center;
    }
}

/* ===== ARCH DIVIDER ===== */

.arch-divider{
    width:100%;
    height:60px;
    background:
    radial-gradient(circle at 50% 100%, #7A1E2C 40px, transparent 41px),
    linear-gradient(#F8EFE5, #F8EFE5);
    background-size:120px 60px;
    background-repeat:repeat-x;
    background-position:bottom center;
}

/* ===== WHY CHOOSE US ===== */

.why-choose-us{
    padding:80px 20px;
    background:#F8EFE5;
    text-align:center;
}

.why-choose-us h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#7A1E2C;
    margin-bottom:15px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.feature-box{
    background:#ffffff;
    padding:30px 20px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
    text-align:left;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box h3{
    font-size:18px;
    color:#7A1E2C;
    margin-bottom:10px;
}

.feature-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
    .features-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .features-grid{
        grid-template-columns:1fr;
    }

    .feature-box{
        text-align:center;
    }
}
/* ===== IMAGE DIVIDER ===== */

.section-divider img{
    width:100%;
    display:block;
}

/* ===== FAQ SECTION ===== */

.faq-section{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.faq-section h2{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#7A1E2C;
    margin-bottom:15px;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0 auto;
    text-align:left;
}

/* FAQ ITEM */

.faq-item{
    border-bottom:1px solid #eee;
    margin-bottom:15px;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:18px 0;
    text-align:left;
    font-size:16px;
    font-weight:600;
    color:#7A1E2C;
    cursor:pointer;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:0;
    font-size:20px;
    transition:0.3s;
}

.faq-item.active .faq-question::after{
    content:"-";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
}

.faq-answer p{
    padding-bottom:15px;
    color:#555;
    font-size:14px;
    line-height:1.6;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer{
    max-height:200px;
}

/* RESPONSIVE */

@media(max-width:768px){
    .faq-section h2{
        font-size:26px;
    }

    .faq-question{
        font-size:15px;
    }
}

/* ================= FOOTER ================= */

.main-footer {
    background: #7A1E2C;
    color: #fff;
    padding: 60px 8% 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: #fcebdc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #fcebdc;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* Bottom Strip */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    font-size: 14px;
    color: #fcebdc;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 20px;
    }

    .footer-col:last-child {
        border-bottom: none;
    }
}


/* ================= jaipursightseeing page ================= */
/* INNER HERO */

.inner-hero{

position:relative;
height:420px;
background:url('../images/inner.png') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;

}

.inner-hero-overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.0);

}

.inner-hero-content{

position:relative;
max-width:800px;
padding:20px;

}

.inner-hero-content h1{

font-size:42px;
margin-bottom:15px;
font-weight:700;

}

.inner-hero-content p{

font-size:17px;
line-height:1.6;
margin-bottom:25px;

}

.hero-buttons{

display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;

}

.call-btn{

background:#7b1e3a;
color:#fff;
padding:12px 28px;
text-decoration:none;
border-radius:5px;
font-weight:500;

}

.whatsapp-btn{

background:#25D366;
color:#fff;
padding:12px 28px;
text-decoration:none;
border-radius:5px;
font-weight:500;

}

/* MOBILE */

@media(max-width:768px){

.inner-hero{

height:360px;

}

.inner-hero-content h1{

font-size:30px;

}

.inner-hero-content p{

font-size:15px;

}

}

/* CAB CATEGORY */

.cab-category{

padding:80px 8%;
background:#fff7f3;
text-align:center;

}

.section-title{

font-size:34px;
margin-bottom:10px;
color:#7b1e3a;

}

.section-subtitle{

max-width:700px;
margin:auto;
margin-bottom:50px;
color:#555;
font-size:16px;

}

.cab-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.cab-card{

background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;

}

.cab-card:hover{

transform:translateY(-8px);

}

.cab-card img{

width:100%;
height:220px;
object-fit:cover;

}

.cab-card h3{

margin:20px 0 10px;
color:#7b1e3a;

}

.cab-card p{

padding:0 20px;
font-size:15px;
color:#555;

}

.cab-btn{

display:inline-block;
margin:20px 0 25px;
background:#7b1e3a;
color:#fff;
padding:10px 24px;
text-decoration:none;
border-radius:4px;

}

.cab-btn:hover{

background:#5a142a;

}

/* MOBILE */

@media(max-width:900px){

.cab-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.cab-grid{

grid-template-columns:1fr;

}

}
/* DESTINATIONS SECTION */

.destinations{
padding:90px 6%;
background:#fff7f2;
}

.destinations-container{
max-width:1400px;
margin:auto;
}

.section-title{
text-align:center;
font-size:36px;
color:#7b1e3a;
margin-bottom:15px;
}

.section-intro{
text-align:center;
max-width:850px;
margin:auto;
margin-bottom:60px;
font-size:16px;
line-height:1.7;
color:#555;
}

.destinations-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.destination-card{
position:relative;
display:block;
overflow:hidden;
border-radius:10px;
text-decoration:none;
color:#fff;
}

.destination-card img{
width:100%;
height:340px;
object-fit:cover;
transition:0.4s;
}

.destination-card:hover img{
transform:scale(1.05);
}

.destination-info{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px;
background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.destination-info h3{
margin-bottom:8px;
font-size:22px;
}

.destination-info p{
font-size:14px;
line-height:1.4;
}

/* TABLET */

@media(max-width:900px){

.destinations-grid{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.destination-card img{
height:260px;
}

.section-title{
font-size:28px;
}

.section-intro{
font-size:15px;
}

}
/* SIGHTSEEING PACKAGES */

.sightseeing-packages{
padding:90px 6%;
background:#ffffff;
}

.packages-container{
max-width:1400px;
margin:auto;
}

.packages-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.package-card{
background:#fff7f2;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.package-card:hover{
transform:translateY(-8px);
}

.package-card img{
width:100%;
height:220px;
object-fit:cover;
}

.package-content{
padding:25px;
}

.package-content h3{
color:#7b1e3a;
margin-bottom:15px;
font-size:22px;
}

.package-content ul{
padding-left:18px;
margin-bottom:15px;
}

.package-content ul li{
margin-bottom:6px;
font-size:15px;
color:#555;
}

.tour-duration{
font-weight:600;
margin-bottom:18px;
color:#333;
}

.package-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.call-btn{
background:#7b1e3a;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:4px;
font-size:14px;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:4px;
font-size:14px;
}

/* TABLET */

@media(max-width:900px){

.packages-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.packages-grid{
grid-template-columns:1fr;
}

.package-card img{
height:240px;
}

}
/* JAIPUR SHOPPING SECTION */

.jaipur-shopping{
padding:90px 6%;
background:#fff7f2;
}

.shopping-container{
max-width:1400px;
margin:auto;
}

.shopping-subtitle{
font-size:26px;
color:#7b1e3a;
margin:50px 0 25px;
text-align:center;
}


/* CATEGORY GRID */

.shopping-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-bottom:50px;
}

.shopping-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.shopping-card:hover{
transform:translateY(-6px);
}

.shopping-card img{
width:100%;
height:160px;
object-fit:cover;
}

.shopping-card h4{
margin:15px 0 8px;
color:#7b1e3a;
}

.shopping-card p{
font-size:14px;
padding:0 15px 20px;
color:#555;
}


/* MARKETS GRID */

.markets-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.market-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.market-card:hover{
transform:translateY(-6px);
}

.market-card img{
width:100%;
height:200px;
object-fit:cover;
}

.market-card h4{
margin:15px 0 8px;
color:#7b1e3a;
}

.market-card p{
font-size:14px;
padding:0 15px 20px;
color:#555;
}


/* TABLET */

@media(max-width:1000px){

.shopping-grid{
grid-template-columns:repeat(2,1fr);
}

.markets-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* MOBILE */

@media(max-width:600px){

.shopping-grid{
grid-template-columns:1fr;
}

.markets-grid{
grid-template-columns:1fr;
}

.shopping-card img{
height:220px;
}

.market-card img{
height:220px;
}

}
.jaipur-seo-section{
  width:100%;
  padding:80px 20px;
  background:#fff7f5;
}

.seo-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.seo-container h2{
  font-size:32px;
  margin-bottom:25px;
  color:#6b1d1d;
}

.seo-container p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:18px;
  color:#444;
}

/* Mobile */
@media (max-width:768px){

  .jaipur-seo-section{
    padding:50px 18px;
  }

  .seo-container h2{
    font-size:24px;
  }

  .seo-container p{
    font-size:15px;
  }

}

/* ================= packages page ================= */
.packages-banner{
background:url('../images/packages banner.png') center/cover no-repeat;
}
.packages-intro{
padding:80px 6%;
background:#fff7f2;
}

.packages-intro-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.packages-intro-container h2{
font-size:34px;
color:#7b1e3a;
margin-bottom:25px;
}

.packages-intro-container p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:18px;
}

/* MOBILE */

@media(max-width:768px){

.packages-intro{
padding:50px 20px;
}

.packages-intro-container h2{
font-size:26px;
}

.packages-intro-container p{
font-size:15px;
}

}
.city-tour-packages{
padding:90px 6%;
background:#ffffff;
}

.packages-wrapper{
max-width:1300px;
margin:auto;
text-align:center;
}

.section-title{
font-size:34px;
color:#7b1e3a;
margin-bottom:10px;
}

.section-description{
max-width:750px;
margin:auto;
margin-bottom:50px;
color:#555;
font-size:16px;
line-height:1.7;
}

.packages-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.tour-card{
background:#fff7f2;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.tour-card:hover{
transform:translateY(-6px);
}

.tour-card img{
width:100%;
height:220px;
object-fit:cover;
}

.tour-content{
padding:25px;
text-align:left;
}

.tour-content h3{
color:#7b1e3a;
margin-bottom:12px;
}

.tour-content ul{
padding-left:18px;
margin-bottom:15px;
}

.tour-content ul li{
font-size:14px;
margin-bottom:6px;
color:#555;
}

.tour-time{
font-weight:600;
margin-bottom:15px;
}

.details-btn{
display:inline-block;
background:#7b1e3a;
color:#fff;
padding:10px 22px;
text-decoration:none;
border-radius:4px;
font-size:14px;
}

.details-btn:hover{
background:#5b1329;
}

/* TABLET */

@media(max-width:900px){

.packages-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.packages-grid{
grid-template-columns:1fr;
}

.tour-card img{
height:240px;
}

}
.nearby-tours{
padding:90px 6%;
background:#fff7f2;
}

.nearby-container{
max-width:1300px;
margin:auto;
text-align:center;
}

.nearby-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.nearby-card{
background:#ffffff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.nearby-card:hover{
transform:translateY(-6px);
}

.nearby-card img{
width:100%;
height:230px;
object-fit:cover;
}

.nearby-content{
padding:25px;
}

.nearby-content h3{
color:#7b1e3a;
margin-bottom:12px;
}

.nearby-content p{
font-size:15px;
color:#555;
line-height:1.6;
margin-bottom:18px;
}

.tour-btn{
display:inline-block;
background:#7b1e3a;
color:#fff;
padding:10px 22px;
border-radius:4px;
text-decoration:none;
font-size:14px;
}

.tour-btn:hover{
background:#5b1329;
}

/* TABLET */

@media(max-width:900px){

.nearby-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.nearby-grid{
grid-template-columns:1fr;
}

.nearby-card img{
height:240px;
}

}
.experience-tours{
padding:90px 6%;
background:#ffffff;
}

.experience-container{
max-width:1300px;
margin:auto;
text-align:center;
}

.experience-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.experience-card{
background:#fff7f2;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.experience-card:hover{
transform:translateY(-6px);
}

.experience-card img{
width:100%;
height:230px;
object-fit:cover;
}

.experience-content{
padding:25px;
}

.experience-content h3{
color:#7b1e3a;
margin-bottom:12px;
}

.experience-content p{
font-size:15px;
line-height:1.6;
color:#555;
margin-bottom:18px;
}

.experience-btn{
display:inline-block;
background:#7b1e3a;
color:#fff;
padding:10px 22px;
border-radius:4px;
text-decoration:none;
font-size:14px;
}

.experience-btn:hover{
background:#5b1329;
}

/* TABLET */

@media(max-width:900px){

.experience-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.experience-grid{
grid-template-columns:1fr;
}

.experience-card img{
height:240px;
}

}
.why-packages{
padding:90px 6%;
background:#fff7f2;
}

.why-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.why-item{
background:#ffffff;
padding:30px 25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-item:hover{
transform:translateY(-5px);
}

.why-icon{
font-size:34px;
height:75;
width:75;
margin-bottom:15px;
}

.why-item h3{
color:#7b1e3a;
margin-bottom:10px;
}

.why-item p{
font-size:14px;
line-height:1.6;
color:#555;
}

/* TABLET */

@media(max-width:900px){

.why-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.why-grid{
grid-template-columns:1fr;
}

}
.packages-faq{
padding:90px 6%;
background:#ffffff;
}

.packages-faq-container{
max-width:1100px;
margin:auto;
}

.packages-faq-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.packages-faq-list{
display:flex;
flex-direction:column;
gap:25px;
}

.packages-faq-item{
background:#fff7f2;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.07);
}

.packages-faq-item h3{
color:#7b1e3a;
margin-bottom:10px;
font-size:18px;
}

.packages-faq-item p{
color:#555;
line-height:1.6;
font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

.packages-faq-title{
font-size:26px;
}

.packages-faq-item h3{
font-size:16px;
}

.packages-faq-item p{
font-size:14px;
}

}

.destinations-banner{
background-image:url('../images/banner destination.webp');
}

.destination-intro{
padding:80px 6%;
background:#fff;
}

.destination-intro-container{
max-width:1000px;
margin:auto;
text-align:center;
}

.destination-intro h2{
font-size:34px;
color:#7b1e3a;
margin-bottom:25px;
}

.destination-intro p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.destination-intro{
padding:60px 6%;
}

.destination-intro h2{
font-size:26px;
}

.destination-intro p{
font-size:15px;
}

}
.destination-categories{
padding:90px 6%;
background:#fff7f2;
}

.destination-categories-container{
max-width:1200px;
margin:auto;
}

.destination-categories-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.destination-categories-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.destination-category-card{
background:#fff;
border-radius:8px;
overflow:hidden;
text-decoration:none;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.3s;
}

.destination-category-card:hover{
transform:translateY(-6px);
}

.destination-category-card img{
width:100%;
height:220px;
object-fit:cover;
}

.destination-category-card h3{
color:#7b1e3a;
font-size:20px;
margin:15px;
}

.destination-category-card p{
color:#555;
font-size:14px;
line-height:1.6;
margin:0 15px 20px;
}

/* TABLET */

@media(max-width:992px){

.destination-categories-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.destination-categories-grid{
grid-template-columns:1fr;
}

.destination-category-card img{
height:240px;
}

.destination-categories-title{
font-size:26px;
}

}
.jaipur-attractions{
padding:90px 6%;
background:#ffffff;
}

.jaipur-attractions-container{
max-width:1200px;
margin:auto;
}

.jaipur-attractions-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.jaipur-attractions-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.jaipur-attraction-card{
background:#fff7f2;
border-radius:8px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.jaipur-attraction-card img{
width:100%;
height:200px;
object-fit:cover;
}

.jaipur-attraction-card h3{
color:#7b1e3a;
font-size:18px;
margin:15px;
}

.jaipur-attraction-card p{
font-size:14px;
color:#555;
line-height:1.6;
margin:0 15px 20px;
}

/* TABLET */

@media(max-width:992px){

.jaipur-attractions-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.jaipur-attractions-grid{
grid-template-columns:1fr;
}

.jaipur-attraction-card img{
height:230px;
}

.jaipur-attractions-title{
font-size:26px;
}

}
.sightseeing-cab-cta{
padding:90px 6%;
background:#7b1e3a;
color:#fff;
text-align:center;
}

.sightseeing-cab-cta-container{
max-width:900px;
margin:auto;
}

.sightseeing-cab-cta h2{
font-size:34px;
margin-bottom:20px;
}

.sightseeing-cab-cta p{
font-size:16px;
line-height:1.8;
margin-bottom:35px;
}

.sightseeing-cab-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.cta-cab-btn{
background:#fff;
color:#7b1e3a;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cta-cab-btn:hover{
background:#f5d7c6;
}

/* MOBILE */

@media(max-width:768px){

.sightseeing-cab-cta h2{
font-size:26px;
}

.sightseeing-cab-cta p{
font-size:15px;
}

.cta-cab-btn{
padding:12px 22px;
font-size:14px;
}

}
.destinations-seo-content{
padding:90px 6%;
background:#fff7f2;
}

.destinations-seo-container{
max-width:1000px;
margin:auto;
}

.destinations-seo-container h2{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:30px;
}

.destinations-seo-container p{
font-size:16px;
line-height:1.9;
color:#555;
margin-bottom:18px;
}

/* MOBILE */

@media(max-width:768px){

.destinations-seo-content{
padding:60px 6%;
}

.destinations-seo-container h2{
font-size:26px;
}

.destinations-seo-container p{
font-size:15px;
}

}
.dest-faq{
padding:90px 6%;
background:#ffffff;
}

.dest-faq-container{
max-width:1000px;
margin:auto;
}

.dest-faq-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.dest-faq-list{
display:flex;
flex-direction:column;
gap:25px;
}

.dest-faq-item{
background:#fff7f2;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.dest-faq-item h3{
color:#7b1e3a;
font-size:18px;
margin-bottom:10px;
}

.dest-faq-item p{
color:#555;
font-size:15px;
line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

.dest-faq-title{
font-size:26px;
}

.dest-faq-item h3{
font-size:16px;
}

.dest-faq-item p{
font-size:14px;
}

}
.about-banner{
background-image:url('../images/about us page.png');
}
.about-intro{
padding:90px 6%;
background:#ffffff;
}

.about-intro-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-intro-text h2{
font-size:34px;
color:#7b1e3a;
margin-bottom:20px;
}

.about-intro-text p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.about-intro-image img{
width:100%;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* TABLET */

@media(max-width:992px){

.about-intro-container{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:768px){

.about-intro{
padding:60px 6%;
}

.about-intro-text h2{
font-size:26px;
}

.about-intro-text p{
font-size:15px;
}

}
.about-why-choose{
padding:90px 6%;
background:#fff7f2;
}

.about-why-container{
max-width:1200px;
margin:auto;
}

.about-why-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.about-why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.about-why-card{
background:#ffffff;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.about-why-card h3{
color:#7b1e3a;
font-size:18px;
margin-bottom:10px;
}

.about-why-card p{
font-size:14px;
line-height:1.7;
color:#555;
}

/* TABLET */

@media(max-width:992px){

.about-why-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.about-why-grid{
grid-template-columns:1fr;
}

.about-why-title{
font-size:26px;
}

.about-why-card h3{
font-size:16px;
}

.about-why-card p{
font-size:14px;
}

}
.about-services{
padding:90px 6%;
background:#ffffff;
}

.about-services-container{
max-width:1200px;
margin:auto;
}

.about-services-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.about-services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.about-service-card{
background:#fff7f2;
padding:25px;
border-radius:8px;
text-decoration:none;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.3s;
}

.about-service-card:hover{
transform:translateY(-5px);
}

.about-service-card h3{
color:#7b1e3a;
font-size:18px;
margin-bottom:10px;
}

.about-service-card p{
font-size:14px;
line-height:1.7;
color:#555;
}

/* TABLET */

@media(max-width:992px){

.about-services-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.about-services-grid{
grid-template-columns:1fr;
}

.about-services-title{
font-size:26px;
}

}
.about-experience{
padding:90px 6%;
background:#fff7f2;
text-align:center;
}

.about-experience-container{
max-width:1100px;
margin:auto;
}

.about-experience-title{
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.about-experience-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.experience-box{
background:#ffffff;
padding:30px 20px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.experience-box h3{
font-size:36px;
color:#7b1e3a;
margin-bottom:10px;
}

.experience-box p{
font-size:15px;
color:#555;
}

/* TABLET */

@media(max-width:992px){

.about-experience-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.about-experience-grid{
grid-template-columns:1fr;
}

.about-experience-title{
font-size:26px;
}

.experience-box h3{
font-size:30px;
}

}
.about-cab-cta{
padding:90px 6%;
background:#7b1e3a;
color:#ffffff;
text-align:center;
}

.about-cab-cta-container{
max-width:900px;
margin:auto;
}

.about-cab-cta h2{
font-size:34px;
margin-bottom:20px;
}

.about-cab-cta p{
font-size:16px;
line-height:1.8;
margin-bottom:35px;
}

.about-cab-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.about-cta-btn{
background:#ffffff;
color:#7b1e3a;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.about-cta-btn:hover{
background:#f5d7c6;
}

/* MOBILE */

@media(max-width:768px){

.about-cab-cta h2{
font-size:26px;
}

.about-cab-cta p{
font-size:15px;
}

.about-cta-btn{
padding:12px 22px;
font-size:14px;
}

}
.about-zigzag{
padding:90px 6%;
background:#ffffff;
}

.about-zigzag-container{
max-width:1200px;
margin:auto;
}

.about-zigzag-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-bottom:70px;
}

.about-zigzag-row.reverse{
direction:rtl;
}

.about-zigzag-row.reverse .about-zigzag-text{
direction:ltr;
}

.about-zigzag-image img{
width:100%;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.about-zigzag-text h2{
font-size:30px;
color:#7b1e3a;
margin-bottom:15px;
}

.about-zigzag-text p{
font-size:16px;
line-height:1.8;
color:#555;
}

/* TABLET */

@media(max-width:992px){

.about-zigzag-row{
grid-template-columns:1fr;
}

.about-zigzag-row.reverse{
direction:ltr;
}

}

/* MOBILE */

@media(max-width:768px){

.about-zigzag{
padding:60px 6%;
}

.about-zigzag-text h2{
font-size:24px;
}

.about-zigzag-text p{
font-size:15px;
}

}
.about-faq{
padding:90px 6%;
background:#fff7f2;
}

.about-faq-container{
max-width:1000px;
margin:auto;
}

.about-faq-title{
text-align:center;
font-size:34px;
color:#7b1e3a;
margin-bottom:50px;
}

.about-faq-list{
display:flex;
flex-direction:column;
gap:25px;
}

.about-faq-item{
background:#ffffff;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.about-faq-item h3{
color:#7b1e3a;
font-size:18px;
margin-bottom:10px;
}

.about-faq-item p{
color:#555;
font-size:15px;
line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

.about-faq-title{
font-size:26px;
}

.about-faq-item h3{
font-size:16px;
}

.about-faq-item p{
font-size:14px;
}

}
.contact-banner{
background-image:url(../images/contact banner.png);
}
.contact-info{
padding:80px 6%;
background:#fff7f2;
text-align:center;
}

.contact-container{
max-width:1100px;
margin:auto;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.contact-box{
background:#ffffff;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.contact-box h3{
color:#7b1e3a;
margin-bottom:10px;
}

.contact-box a{
color:#7b1e3a;
text-decoration:none;
font-weight:600;
}

/* TABLET */

@media(max-width:992px){
.contact-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* MOBILE */

@media(max-width:600px){
.contact-grid{
grid-template-columns:1fr;
}
}
.contact-map{
padding:80px 6%;
background:#ffffff;
text-align:center;
}

.map-container{
max-width:1100px;
margin:auto;
}

.map-container h2{
font-size:34px;
color:#7b1e3a;
margin-bottom:15px;
}

.map-container p{
font-size:16px;
color:#555;
margin-bottom:30px;
line-height:1.7;
}

.map-embed{
width:100%;
overflow:hidden;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:768px){

.map-container h2{
font-size:26px;
}

.map-container p{
font-size:15px;
}

}
.fixed-call,
.fixed-whatsapp{
position:fixed;
right:20px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#fff;
text-decoration:none;
z-index:9999;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* Call Button */
.fixed-call{
bottom:90px;
background:#7b1e3a;
}

/* WhatsApp Button */
.fixed-whatsapp{
bottom:20px;
background:#25D366;
}

/* Hover Effect */
.fixed-call:hover,
.fixed-whatsapp:hover{
opacity:0.85;
}