/* ==============================================

  BASE STYLES

============================================== */

body {

    font-family: 'Poppins', sans-serif;

    color: #333;

    padding-top: 62px; /* offset for fixed navbar */

    line-height: 1.6;

    background-color: #f9f9f9;


}



a {

    text-decoration: none;

}

/*.content-box ul{*/
/*    list-style:none;*/
/*}*/


img {

    max-width: 100%;

    height: auto;

}



/* nav .hdrlg_img{

width: 100px;

height: auto;

} */

/* ==============================================
   HEADER / NAVBAR
============================================== */

.custom-navbar {
    padding: 8px 0;
    /* ↓ reduced height */
}

.navbar-brand {
    padding: 0;
}

nav .hdrlg_img {
    width: 80px;
    /* ↓ smaller logo */
    height: auto;
}

.brand-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
}

/* Nav links tighter */
.navbar-nav .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
    font-weight: 500;
}



/* ==============================================

  SECTION PADDING

============================================== */

.section-padding {

    padding: 30px 0;

}



/* ==============================================

  SECTION TITLES

============================================== */

.section-title {

    margin-bottom: 50px;

    text-align: center;

}



.section-title h2 {

    font-size: 2.5rem;

    font-weight: 600;

    margin-bottom: 10px;

}



.section-title p {

    font-size: 1.1rem;

    color: #555;

}



/* ==============================================
   HERO BANNER WITH BACKGROUND IMAGE
============================================== */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url('../img/bnr-img.jpg'); /* ADD YOUR IMAGE PATH HERE */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

/* Optional: Animated background zoom */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Animated overlay gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Container */
.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Hero content wrapper */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero title animation */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.3s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero subtitle animation */
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero actions container */
.hero-actions {
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Explore button with enhanced animations */
.explore-btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    overflow: hidden;
    z-index: 1;
}

/* Ripple effect on explore button */
.explore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.explore-btn:hover::before {
    width: 400px;
    height: 400px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.explore-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

/* Arrow icon animation */
.explore-btn i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.explore-btn:hover i {
    animation: arrowBounce 0.8s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Package buttons container */
.package-buttons {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.package-buttons.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 2rem;
}

/* Individual package buttons */
.btn-package {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Staggered animation for package buttons */
.package-buttons.show .btn-package:nth-child(1) {
    animation: slideInUpBtn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.package-buttons.show .btn-package:nth-child(2) {
    animation: slideInUpBtn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

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

.btn-package:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-package:active {
    transform: translateY(-1px);
}

/* Package button icons */
.btn-package i {
    transition: transform 0.3s ease;
}

.btn-package:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.scroll-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

.scroll-arrow i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(5px);
    animation: none;
}

.scroll-indicator:hover .scroll-arrow i {
    color: #fff;
    animation: arrowBounce 0.6s ease infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        background-attachment: scroll; /* Better mobile performance */
    }

    .hero-banner::before {
        animation: none; /* Disable zoom on mobile */
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }

    .explore-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .package-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-package {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .explore-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .btn-package {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ABOUT SECTION */

/* ================================
   ABOUT SECTION - PROFESSIONAL REDESIGN
================================ */

.about-section {
    background: #ffffff;
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    background: #e8f0fe;
    padding: 6px 16px;
    border-radius: 20px;
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0a0a0a;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-section .lead {
    font-size: 19px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 28px;
    line-height: 1.7;
    letter-spacing: -0.1px;
}

.about-section p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.85;
    margin-bottom: 20px;
    letter-spacing: -0.1px;
}

.mission-text {
    margin: 35px 0;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    padding: 28px 32px;
    background: #ffffff;
    border: 2px solid #0d6efd;
    border-radius: 12px;
    line-height: 1.7;
    position: relative;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.1);
    letter-spacing: -0.1px;
}

.mission-text::before {
    content: "💡";
    position: absolute;
    top: -16px;
    left: 28px;
    background: #ffffff;
    padding: 0 8px;
    font-size: 24px;
}

.mission-text strong {
    color: #0d6efd;
    font-weight: 700;
}

/* WHY CHOOSE SECTION */
.why-title {
    margin-top: 45px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    position: relative;
    display: inline-block;
    letter-spacing: -0.1px;
}

.why-title::before {
    content: "⭐";
    margin-right: 10px;
}

/* LIST REDESIGN */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.about-list li {
    position: relative;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: #1e293b;
    line-height: 1.5;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list li:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
    transform: translateX(8px);
}

/* CLOSING TEXT */
.closing-text {
    margin-top: 30px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #1e293b;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.closing-text strong {
    color: #0d6efd;
    font-weight: 700;
}

/* IMAGE */
.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover::after {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.05) rotate(1deg);
}


/* FEATURE BOXES */

.feature-box {

    background: #fff;

    padding: 40px 25px;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: transform 0.4s ease, box-shadow 0.4s ease;

    height: 100%;

}



.feature-box img {

    width: 48px;

    margin-bottom: 18px;

}



.feature-box h5 {

    font-size: 1.25rem;

    font-weight: 600;

    margin-bottom: 10px;

}



.feature-box p {

    font-size: 0.95rem;

    color: #666;

    margin-bottom: 0;

}



/* Hover Effect */

.feature-box:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.15);

}





/* ==============================================

  PACKAGES

============================================== */

/* PACKAGE BOX */

.package-box {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    cursor: pointer;

    box-shadow: 0 8px 30px rgba(0,0,0,0.15);

}



.package-box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

}



/* Overlay hidden by default */

.package-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(

        to top,

        rgba(0,0,0,0.85),

        rgba(0,0,0,0.3)

    );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: #fff;



    opacity: 0;

    transform: translateY(30px);

    transition: all 0.5s ease;

}



