.hero {
    height: 90vh;
    background: url('../images/hero.jpeg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;   /* move content upward */
    justify-content: center;
    padding-top: 30px;        /* adjust this value */
}
.card img {
    height: 220px;
    object-fit: cover;
}

.cta {
    background: #111;
}

h2 {
    font-weight: bold;
}
.card img {
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.08);
}
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #ff9800;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}
.hero h1, .hero p {
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
    background-color: #000;
}

.footer h5 {
    margin-bottom: 15px;
}

.footer ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.footer ul li:hover {
    color: #ff9800;
    padding-left: 5px;
}

.footer p {
    color: #ccc;
}

.social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    color: #ff9800;
}

.social-icons a {
    color: white;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff9800;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #555;
    border-radius: 50%;
}

/* Blog Hero */
.blog-hero {
    height: 50vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    position: relative;
}

.blog-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.rishikesh-hero {
    height: 50vh;
    background: url('../images/rishikesh1.jpg') center/cover no-repeat;
    position: relative;
}

.rishikesh-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}
.kashmir1-hero {
    height: 50vh;
    background: url('../images/kashmir1.jpg') center/cover no-repeat;
    position: relative;
}

.kashmir1-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

/* Blog Cards */
.blog-card img {
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card {
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Footer */
.footer {
    background: #000;
}
.category-card {
    display: block;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    transition: 0.3s;
}

.category-card:hover img {
    transform: scale(1.05);
}
.itinerary-hero {
    height: 60vh;
    background: url('../images/feature1.jpg') center/cover no-repeat;
    position: relative;
}

.itinerary-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}
.kashmir-hero {
    height: 60vh;
    background: url('../images/kashmir.jpg') center/cover no-repeat;
    position: relative;
}

.kashmir-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}
.himachal-hero {
    height: 60vh;
    background: url('../images/himachal.jpg') center/cover no-repeat;
    position: relative;
}

.himachal-hero .overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}
/* Card Container */
.program-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

/* Image */
.program-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

/* Dark overlay */
.program-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Text on image */
.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    letter-spacing: 1px;
}

/* Hover effect */
.program-card:hover img {
    transform: scale(1.08);
}
/* Card Container */
.program-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

/* Image */
.program-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

/* Dark overlay */
.program-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Text on image */
.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    letter-spacing: 1px;
}

/* Hover effect */
.program-card:hover img {
    transform: scale(1.08);
}

/* Navbar background */
.custom-navbar {
    background-color: #0b0f0f; /* deep black */
}

/* Brand text (gold) */
.brand-text {
    color: #d4af37;
    letter-spacing: 1px;
}

/* Nav links */
.navbar-dark .navbar-nav .nav-link {
    color: #ddd;
    transition: 0.3s;
}

/* Hover effect */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #d4af37;
}

/* Active link */
.navbar-dark .navbar-nav .nav-link.active {
    color: #d4af37;
    font-weight: 500;
}

/* Logo glow */
.navbar-brand img {
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
}.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}
/* Softer dark gradient navbar */
.custom-navbar {
    background: linear-gradient(90deg, #1a1f1f, #232b2b);
}

/* Brand text (gold) */
.brand-text {
    color: #d4af37;
    letter-spacing: 1px;
}

/* Nav links */
.navbar-dark .navbar-nav .nav-link {
    color: #e0e0e0;
    transition: 0.3s;
}

/* Hover */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #d4af37;
}

/* Active */
.navbar-dark .navbar-nav .nav-link.active {
    color: #d4af37;
    font-weight: 500;
}

/* Logo glow */
.navbar-brand img {
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}
/* Card styling */
.trip-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

/* Image */
.trip-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

/* Hover */
.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Price */
.price {
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
}
form input, form textarea {
    border-radius: 8px;
}

form button {
    border-radius: 10px;
    padding: 12px;
}

/* Info bar */
.info-bar {
    background: #f8f9fa;
    border-radius: 15px;
    gap: 20px;
}

/* Each item */
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 28px;
    color: #2e7d32;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Button */
