/* HERO SLIDER */


.navbar-transparent {
    background: linear-gradient(
        to bottom,
        rgba(6,24,64,0.8),
        rgba(6,24,64,0.2),
        transparent
    );
}

/* Navbar text */
.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
    color: #fff;
    font-weight: 500;
}

.navbar-transparent .nav-link:hover {
    color: #4dd0ff;
}

/* Button fix */
.navbar-transparent .btn {
    border-color: #fff;
    color: #fff;
}

.navbar-transparent .btn:hover {
    background: #4dd0ff;
    border-color: #4dd0ff;
    color: #000;
}



.hero-slider .carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6, 24, 64, 0.85),
        rgba(6, 24, 64, 0.55),
        rgba(6, 24, 64, 0.2)
    );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #4dd0ff;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* Feature Boxes */
.hero-features {
    display: flex;
    gap: 15px;
}

.feature-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 10px;
    width: 200px;
}

.feature-box h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        width: 100%;
    }

    .feature-box {
        width: 100%;
    }
}

.travel-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

/* OVERLAY DESCRIPTION */
.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,24,64,0.9),
        rgba(6,24,64,0.5)
    );
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.travel-card:hover .img-overlay {
    transform: translateY(0);
}

.img-overlay p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* CONTENT (BOTTOM – ALWAYS VISIBLE) */
.travel-content {
    padding: 16px;
}

.travel-content h5 {
    margin-bottom: 4px;
    font-weight: 600;
}
/* ===============================
   TOUR PACKAGE CARD
================================ */

.package-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow:
        -12px 0 30px rgba(13,110,253,0.18),
         0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow:
        -18px 0 40px rgba(13,110,253,0.28),
         0 20px 45px rgba(0,0,0,0.18);
}

/* IMAGE WRAPPER */
.package-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
}

/* IMAGE */
.package-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTINUOUS SHINE EFFECT */
.package-image-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -60%; }
    100% { left: 160%; }
}

/* BADGE */
.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13,110,253,0.85);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* BODY */
.package-body {
    padding: 18px 6px 6px;
}

/* FANCY FONT STYLE */
.package-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.package-location {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 14px;
}

/* FOOTER */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0d6efd;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .package-card {
        margin-bottom: 20px;
    }
}



/* TESTIMONIAL SECTION */
.testimonial-section {
    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef4ff
    );

    padding: 40px;
}

/* TITLE */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-subtitle {
    color: #6c757d;
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 40px 30px;
    max-width: 600px;
    text-align: center;
    box-shadow:
        -12px 0 35px rgba(13,110,253,0.15),
         0 18px 45px rgba(0,0,0,0.12);

         height: 100%;


}




/* ROUND IMAGE */
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d6efd;
    margin-bottom: 20px;
}

/* TEXT */
.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
}

/* NAME */
.testimonial-name {
    font-weight: 600;
    margin-bottom: 2px;
}

/* LOCATION */
.testimonial-location {
    font-size: 0.85rem;
    color: #6c757d;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
}



/* NEWS SECTION */
.news-section {
    background: #f9fbff;
}

/* CARD */
.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow:
        -10px 0 30px rgba(13,110,253,0.15),
         0 14px 35px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow:
        -16px 0 40px rgba(13,110,253,0.25),
         0 22px 45px rgba(0,0,0,0.18);
}

/* IMAGE */
.news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.08);
}

/* DATE BADGE */
.news-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(13,110,253,0.9);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
}

/* BODY */
.news-body {
    padding: 18px;
}

.news-body h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-body p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}



.speciality-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/speciality-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.speciality-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6, 24, 64, 0.85),
        rgba(6, 24, 64, 0.55),
        rgba(6, 24, 64, 0.2)
    );
}

/* CONTENT */
.speciality-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.speciality-text {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* BOX */
.speciality-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.speciality-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.2);
}

/* ICON */
.speciality-box i {
    font-size: 2rem;
    color: #4dd0ff;
    margin-bottom: 12px;
}

/* TEXT */
.speciality-box h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.speciality-box p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
    .speciality-section {
        padding: 60px 0;
        text-align: center;
    }
}




/* FOOTER SECTION */
.footer-section {
    position: relative;
    padding: 80px 0 40px;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,24,64,0.95),
        rgba(6,24,64,0.85),
        rgba(13,110,253,0.65)
    );
}

/* TITLES */
.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-title-sm {
    font-weight: 600;
    margin-bottom: 12px;
}

/* TEXT */
.footer-text {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* CONTACT */
.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-contact i {
    margin-right: 8px;
    color: #4dd0ff;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* SUBSCRIBE */
.footer-subscribe {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.footer-subscribe input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    outline: none;
}

.footer-subscribe button {
    background: #0d6efd;
    border: none;
    color: #fff;
    padding: 0 18px;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #4dd0ff;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* CONTACT HERO */

.contact-hero {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
   background: linear-gradient(
        to right,
        rgba(6, 24, 64, 0.85),
        rgba(6, 24, 64, 0.55),
        rgba(6, 24, 64, 0.2)
    );
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-subtitle {
    opacity: 0.9;
}

/* CONTACT CARD */
.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow:
        -12px 0 30px rgba(13,110,253,0.15),
         0 18px 40px rgba(0,0,0,0.12);
}

/* MAP */
.map-card {
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow:
        -12px 0 30px rgba(13,110,253,0.15),
         0 18px 40px rgba(0,0,0,0.12);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* INFO SECTION */
.contact-info-section {
    background: #f8fbff;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow:
        -10px 0 30px rgba(13,110,253,0.12),
         0 12px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 12px;
}

.info-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 0.9rem;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .map-card iframe {
        min-height: 300px;
    }
}


/* ABOUT HERO */
.about-hero {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
   background: linear-gradient(
        to right,
        rgba(6, 24, 64, 0.85),
        rgba(6, 24, 64, 0.55),
        rgba(6, 24, 64, 0.2)
    );
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.about-subtitle {
    opacity: 0.9;
}

/* ABOUT IMAGE */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        -14px 0 35px rgba(13,110,253,0.18),
         0 20px 40px rgba(0,0,0,0.15);
}

/* COUNTERS */
.about-counter-section {
    background: linear-gradient(135deg, #f0f6ff, #e8f0ff);
    padding: 60px 0;
}

.counter-box h3 {
    font-weight: 700;
    color: #0d6efd;
}

.counter-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* VALUES */
.value-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow:
        -10px 0 30px rgba(13,110,253,0.12),
         0 14px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-6px);
}

.value-box i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 12px;
}

.value-box h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.value-box p {
    font-size: 0.9rem;
    color: #555;
}