/* Hover Effects */

.package-box:hover img {

    transform: scale(1.1);

}



.package-box:hover .package-overlay {

    opacity: 1;

    transform: translateY(0);

}



/* Text Styling */

.package-overlay h4 {

    font-size: 1.6rem;

    font-weight: 600;

    margin-bottom: 8px;

}



.package-overlay p {

    font-size: 1rem;

    opacity: 0.9;

    margin-bottom: 15px;

}



/* Buttons */

.package-actions {

    display: flex;

    align-items: center;

}



.link-arrow {

    color: #fff;

    font-weight: 500;

    text-decoration: none;

}



.link-arrow:hover {

    text-decoration: underline;

}





/* ==============================================

  CTA SECTION

============================================== */

.cta-section {

    background: linear-gradient(135deg, #0062E6, #33AEFF);

    color: #fff;

    padding: 100px 0;

    text-align: center;

}



.cta-section h3 {

    font-size: 2.5rem;

    font-weight: 600;

    margin-bottom: 15px;

}



.cta-section p {

    font-size: 1.25rem;

    margin-bottom: 25px;

}



.cta-section .btn-success {

    background: #25D366;

    border: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.cta-section .btn-success:hover {

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(0,0,0,0.3);

}



.cta-section .btn-outline-light {

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.cta-section .btn-outline-light:hover {

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);

}



.cta-section form {

    max-width: 400px;

    margin: auto;

}



/* ==============================================

  WHY CHOOSE US

============================================== */

.section-padding.bg-light .row.text-center > div {

    margin-bottom: 30px;

}



.section-padding.bg-light h5 {

    font-weight: 600;

    margin-bottom: 10px;

}



.section-padding.bg-light p {

    font-size: 0.95rem;

    color: #555;

}



/* ==============================================

  DESTINATIONS

============================================== */

ul.list-unstyled li {

    font-size: 1rem;

    margin-bottom: 10px;

    position: relative;

    padding-left: 25px;

}



ul.list-unstyled li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #0d6efd;

    font-weight: bold;

}





/* ===== PARALLAX BASE ===== */

.parallax {

    position: relative;

    background-attachment: fixed;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}



/* Parallax overlay */

.parallax::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.55);

    z-index: 1;

}



.parallax .container {

    position: relative;

    z-index: 2;

}



/* Destination Parallax */

.destination-parallax {

    background-image: url('../img/slider1.jpg');

    color: #fff;

}



/* CTA Parallax */

.cta-parallax {

    background-image: url('../img/slider2.jpg');

    color: #fff;

}





/* ==============================================

  GALLERY

============================================== */

.bg-light img {

    border-radius: 8px;

    transition: transform 0.3s ease;

}



.bg-light img:hover {

    transform: scale(1.05);

}



