body{
	
}

img{
    max-width:100%;
}

.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}



.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:#469FB8;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
}

/* Form Box */
.hero-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top:4rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.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;
    transition: color 0.3s ease;
}

.recommended-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    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: #111;
    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: #f9fafb;
}

/* 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: #FB0100;
    padding: 4px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.short-itenary ul li i {
    color:#0051B8;
    font-size: 14px;
}

.about-section {
    background: linear-gradient(
        rgba(88, 170, 60, 0.35),
        rgba(88, 170, 60, 0.35)
    ),
    url('/wp-content/uploads/2024/01/kashmir-bg.jpg') center/cover no-repeat;
    min-height: 520px;
}

/* TEXT */
.about-text {
    padding-left: 30px;
}

.small-title {
    font-style: italic;
    font-size: 16px;
    opacity: 0.9;
    color:#000;
}

.about-title {
    font-size: 36px;
     color:#000;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
     color:#000;
    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 {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* List Reset */
.siderbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.siderbar ul li {
    position: relative;
    padding: 12px 15px 12px 30px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    background: #f9f9f9;
    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: #f8f9fa;
}

/* Center Title */
.home4_section_area .centertitle {
    text-align: center;
    margin-bottom: 35px;
}

.home4_section_area .centertitle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    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:100px 0;
}

.footer-text a{
    color:#fff;
}

/* ── Hero ─────────────────────────── */
.kh-hero {
    position: relative;
    overflow: hidden;
}

.kh-hero__bg {
    position: absolute;
    inset: 0;
}
.kh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.kh-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}
.kh-hero__overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,40,100,.5) 0%, transparent 65%);
}

.kh-hero__inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.kh-hero__row {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

/* ── Left text ─────────────────────── */
.kh-badge {
    display: inline-block;
    background: #FB0100;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 1.1rem;
}

.kh-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .9rem;
}
.kh-hero__title span { color: #02B0FF; }

.kh-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 1.5rem;
}

.kh-trust {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 1.8rem;
}
.kh-trust li {
    font-size: 13px;
    color: rgba(255,255,255,.85);
}

.kh-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FB0100;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 3px;
    text-decoration: none;
}
.kh-cta:hover { background: #cc0000; color: #fff; }

/* ── Right: your form wrapper ─────── */
.kh-form-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 1.8rem 1.6rem;
    border-top: 4px solid #0051B8;
}

/* Override your CF7/WPForms styles inside the hero */
.kh-form-wrap .wpcf7-form input,
.kh-form-wrap .wpcf7-form select,
.kh-form-wrap .wpcf7-form textarea {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 4px;
    padding: 9px 11px;
    font-size: 14px;
    margin-bottom: 10px;
}
.kh-form-wrap .wpcf7-form input[type="submit"],
.kh-form-wrap .wpcf7-submit {
    background: #0051B8;
    color: #fff;
    font-weight: 700;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 4px;
    cursor: pointer;
}
.kh-form-wrap .wpcf7-form input[type="submit"]:hover {
    background: #003d8a;
}

/* ── Responsive ────────────────────── */
@media (max-width: 900px) {
    .kh-hero__row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/* ── Section ───────────────────────── */
.kp-section {
    padding: 3.5rem 0;
    background: #f4f6f9;
}

.kp-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.kp-head h1 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0051B8;
}
.kp-head p {
    font-size: .95rem;
    color: #666;
    margin-top: .3rem;
}

/* ── Card ──────────────────────────── */
.kp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Image ─────────────────────────── */
.kp-img {
    position: relative;
    /*aspect-ratio: 16 / 10;*/
    overflow: hidden;
    background: #ddd;
}
.kp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.kp-card:hover .kp-img img {
    transform: scale(1.04);
}
.kp-off {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FB0100;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ── Body ──────────────────────────── */
.kp-body {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kp-title {
    font-size: .98rem;
    font-weight: 700;
    color: #111;
    margin-bottom: .6rem;
    line-height: 1.3;
}

/* Duration + Location */
.kp-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: .75rem;
}
.kp-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}
.kp-meta .fa {
    color: #0051B8;
    font-size: 12px;
}

