* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

.container {
width:90%;
margin:auto;
}


/* HEADER */

.header {
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:fixed;
width:100%;
z-index:1000;
}

.header-flex {
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.nav a {
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}



/* HERO */

/* HERO SECTION FIXED */

.hero {
height:780px;

/* IMAGE + GRADIENT OVERLAY */

background:
linear-gradient(
90deg,
rgba(146, 188, 255, 0.75),
rgba(94, 139, 69, 0.75)

),
url('taj mahal tournguides.jpg');

background-size:fill;
background-position:center;

position:relative;
margin-top:80px;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

color:white;
}



/* HERO CONTENT */

.hero-overlay {
max-width:800px;
padding:20px;
}

.hero h1 {
font-size:64px;
font-weight:700;
}

.hero span {
font-weight:300;
}

.hero p {
margin:20px 0;
font-size:18px;
}



/* BUTTONS */

.hero-buttons {
margin-top:20px;
}

.btn {
padding:12px 28px;
border:none;
cursor:pointer;
border-radius:4px;
margin:5px;
font-weight:500;
}

.green {
background:#63c132;
color:white;
}

.blue {
background:#2b7cff;
color:white;
}


/* SEARCH */

.search-box {
background:white;
width:70%;
margin:auto;
display:flex;
padding:20px;
gap:10px;
border-radius:6px;
position:absolute;
bottom:-40px;
left:50%;
transform:translateX(-50%);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.search-box select,
.search-btn {
padding:12px;
flex:1;
}

.search-btn {
background:#2b7cff;
color:white;
border:none;
}



/* SECTION */

.section {
padding:100px 0;
text-align:center;
}

.section-title {
font-size:34px;
margin-bottom:40px;
}



/* CARDS */

.cards-grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
width:70%;
margin:auto;
}

.card {
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
border-radius:6px;
overflow:hidden;
}

.card img {
width:100%;
height:200px;
object-fit: cover ;
}

.card h3 {
padding:15px;
font-size:18px;
}

.card p {
padding:0 15px 20px;
color:#777;
} 



/* DESTINATIONS */

.destinations {
padding:100px 0;
background:#f7f7f7;
text-align:center;
}

.dest-grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
width:70%;
margin:auto;
}

.dest-item {
position:relative;
}

.dest-item img {
width:100%;
height:250px;
object-fit:cover;
}

.dest-item span {
position:absolute;
bottom:15px;
left:15px;
color:white;
font-size:22px;
font-weight:600;
}



/* FEATURES */

.features {
padding:100px 0;
text-align:center;
}

.features-grid {
display:grid;
grid-template-columns:repeat(6,1fr);
gap:30px;
width:80%;
margin:auto;
}

.feature img {
width:90px;
margin-bottom:10px;
}



/* TESTIMONIAL */

.testimonial {
padding:100px 0;
}

.testimonial-flex {
display:flex;
width:90%;
margin:auto;
gap:30px;
align-items:center;
}

.testimonial img {
width:50%;
border-radius:6px;
}

.testimonial-text {
width:50%;
font-size:18px;
}

.center {
margin-top:30px;
}


/* OFFERS */

.offers {
padding:100px 0;
text-align:center;
background:#f7f7f7;
}

.offers-grid {
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
width:90%;
margin:auto;
}

.offer-card {
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
border-radius:6px;
overflow:hidden;
}

.offer-card img {
width:100%;
height:180px;
object-fit:cover;
}

.offer-card h3 {
padding:15px;
font-size:16px;
}

.offer-card p {
padding-bottom:15px;
color:#777;
}



/* SUBSCRIBE */

.subscribe {
padding:100px 0;
background:linear-gradient(
90deg,
#2b7cff,
#63c132
);
color:white;
text-align:center;
}

.subscribe-content {
width:60%;
margin:auto;
}

.subscribe-box {
margin-top:20px;
display:flex;
justify-content:center;
}

.subscribe-box input {
padding:12px;
width:300px;
border:none;
}

.subscribe-box button {
padding:12px 25px;
background:white;
color:#2b7cff;
border:none;
}



/* NEWS */

.news {
padding:100px 0;
text-align:center;
}

.news-grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
width:90%;
margin:auto;
}

.news-card {
position:relative;
}

.news-card img {
width:100%;
height:250px;
object-fit:cover;
}

.news-card h3 {
position:absolute;
bottom:20px;
left:20px;
color:white;
font-size:22px;
}



/* MAP */

.contact {
padding:100px 0;
text-align:center;
}

.map-container iframe {
width:90%;
height:450px;
border:none;
}



