body{
	
}

img{
    max-width:100%;
}

.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
        background: linear-gradient(180deg, #0b1c2d, #081522);

}



.header-transparent a,
.header-transparent .btn {
    color: #000;
    border:1px solid #4296BC;
}

.header-transparent img {
    max-height: 100px;
}

.home-hero {
    position: relative;
    overflow: hidden;
}

/* Background Image */
.hero-bg img {
    width: 100%;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.1)
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Text Styling */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero-content h1 span {
    color:#00c7ff;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
}

/* Form Box */
.hero-form {
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}


.hero-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Base Button */
.water-btn {
    position: relative;
    overflow: hidden;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 30px;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Water Layer */
.water-btn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: bottom 0.45s ease;
    z-index: -1;
    border-radius: 50%;
}

/* Hover Animation */
.water-btn:hover::before {
    bottom: 0;
    border-radius: 0;
}

/* TEXT COLOR CHANGE */
.water-btn:hover {
    color: #fff !important;
}

/* Light Button */
.water-light {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

/* Green Button */
.water-green {
    color: #fff;
    background: #4296BC;
    border: 2px solid #469FB8;
}

/* Green hover water */
.water-green::before {
    background:#B5CD65;
}

/* Light hover water */
.water-light::before {
    background:#B5CD65;
}
\.hero-text {
    max-width: 620px;
}

/* Main Title */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

/* Price Highlight */
.hero-title span {
    display: inline-block;
    margin-top: 10px;
    color: #00e676;
    font-size: 46px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Trust Points */
.hero-points {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.hero-points li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

/* Button spacing */
.hero-text .btn {
    padding: 14px 32px;
    border-radius: 50px;
}

.text-end{
    text-align:right;
}

/* SERVICE WRAPPER */
.services-div {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* BEFORE – subtle base underline */
.services-div::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* AFTER – glow accent (hidden initially) */
.services-div::after {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 127, 90, 0.12);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* IMAGE */
.services-div img {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: block;
    transition: all 0.4s ease;
}

/* TEXT */
.recommended-description h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color:#fff;
    transition: color 0.3s ease;
}

.recommended-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    max-width: 260px;
    margin: 0 auto;
}

/* HOVER EFFECTS */
.services-div:hover {
    transform: translateY(-8px);
}

/* underline grows */
.services-div:hover::before {
    width: 70px;
    background: #1a7f5a;
}

/* glow appears */
.services-div:hover::after {
    width: 160px;
    height: 160px;
    opacity: 1;
}

/* image pop */
.services-div:hover img {
    transform: translateY(-6px) scale(1.08);
}

/* title color */
.services-div:hover h5 {
    color: #1a7f5a;
}

/* MOBILE TUNING */
@media (max-width: 767px) {
    .services-div {
        padding: 25px 15px;
    }

    .services-div::after {
        display: none;
    }
}

.home4_section_area2{
    padding:70px 0;
}

.centertitle {
    text-align: center;
    position: relative;
}

/* Title styling */
.centertitle h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding: 0 20px; /* spacing for the lines */
}



.centertitle h2::before {
    left: -70px; /* space from the title */
}

.centertitle h2::after {
    right: -70px; /* space from the title */
}

/* Responsive tuning */
@media (max-width: 767px) {
    .centertitle h2::before,
    .centertitle h2::after {
        width: 40px;
        left: -50px;
        right: -50px;
    }

    .centertitle h2 {
        font-size: 24px;
        padding: 0 15px;
    }
}

/* Section wrapper relative for background */
.home4_section_area2 {
    position: relative;
    padding: 70px 0;
    overflow: hidden; /* hide shapes overflow */
        background: linear-gradient(180deg, #0b1c2d, #081522);
}

/* COMMON SHAPE STYLE */
.home4_section_area2 .bg-shape {
    position: absolute;
    border-radius: 50%; /* circle by default */
    opacity: 0.15;
    z-index: 0; /* behind content */
    animation: float 20s linear infinite;
}

/* FLOATING ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* DIFFERENT SHAPES */
.bg-shape.shape1 {
    width: 100px;
    height: 100px;
    background: #1a7f5a;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.bg-shape.shape2 {
    width: 150px;
    height: 150px;
    background: #e0f2eb;
    top: 50%;
    left: 80%;
    animation-duration: 30s;
}

.bg-shape.shape3 {
    width: 80px;
    height: 80px;
    background: #1a7f5a;
    top: 70%;
    left: 30%;
    animation-duration: 22s;
}

.bg-shape.shape4 {
    width: 120px;
    height: 120px;
    background: #e0f2eb;
    top: 20%;
    left: 60%;
    animation-duration: 28s;
}

/* Ensure content is above shapes */
.home4_section_area2 .container,
.home4_section_area2 .row {
    position: relative;
    z-index: 1;
}

/* SECTION TITLE */
.offerpackage h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

/* PACKAGE CARD */
.offr {
    margin-bottom: 30px;
}

.fblock_thumb {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 15px;
    position: relative;
    min-height:635px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fblock_thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.fblock_thumb img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

/* DISCOUNT BADGE */
.offfmy {
    position: absolute;
    top: 15px;
    left: 15px;
    background:#4195BB;
    color: #fff;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

/* TITLE */
.fblock_thumb h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #111;
}

/* RATINGS */
.artting {
    font-size: 14px;
    color: #4195BB;
    font-weight: 600;
}

.artting .red {
    color: #f39c12;
}

/* PRICE */
.artting2 {
    text-align: right;
    font-size: 14px;
}

.artting2 .cut {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.artting2 .peradult {
    font-weight: 600;
    color: #F16026;
}

/* CLOCK / LOCATION DETAILS */
.clock-ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 15px;
}

.clock-ul li p {
    margin: 0;
    display: flex;
    align-items: center;
    color: #555;
}

.clock-ul li p i {
    color: #4195BB;
    margin-right: 5px;
}

/* FACILITY ICONS */
.facilit-icon {
    text-align: center;
    margin-top: 10px;
}

.facilit-icon i {
    font-size: 20px;
    color: #BACE64;
    margin-bottom: 5px;
}

.facilit-icon p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

/* BUTTON */
.fblock_thumb button {
    width: 100%;
    background: #BACE64;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fblock_thumb button:hover {
    background: #159153;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .clock-ul {
        flex-direction: column;
        gap: 8px;
    }

    .artting2 {
        text-align: left;
        margin-top: 5px;
    }

    .offr {
        margin-bottom: 20px;
    }
}


.short-itenary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.short-itenary ul li {
    display: flex;
    align-items: center;
    /*gap: 6px;*/
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.short-itenary ul li i {
    color:#4195BB;
    font-size: 14px;
}

.about-section {
    background: linear-gradient(180deg, #0b1c2d, #081522);
    min-height: 520px;
}

/* TEXT */
.about-text {
    padding-left: 30px;
}

.small-title {
    font-style: italic;
    font-size: 16px;
    opacity: 0.9;
    color:#fff;
}

.about-title {
    font-size: 36px;
     color:#fff;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
     color:#fff;
    opacity: 0.95;
}

/* BUTTON */
.call-btn {
    background: #fff;
    color: #4c8f2f;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover {
    background: #2f6f1f;
    color: #fff;
}

/* IMAGE */
.about-img img {
    border-radius: 24px;
}

/* ===== ANIMATED DOT LINES ===== */
.bg-line {
    position: absolute;
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: floatLines 12s linear infinite;
}

.line-1 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 60px;
}

.line-2 {
    width: 320px;
    height: 320px;
    bottom: 30px;
    right: 120px;
    animation-duration: 16s;
}

.line-3 {
    width: 160px;
    height: 160px;
    top: 120px;
    right: 60px;
    animation-duration: 10s;
}

@keyframes floatLines {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
    .about-text {
        padding: 0 15px;
    }
}

/* Sidebar Wrapper */
.siderbar {
  position: relative;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

/* List Reset */
.siderbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.siderbar ul li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* BEFORE – Accent Line */
.siderbar ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1b7f5a; /* Kashmir green */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

/* AFTER – Hover Background Slide */
.siderbar ul li::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b7f5a, #3cb371);
    z-index: -1;
    transition: left 0.4s ease;
}

/* Hover Effects */
.siderbar ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.siderbar ul li:hover::before {
    transform: scaleY(1);
}

.siderbar ul li:hover::after {
    left: 0;
}

/* Last Item Margin Fix */
.siderbar ul li:last-child {
    margin-bottom: 0;
}
/* Section Wrapper */
.home4_section_area {
    padding: 60px 0;
    background: linear-gradient(180deg, #0b1c2d, #081522);
}

/* Center Title */
.home4_section_area .centertitle {
    text-align: center;
    margin-bottom: 35px;
}

.home4_section_area .centertitle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Title Underline */
.home4_section_area .centertitle h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Carousel Wrapper */
.home4_section_area .owl-carousel {
    padding: 20px 0;
}

/* Individual Logo Item */
.home4_section_area .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Box */
.home4_section_area .owl-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover Effect */
.home4_section_area .owl-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Owl Dots */
.home4_section_area .owl-dots {
    margin-top: 20px;
}

.home4_section_area .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home4_section_area .owl-dot.active span {
    background: #1b7f5a;
    width: 20px;
    border-radius: 10px;
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .home4_section_area {
        padding: 40px 0;
    }

    .home4_section_area .centertitle h2 {
        font-size: 26px;
    }

    .home4_section_area .owl-item img {
        max-height: 60px;
    }
}

/* =========================
   FOOTER BASE
========================= */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    background-size: 300% 300%;
    animation: footerGradient 12s ease infinite;
    color: #eaeaea;
    overflow: hidden;
    font-size: 15px;
}

/* Animated Gradient */
@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Light Dots */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.footer::before {
    top: -100px;
    left: -100px;
}

.footer::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes floatGlow {
    from { transform: translateY(0); }
    to { transform: translateY(40px); }
}

/* =========================
   FOOTER TOP
========================= */
.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 2;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #F16026;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Text & Icons */
.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer p i {
    color: #F16026;
    margin-right: 8px;
}

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

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

.footer-links {
    color: #dcdcdc;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: all 0.3s ease;
}

/* Arrow Before Link */
.footer-links::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #F16026;
    transition: transform 0.3s ease;
}

.footer-links:hover {
    color: #ffffff;
    padding-left: 24px;
}

.footer-links:hover::before {
    transform: translateX(4px);
}

/* =========================
   SOCIAL ICONS
========================= */
.social-network {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-network li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Hover Glow */
.social-network li a:hover {
    background: #3cb371;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(60,179,113,0.6);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    background: rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.template-name {
    color: #F16026;
    font-weight: 600;
}

/* =========================
   MODAL ENHANCEMENT
========================= */
.modal-header {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.modal-header h2,
.modal-header button {
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-network {
        justify-content: center;
    }
}
/* Hide home hero on mobile */
@media (max-width: 767px) {
    .home-hero {
        display: none !important;
    }
}
/* Hide on desktop & tablet */
.home-heroo {
    display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .home-heroo {
        display: block;
    }
    
    .hero-content h1{
        font-size:30px;
    }
    
    .hero-title span{
        font-size:35px;
    }
}

/* Hide form on desktop */
.mobile-hero-form {
    display: none;
}

/* Show form only on mobile */
@media (max-width: 767px) {
    .mobile-hero-form {
        display: block;
    }
    .hero-overlay{
        background:transparent;
    }
    .water-btn{
        margin-bottom:5px;
    }
}

.package-actions .btn {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
}

/* Call button */
.btn-call {
    background: #4195BB;
    color: #fff;
    border: none;
}

/* Quote button */
.btn-quote {
    background: #ff6a00;
    color: #fff;
    border: none;
}

/* Hover */
.btn-call:hover,
.btn-quote:hover {
    opacity: 0.9;
}
@media (max-width: 767px) {

    /* Ratings + Price in one row */
    .fblock_thumb > .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .fblock_thumb > .row > div {
        width: 50%;
    }

    .artting {
        font-size: 13px;
    }

    .artting2 {
        text-align: right;
        font-size: 13px;
    }
}

.thankyoudiv{
    padding:120px 0;
}

/* Modal Base */
.travel-offer-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

/* Header */
.travel-modal-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px 25px;
  color: #fff;
  text-align: center;
}

.travel-modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.travel-modal-header * {
  position: relative;
  z-index: 2;
}

.travel-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-modal-header h2 span {
  color: #ffd200;
}

.travel-modal-header p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Close Button */
.travel-modal-close {
  color: #fff;
  opacity: 1;
  font-size: 28px;
}

/* Body */
.travel-modal-body {
  background: #f7f9fc;
  padding: 10px;
}

.travel-form-box {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.travel-form-box h3 {
  text-align: center;
  color: #004288;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-form-sub {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Contact Form 7 Styling */
.travel-form-box input,
.travel-form-box textarea,
.travel-form-box select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.travel-form-box input:focus,
.travel-form-box textarea:focus {
  border-color: #004288;
  box-shadow: none;
}

/* Submit Button */
.travel-form-box input[type="submit"] {
  background: #004288;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.travel-form-box input[type="submit"]:hover {
  background: #002d5a;
}

/* Footer */
.travel-modal-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
}

.privacy-points {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.privacy-points li {
  font-size: 13px;
  color: #666;
}

/* Close Button */
.travel-close-btn {
  background: #ddd;
  border-radius: 20px;
  padding: 6px 18px;
}

.modal-footer{
    display:flex !important;
    justify-content:space-between !important;
}

.footer p a{
    color:#fff;
}

.footer-line{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-line i{
    min-width: 18px;
    margin-top: 4px;
}

.footer-text *{
    margin: 0;
    padding: 0;
}
.innerproducts{
    padding:130px 0;
}

.footer-text a{
    color:#fff;
}

/* SECTION */
.offerpackage {
    padding: 80px 0;
    background: linear-gradient(180deg, #0b1c2d, #081522);
}

.offerpackage h1 {
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
}

/* CARD */
.tour-card {
    background: rgba(20, 30, 45, 0.9);
    border-radius: 20px;
    margin-bottom:15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* RATING BADGE */
.tour-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* HEART */
.tour-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

/* CONTENT */
.tour-content {
    padding: 20px;
    color: #fff;
}

.tour-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.tour-location {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 12px;
}

/* FEATURES */
.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    opacity: .9;
    margin-bottom: 15px;
}

/* PRICE */
.tour-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    opacity: .6;
}

.new-price {
    font-size: 22px;
    font-weight: 600;
    color: #00ffd5;
}
.bgcolor3a {
    padding:70px 0;
    background:linear-gradient(180deg, #0b1c2d, #081522);
}

.tour-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tour-actions a {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Call Button */
.btn-call {
    background: #007bff;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
}

.tour-actions a i {
    margin-right: 5px;
}
.ti-widget.ti-goog .ti-footer .ti-profile-details .ti-name{
    color:#fff;
}

.ti-widget.ti-goog .ti-rating-text, .ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-rating-text strong a, .ti-widget.ti-goog .ti-rating-text strong span, .ti-widget.ti-goog .ti-rating-text span strong, .ti-widget.ti-goog .ti-rating-text span, .ti-widget.ti-goog .ti-footer, .ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-footer span, .ti-widget.ti-goog .ti-footer strong a{
    color:#fff !important;
}

.ti-widget.ti-goog .ti-review-item .ti-name{
    color:#fff !important;
}

.ti-widget.ti-goog .ti-review-content{
    color:#fff !important;
}