.gallery-hitem img {

    transition: transform 0.4s ease, box-shadow 0.4s ease;

}



.gallery-hitem:hover img {

    transform: scale(1.05);

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

}


.hm_gl .gallery-hitem {
    height: 250px;              /* controls visible height */
    overflow: hidden;
}

.hm_gl .gallery-hitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* crops smartly */
    border-radius: 0.5rem;
}

.hm_gl .btn {
    transition: all 0.3s ease;
    padding: 10px 28px;   /* top-bottom | left-right */
}

.hm_gl .btn:hover {
    transform: translateY(-2px);
}


/* ==============================================

  TESTIMONIALS

============================================== */

#testimonialCarousel .carousel-item {

    padding: 30px;

}



#testimonialCarousel .carousel-item p {

    font-size: 1rem;

    font-style: italic;

    color: #555;

}



#testimonialCarousel .carousel-item strong {

    display: block;

    margin-top: 15px;

    color: #333;

}



/* ================================
   FOOTER (COMPACT VERSION)
================================ */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 35px 0 15px; /* reduced height */
}

/* Logo */


.footer .ftrlg_img {
    width: 120px;
    padding: 0;
    /*background: transparent;*/
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}



/* Paragraph text */
.footer p {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 10px;
}

/* Headings */
.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 13.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Social icons */
.social-icons a {
    font-size: 18px;
    margin-right: 8px;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px; /* reduced */
    font-size: 12.5px;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}


/* ================================
   SOCIAL ICONS
================================ */

.social-icons {
    display: flex;
    gap: 12px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social.facebook {
    background: #1877F2;
}

.social.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social.linkedin {
    background: #0A66C2;
}

.social.whatsapp {
    background: #25D366;
}

.social:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

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

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #0d6efd;
}

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


/* INNER BANNER */

.inner-banner {

    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),

                url('../img/slider1.jpg') center/cover no-repeat;

    padding: 120px 0;

    text-align: center;

    color: #fff;

}



.inner-banner h1 {

    font-size: 3rem;

    font-weight: 600;

}


/* DESTINATION CARD */

/* CARD WRAPPER */
.travel-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.travel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* TITLE */
.travel-title {
    text-align: center;
    /* font-size: 1.25rem; */
    font-size: 16px;
    font-weight: 600;
    padding: 16px 12px;
    color: #1c1c1c;
    background: #fff;
}

/* IMAGE */
.travel-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.travel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.travel-card:hover .travel-image img {
    transform: scale(1.1);
}

/* OVERLAY */
.travel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.45));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* SHOW OVERLAY ON HOVER */
.travel-card:hover .travel-overlay {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY TEXT */
.travel-overlay p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 90%;
    line-height: 1.4;
}

/* BUTTON */
.travel-overlay .btn {
    padding: 8px 22px;
    font-weight: 500;
    border-radius: 30px;
}

.section-padding.bg-light.int_pcg p{
    color: #fff;
}


/* DETAIL PAGE */

/* ==============================
   INNER BANNER
================================ */
.inner-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.inner-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

/* ==============================
   CONTENT BOX
================================ */
.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==============================
   TOUR HIGHLIGHTS
================================ */
.tour-highlights li {
    margin-bottom: 8px;
}

/* ==============================
   ITINERARY
================================ */
.day-item {
    background: #fff;
    padding: 25px 25px 25px 22px;
    border-radius: 12px;
    margin-bottom: 22px;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.day-item h4 {
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 1.1rem;
}

/* ==============================
   SIDEBAR
================================ */
.sidebar {
    top: 100px;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-list li {
    margin-bottom: 8px;
}

/* ==============================
   BOOKING BOX
================================ */
.booking-box {
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
}

/* ==============================
   CTA SECTION
================================ */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #003c8f);
    color: #fff;
    padding: 70px 0;
}


/* BOOKING FORM */

.booking-box {

    background: #fff;

    padding: 35px;

    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0,0,0,.12);

}



.booking-box h4 {

    font-weight: 600;

}



.booking-box .form-control,

.booking-box .form-select {

    border-radius: 10px;

    padding: 10px 14px;

}



.booking-box textarea {

    resize: none;

}



.booking-box button {

    border-radius: 12px;

    font-size: 1rem;

    font-weight: 500;

}



/* TRUST INFO */