/* GALLERY */

.gallery {
padding:60px 0;
background:#f7f7f7;
}

.gallery-grid {
display:grid;
grid-template-columns:repeat(6,1fr);
gap:10px;
width:90%;
margin:auto;
}

.gallery-grid img {
width:100%;
height:150px;
object-fit:cover;
}




/* FOOTER */

.footer {

background:#f7f7f7;

padding:60px 0;

margin-top:60px;

}

.footer-grid {

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

width:90%;

margin:auto;

font-size:14px;

}

.footer h4 {

margin-bottom:15px;

font-size:16px;

}

.footer ul {

list-style:none;

}

.footer li {

margin-bottom:8px;

color:#777;

cursor:pointer;

}

.footer input {

width:100%;

padding:10px;

margin-top:10px;

margin-bottom:10px;

border:1px solid #ddd;

}

.subscribe-btn {

background:#2b7cff;

color:white;

border:none;

padding:10px 20px;

cursor:pointer;

}



.bottom-footer {

margin-top:40px;

text-align:center;

font-size:13px;

color:#777;

border-top:1px solid #ddd;

padding-top:20px;

}

/* GALLERY SLIDER */

.gallery {

overflow: hidden;

padding: 40px 0;

background: #fff;

}



/* Wrapper */

.gallery-wrapper {

overflow: hidden;

position: relative;

}



/* Track */

.gallery-track {

display: flex;

width: calc(250px * 12); /* 6 images × 2 */

animation: scrollGallery 35s linear infinite;

}



/* Images */

.gallery-track img {

width: 250px;

height: 180px;

object-fit: cover;

margin-right: 20px;

border-radius: 6px;

transition: 0.3s;

}



/* Hover Zoom */

.gallery-track img:hover {

transform: scale(1.08);

}



/* Animation */

@keyframes scrollGallery {

0% {

transform: translateX(0);

}

100% {

transform: translateX(calc(-250px * 6));

}

}

/* Mobile and Tablet optimization for Search & Destinations */
@media (max-width: 992px) {
    
    /* SEARCH & ENJOY Section */
    .section {
        padding: 40px 20px !important;
    }

    .cards-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Saare cards ko center karega */
        gap: 30px !important;
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .card {
        width: 100% !important;
        max-width: 400px !important; /* Mobile par card ki width limit */
        margin: 0 auto !important; /* Card ko horizontal center rakhega */
        text-align: center;
    }

    .card img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
    }

    /* DESTINATIONS GRID Section */
    .destinations {
        padding: 40px 20px !important;
    }

    .dest-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; /* Mobile par screen ke hisab se 1 ya 2 column */
        gap: 15px !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }

    .dest-item {
        width: 100% !important;
        height: 250px !important; /* Mobile par height fix */
        margin: 0 auto !important;
    }

    .dest-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover; /* Image kategi nahi, area cover karegi */
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
}

/* Chote phones ke liye extra adjustment */
@media (max-width: 480px) {
    .dest-grid {
        grid-template-columns: 1fr !important; /* Bilkul chote phone par 1 hi column */
    }
    
    .card h3 {
        font-size: 1.2rem !important;
    }
}



/* GLOBAL SMOOTHNESS */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fbfd;
}

/* GLASS HEADER */
.header {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* HERO PARALLAX + GRADIENT */

/* BUTTON GLOW */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(25deg);
    top: -100%;
    left: -100%;
    transition: 0.5s;
}

.btn:hover::before {
    top: 100%;
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* CARD PREMIUM HOVER */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card img {
    transition: 0.5s;
}

.card:hover img {
    transform: scale(1.1);
}

/* DESTINATION GRID HOVER ZOOM */
.dest-item {
    overflow: hidden;
    border-radius: 10px;
}

.dest-item img {
    transition: 0.6s ease;
}

.dest-item:hover img {
    transform: scale(1.2) rotate(2deg);
}

/* FEATURE ICON FLOAT */
.feature {
    text-align: center;
    transition: 0.4s;
}

.feature img {
    transition: 0.5s;
}

.feature:hover img {
    transform: translateY(-10px) scale(1.1);
}

/* TESTIMONIAL GLASS */
.testimonial {
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
    padding: 60px 0;
}

.testimonial-flex {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    padding: 30px;
}

/* GALLERY AUTO SCROLL SMOOTH */
.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
}

.gallery-track img {
    width: 250px;
    border-radius: 10px;
    transition: 0.4s;
}

.gallery-track img:hover {
    transform: scale(1.1);
}



/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}