/* Rating + Price row */
.kp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: .75rem;
}
.kp-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
}
.kp-rating .fa { color: #FB0100; }

.kp-prices { text-align: right; }
.kp-cut {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}
.kp-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0051B8;
    line-height: 1.2;
}
.kp-price sub {
    font-size: 11px;
    font-weight: 400;
    color: #888;
}

/* Description */
.kp-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.55;
    margin-bottom: .85rem;
}
.kp-desc p { margin: 0; }

/* Amenities strip */
.kp-amenities {
    display: flex;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.kp-am {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 7px 4px;
    font-size: 10px;
    color: #555;
    border-right: 1px solid #eee;
    text-align: center;
}
.kp-am:last-child { border-right: none; }
.kp-am .fa {
    font-size: 15px;
    color: #0051B8;
}

/* Action buttons */
.kp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}
.kp-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    color: #0051B8;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px;
    border-radius: 4px;
    border: 2px solid #0051B8;
    text-decoration: none;
}
.kp-btn-call:hover {
    background: #0051B8;
    color: #fff;
}
.kp-btn-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0051B8;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    width: 100%;
}
.kp-btn-quote:hover { background: #003d8a; }

/* ── Why Us Section ─────────────────── */
.kw-section {
    padding: 4rem 0;
    background: #fff;
}

.kw-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.kw-head h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111;
    display: inline-block;
    position: relative;
}
.kw-head h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #FB0100;
    border-radius: 2px;
    margin: .5rem auto 0;
}
.kw-head p {
    font-size: .92rem;
    color: #666;
    margin-top: .5rem;
}

/* ── Card ───────────────────────────── */
.kw-card {
    background: #f8fafd;
    border-radius: 10px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid #e8edf5;
    height: 100%;
    transition: border-color .2s, transform .2s;
}
.kw-card:hover {
    border-color: #0051B8;
    transform: translateY(-3px);
}

/* Icon circle */
.kw-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.1rem;
    border: 2px solid #e8edf5;
    background: #eef2f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kw-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.kw-card h5 {
    font-size: .92rem;
    font-weight: 700;
    color: #0051B8;
    margin-bottom: .5rem;
    line-height: 1.3;
}
.kw-card p {
    font-size: .82rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}
.kw-card p > p { margin: 0; }

/* ── About Section ──────────────────── */
.ka-section {
    padding: 5rem 0;
    background: #0051B8;
    position: relative;
    overflow: hidden;
}
.ka-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.ka-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

/* Image */
.ka-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.ka-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Floating years badge */
.ka-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: #FB0100;
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    text-align: center;
    min-width: 110px;
    z-index: 2;
}
.ka-img-badge strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}
.ka-img-badge span {
    font-size: 11px;
    font-weight: 600;
    opacity: .9;
    letter-spacing: .04em;
}

/* Text */
.ka-small {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #02B0FF;
    margin-bottom: .7rem;
}
.ka-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.ka-content {
    font-size: .92rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-bottom: 1.6rem;
}
.ka-content p { margin-bottom: .5rem; }

/* Counters */
.ka-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.8rem;
}
.ka-counter {
    background: #0051B8;
    padding: 1rem .7rem;
    text-align: center;
}
.ka-counter strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ka-counter span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}