.trust-info {

    text-align: center;

    font-size: 0.9rem;

    color: #555;

}



/* SUPPORT BOX */

.support-box {

    margin-top: 25px;

    padding-top: 15px;

    border-top: 1px solid #ddd;

}

/* .customization-box {
    background: #f8fafc;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    padding: 22px 18px;
}

.customization-box h6 {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.customization-box p {
    font-size: 14px;
    color: #555;
}

.customization-box .btn {
    padding: 6px 14px;
} */

/* CUSTOMIZATION BOX - WITH GLOWING ZOOM TEXT ANIMATION */
.customization-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25),
        0 8px 40px rgba(102, 126, 234, 0.15);
    animation: glow-pulse 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

/* BOX GLOW PULSE ANIMATION */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25),
            0 8px 40px rgba(102, 126, 234, 0.15);
    }

    100% {
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4),
            0 12px 60px rgba(102, 126, 234, 0.3);
    }
}

/* DECORATIVE OVERLAY */
.customization-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* HOVER EFFECT */
.customization-box:hover {
    transform: translateY(-3px);
    transition: transform 0.4s ease;
}

/* HEADING WITH GLOW ZOOM ANIMATION */
.customization-box h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    animation: text-glow-zoom 2s ease-in-out infinite;
}

/* TEXT GLOW ZOOM IN/OUT ANIMATION */
@keyframes text-glow-zoom {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: scale(1.08);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(255, 255, 255, 0.4),
            0 0 50px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* PARAGRAPH WITH SUBTLE GLOW */
.customization-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: text-subtle-glow 2.5s ease-in-out infinite;
}

/* SUBTLE GLOW FOR PARAGRAPH */
@keyframes text-subtle-glow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3);
    }
}

/* PROFESSIONAL BUTTON STYLING WITH GLOW */
.customization-box .btn {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    animation: button-pulse 2s ease-in-out infinite;
}

/* BUTTON PULSE ANIMATION */
@keyframes button-pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
            0 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
            0 0 15px 3px rgba(255, 255, 255, 0.4);
    }
}

.customization-box .btn:hover {
    background: #f8f9fa;
    color: #5568d3;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2),
        0 0 20px 5px rgba(255, 255, 255, 0.6);
    animation: none;
}

.customization-box .btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* GALLERY PAGE*/

/* ==================== GALLERY PAGE STYLES ==================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200') center/cover;
    opacity: 0.2;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Filter Buttons */
/*.filter-buttons {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #f28d13;
    color: #f28d13;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
color: #07253b;
    border-color: #f4ce63;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 141, 19, 0.4);
}*/

/* Gallery Section */
.gallery-section {
    background: #f8f9fa;
}

/* Gallery Card */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: none;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #0b5ed7;
    transform: scale(1.1);
    color: #fff;
}

/* Gallery Item Animation */
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide/Show items based on filter */
.gallery-item.hide {
    display: none;
    animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
}

.stat-card {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    transition: transform 0.3s ease;
}

.stat-card:hover i {
    transform: scale(1.1);
}

.stat-card h3 {
    color: #212529;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #212529 !important;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer .social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    color: #0d6efd !important;
}

/* Lightbox Modal */
#lightboxModal .modal-content {
    background: transparent;
}

#lightboxModal .modal-body {
    padding: 0;
}

#lightboxModal img {
    border-radius: 10px;
    max-height: 90vh;
    object-fit: contain;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    z-index: 10;
}

.btn-close-white:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .page-header {
        padding: 120px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .lead {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 7px 15px;
        font-size: 0.85rem;
        margin: 3px;
    }

    .gallery-section {
        padding: 3rem 0 !important;
    }

    .stats-section {
        padding: 3rem 0 !important;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-card i {
        font-size: 2rem !important;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .filter-buttons {
        margin-bottom: 1.5rem;
    }

    .overlay-content h5 {
        font-size: 1rem;
    }

    .overlay-content p {
        font-size: 0.85rem;
    }

    .view-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


.filter-btn.active {
    animation: pulse 0.5s ease;
    background-color: #f28d13;
    color: #fff;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.gallery-item.loading {
    opacity: 0.5;
}

/* Hover Effect on Stats */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.stat-card:hover::before {
    width: 300px;
    height: 300px;
}