.book-btn {
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 500;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider hr {
    flex: 1;
    border: 1px solid #ccc;
}

.divider i {
    font-size: 20px;
    color: #2e7d32;
}

/* Accordion style */
.accordion-button {
    font-weight: 600;
    color: #2e5d4b;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    color: #2e5d4b;
}

.accordion-body {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
}

.booking-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
                url('../images/book_now.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.booking-section h2 {
    color: #f4c542;
}

.booking-section table {
    background: transparent;
}

.booking-section .btn {
    border-radius: 10px;
    font-weight: bold;
}

/* Coming Soon Hero */
.coming-hero {
    height: 100vh;
    background: url('../images/feature1.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Email Box */
.email-box {
    max-width: 400px;
    margin: auto;
}

/* Countdown */
.countdown h2 {
    font-size: 40px;
    letter-spacing: 2px;
}

/* Button polish */
.btn-success {
    border-radius: 12px;
}


body {
    background-color: #fff;
}

h1, h2 {
    letter-spacing: 1px;
}

.btn-warning {
    background-color: #d4af37;
    border: none;
}

.btn-warning:hover {
    background-color: #b8962e;
}
.feature-hover img {
    transition: 0.3s;
}

.feature-hover:hover img {
    transform: scale(1.05);
}
.info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
}

.info-item i {
    font-size: 28px;
    color: #2f5d3a;
}

.label {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.value {
    margin: 0;
    font-weight: 600;
}

.info-btn {
    margin-top: 10px;
}
.footer a {
    color: white;
    transition: 0.3s;
}

.footer a:hover {
    color: #d4af37;
    padding-left: 5px;
}
/* Group Section */
.group-section img {
    transition: transform 0.4s ease;
}

.group-section img:hover {
    transform: scale(1.03);
}

.group-section h2 {
    font-size: 2rem;
}

.group-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
}
.btn-warning {
    background-color: #d4a017;
    border: none;
    font-weight: 500;
}

.btn-warning:hover {
    background-color: #b88a13;
}

/* Feature Article Styling */

.badge {
    font-size: 14px;
    letter-spacing: 0.5px;
}

section p {
    font-size: 17px;
}

section img {
    transition: transform 0.4s ease;
}

section img:hover {
    transform: scale(1.02);
}

.bg-dark {
    background: linear-gradient(135deg, #111, #1f1f1f);
}
.hero-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    
}
.hero-sub-title {
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    
    
}
.hero-himachal-sub-title {
    display: inline-block;
    border-bottom: 1px solid white;
    padding-bottom: 1px;
}
/* Floating WhatsApp */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0,0,0,0.3);

    z-index: 9999;

    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
    color: white;
}

/* Destination Cards */

.destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 25px;
    text-decoration: none;
    height: 320px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
}

/* Content */
.destination-content {
    position: absolute;
    bottom: 25px;
    left: 25px;

    color: white;
    z-index: 2;
}

.destination-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;

    letter-spacing: 1px;
}

.destination-content p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}

/* Hover Effects */
.destination-card:hover img {
    transform: scale(1.08);
}

.destination-card:hover {
    transform: translateY(-5px);
    transition: 0.4s ease;
}

/* Large Cards */
.large-card {
    height: 380px;
}

/* Section Title */
.section-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.bg-watermark {
    position: fixed;
    inset: 0;

    background-image: url("../images/logo.png");
    background-repeat: repeat;
    background-size: 120px;

    opacity: 0.04;

    pointer-events: none;

    z-index: -1;
}

/* Expedition Tier Cards */

.tier-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.4s;
    position: relative;
}

.tier-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tier-card:hover {
    transform: translateY(-8px);
}

/* Badge */

.tier-badge {
    position: absolute;
    top: 15px;
    left: 15px;

    background: #d4af37;
    color: #000;

    padding: 6px 12px;
    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;
}

/* Content */

.tier-content {
    padding: 20px;
}

.tier-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.tier-content p {
    font-size: 14px;
    color: #666;
}

.tier-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Premium Tier */

.premium-tier {
    border: 2px solid #d4af37;
}

.premium-tier .tier-badge {
    background: #000;
    color: #fff;
}

/* Section Title */

.section-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}