/* CTA */
.ka-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FB0100;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
}
.ka-cta:hover { background: #cc0000; color: #fff; }

/* Responsive */
@media (max-width: 767px) {
    .ka-img-badge { right: 10px; bottom: -14px; }
    .ka-title { font-size: 1.4rem; }
}

/* ── Keywords Section ───────────────── */
.ks-section { padding: 2rem 0; }

.ks-sidebar {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8edf5;
    overflow: hidden;
}

.ks-head {
    background: #0051B8;
    padding: .9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ks-head h3 {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.ks-head .fa {
    color: #02B0FF;
    font-size: 15px;
}

/* Tags wrap horizontally */
.ks-tags {
    padding: 1rem 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ks-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    color: #0051B8;
    background: #f0f5ff;
    border: 1px solid #cddcf5;
    border-radius: 4px;
    padding: 5px 11px;
    transition: all .15s;
    cursor: default;
}
.ks-tag:hover {
    background: #0051B8;
    color: #fff;
    border-color: #0051B8;
}

/* ── Footer ─────────────────────────── */
.kf-footer {
    background: #0a1628;
}

.kf-top {
    padding: 3rem 0 2rem;
}

/* Section heading */
.kf-heading {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid #0051B8;
    display: inline-block;
}

/* Contact items */
.kf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: .9rem;
}
.kf-contact-item .fa {
    color: #02B0FF;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}
.kf-contact-text {
    font-size: .83rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}
.kf-contact-text p { margin: 0; }

/* Links */
.kf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kf-links li { margin-bottom: .55rem; }
.kf-links a {
    font-size: .83rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .15s;
}
.kf-links a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0051B8;
    flex-shrink: 0;
}
.kf-links a:hover { color: #02B0FF; }

/* Social icons */
.kf-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.kf-soc {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    text-decoration: none;
    transition: all .15s;
}
.kf-soc:hover {
    background: #0051B8;
    border-color: #0051B8;
    color: #fff;
}

/* Bottom bar */
.kf-bottom {
    background: #060e1c;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: .9rem 0;
    text-align: center;
}
.kf-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    margin: 0;
}
.kf-brand { color: #02B0FF; }

/* Floating buttons */
.kf-float-btns {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.kf-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s;
}
.kf-float-btn:hover { transform: scale(1.1); }
.kf-float-call { background: #0051B8; }
.kf-float-wa   { background: #25D366; }

/* ── Header ─────────────────────────── */
.kh-header {
    background: #fff;
    border-bottom: 1px solid #eef0f5;
    position: sticky;
    top: 0;
    z-index: 999;
}
.kh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
    gap: 1rem;
}

/* Logo */
.kh-logo a { display: inline-block; }
.kh-logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* Row-top: transparent on desktop */
.kh-row-top {
    display: contents;
}

/* Right side */
.kh-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Info group */
.kh-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.kh-info-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Icon box */
.kh-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kh-info-icon .fa {
    font-size: 15px;
    color: #0051B8;
}

/* Text stack */
.kh-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.kh-info-text span {
    font-size: 10px;
    color: #aaa;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.kh-info-text a {
    font-size: .83rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}
.kh-info-text a:hover { color: #0051B8; }

/* Divider */
.kh-divider {
    width: 1px;
    height: 32px;
    background: #eee;
    flex-shrink: 0;
}

/* Book Now button */
.kh-book {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FB0100;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.kh-book .fa { font-size: 14px; }
.kh-book:hover { background: #cc0000; color: #fff; }

/* Hide mobile button on desktop */
.kh-book-mobile { display: none; }

/* ── Responsive ─────────────────────── */
@media (max-width: 768px) {

    .kh-inner {
        flex-direction: column;
        align-items: stretch;
        padding: .65rem 0;
        gap: 0;
    }

    /* Row 1: logo left, book right */
    .kh-row-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: .6rem;
    }

    .kh-logo img { height: 44px; }

    /* Show mobile button, hide desktop button */
    .kh-book-mobile { display: inline-flex; }
    .kh-book-desktop { display: none; }

    /* Row 2: phone left, email right */
    .kh-right {
        border-top: 1px solid #eef0f5;
        padding-top: .55rem;
        gap: 0;
    }

    .kh-info {
        width: 100%;
        justify-content: space-between;
        gap: .5rem;
    }

    .kh-divider { display: none; }

    .kh-info-icon {
        width: 32px;
        height: 32px;
    }

    .kh-info-text a { font-size: .75rem; }
}