:root {
    --brand-yellow: #FBC308;
    --brand-yellow-dark: #EEC829;
    --brand-teal: #0b6f6b;
}

body {
  font-family: 'Outfit', sans-serif;
    background:#f6fbfb;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, #f7fcfc, #f0f7f7);
    border-radius: 60px;
    padding: 12px 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}
/* Logo */
.logo-box {
    border-radius:12px;
    display:flex;
    overflow:hidden;
}


.logo-box img {
    width:50%;
    height:50%;
    object-fit: cover;

     /* logo ko thoda breathing space */
}
.brand-name {
    font-weight:600;
    font-size:20px;
    margin-left:-50px;
    color:var(--brand-teal);
}

.nav-pills .nav-link {
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease, 
                color 0.3s ease, 
                box-shadow 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #e6f2f1;
    color: #0b6f6b;
}

.nav-pills .nav-link.active {
    background-color: #ffffff !important;
    color: #0b6f6b !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}



/* Sign In button */
.btn-signin {
    background: linear-gradient(135deg,var(--brand-yellow),var(--brand-yellow-dark));
    color:#5a4a00;
    border-radius:30px;
    padding:10px 26px;
    font-weight:600;
    border:none;
    box-shadow:0 10px 25px rgba(251,195,8,.45);
}

/* Hamburger */
.navbar-toggler {
    border:none;
}
.navbar-toggler:focus {
    box-shadow:none;
}
.navbar-toggler-icon {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(11,111,107,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Offcanvas full screen */
.offcanvas {
    width:100% !important;
}

.offcanvas-body ul {
    list-style:none;
    padding:0;
    margin-top:30px;
}

.offcanvas-body ul li {
    margin-bottom:20px;
}

.offcanvas-body ul li a {
    font-size:20px;
    font-weight:600;
    color:var(--brand-teal);
    text-decoration:none;
}

.mobile-signin {
    display:inline-block;
    margin-top:30px;
    background:linear-gradient(135deg,var(--brand-yellow),var(--brand-yellow-dark));
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    color:#5a4a00;
}

@media (max-width:991px){
    .main-header{
        border-radius:20px;
        padding:14px 18px;
    }
}

/* Hero Section */
.overflow-hidden{
    margin-top: -150px;
}

  .carousel,
  .carousel-item,
  .carousel-item img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: relative;
  }

  /* Overlay for darkening background images */
  .carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  /* Centered hero content */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
  }

  /* Styling the tagline */
  .tagline {
    display: inline-block;
    background: #FBC308;
    color: #000;
    padding: 0.3rem 1rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  /* Highlight style */
  .highlight {
    color: #FBC308;
  }

  /* Buttons styling */
  .hero-buttons a {
    margin: 0 0.7rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .hero-content h1 {
    color: white;
    white-space: normal;
    text-align: center;
/* readable size on phones */
  }
  .btn-explore {
    background-color: #FBC308;
    color: #000;
  }
  .btn-explore:hover {
    background-color: #d1a403;
    color: #000;
  }
  .btn-contact {
    background-color: transparent;
    border: 2px solid #FBC308;
    color: #FBC308;
  }
  .btn-contact:hover {
    background-color: #FBC308;
    color: #000;
  }
@media (max-width: 768px) {

  .hero-content {
    display: block !important;
    width: 100%;
    padding: 0 15px;
  }

  .hero-content h1 {
    display: block !important;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-content p {
    display: block !important;
    width: 100%;
  }

  .tagline {
    white-space: normal;
    overflow: visible;
    margin-top: 70px;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .hero {
    width: 100%;
    max-width: 100%;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-explore,
  .btn-contact {
    width: 80%;
    text-align: center;
  }
}

.search-section{
  position: absolute;
  bottom: -60px;   /* hero ke niche thoda overlap */
  left: 52%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  
  z-index: 5;
}

.search-container{
  background:#fff;
  border-radius:35px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  display:flex;
  align-items:center;
  padding:18px;
  max-width:1000px;
  width:100%;
  gap:15px;
}

.search-box{
  flex:1;
  background:#f7fbfb;
  border-radius:20px;
  padding:14px 18px;
}

.search-box label{
  font-size:12px;
  font-weight:600;
  color:#a0a6ac;
}

.search-box input{
  border:none;
  background:transparent;
  font-size:16px;
  font-weight:500;
  width:100%;
}

.search-box input:focus{
  outline:none;
}

/* SEARCH BUTTON */
.search-btn{
  width:60px;
  height:60px;
  background:#0b6f6b;
  border-radius:50%;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
  color: white;
}

.search-btn:hover{
  background:#095a57;
  transform:scale(1.05);
}

@media(max-width:768px){
  .search-container{
    flex-direction:column;
  }
  .search-btn{
    width:100%;
    border-radius:20px;
  }
  
.search-section{
    position: static;   /* absolute hata diya */
    transform: none;
    margin-top: 30px;
    padding: 0 15px;
  }
}


/* Service SECTION */
.services-sectionn{
  padding:50px 0;
  text-align:center;
  margin-top: 100px;
}

/* HEADING */
.services-title{
  font-size:42px;
  font-weight:800;
  color:#263238;
}

.title-underline{
  width:180px;
  height:8px;
  background:#FBC308;
  border-radius:20px;
  margin:15px auto;
}

.services-subtitle{
  color:#6b7280;
  font-size:16px;
}

/* CARD */
.service-card{
  background:#0b6f6b;
  border-radius:30px;
  padding:40px 30px;
  box-shadow:0 25px 50px rgba(0,0,0,0.1);
  transition:.4s;
  height:100%;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* ICON IMAGE */
.service-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-icon img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
}

/* TEXT */
.service-title{
  color:#fff;
  font-weight:700;
  font-size:20px;
  margin-bottom:10px;
}

.service-text{
  color:#fff;
  font-size:15px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .services-title{
    font-size:32px;
  }
  .services-sectionn{
  padding: 80px 0;
  text-align:center;
  margin: 0;
}
}

.destination-section {
    background: #f4f9fb;
    padding: 70px 0;
}

/* HEADER */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header-row small {
    color: #ff7a00;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-row h2 {
    font-weight: 800;
}

.header-row a {
    text-decoration: none;
    font-weight: 500;
}

/* GRID GAP */


/* CARD BASE */

/* SECTION BACKGROUND */
.why-choose-section {
    background: linear-gradient(135deg, #0b6f6b, #0a5b5a);
    color: #fff;
    overflow: hidden;
}

/* LEFT IMAGE */
.why-image-wrap {
    position: relative;
    max-width: 420px;
}

.why-image-wrap img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

/* BADGE */
.satisfied-badge {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: #fff;
    color: #111;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.satisfied-badge strong {
    font-size: 22px;
    color: #22c55e;
}

.satisfied-badge span {
    font-size: 12px;
    line-height: 1.2;
}

/* TITLE */
.why-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.why-title span {
    color: #ffb703;
}

/* POINT LIST */
.why-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* EACH ITEM */
.why-item {
    background: rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .3s ease;
}

.why-item i {
    background: rgba(255,255,255,.25);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.why-item p {
    margin: 0;
    font-weight: 500;
}

/* HOVER */
.why-item:hover {
    background: rgba(255,255,255,.18);
    transform: translateX(5px);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .why-title {
        font-size: 30px;
    }

    .satisfied-badge {
        right: 10px;
    }
}


/* SECTION BG */
.traveler-stories {
    background: radial-gradient(circle at top right, #f7efe9, #ffffff);
}

/* TITLE */
.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.title-line {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.title-line span {
    width: 40px;
    height: 4px;
    border-radius: 10px;
}

.title-line span:first-child {
    background: #FBC308;
}

.title-line span:last-child {
    background: #FBC308;
}

/* CARD */
/* testimonial card */

.story-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
position:relative;
min-height:200px;
}

.stars{
color:#ffb400;
margin-bottom:15px;
}

.story-text{
color:#444;
font-size:15px;
line-height:1.7;
}

.quote-icon{
position:absolute;
top:20px;
right:25px;
font-size:30px;
color:#e6e6e6;
}

/* user */

.story-user{
display:flex;
align-items:center;
gap:12px;
margin-top:20px;
}

/* IMAGE CONTAINER */
.user-img{
width:60px;
height:60px;
border-radius:50%;
overflow:hidden;
border:3px solid #ff8a00;
flex-shrink:0;
}

/* IMAGE */
.user-img img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* TEXT */
.user-info h6{
margin:0;
font-size:16px;
font-weight:600;
color:#0c5c55;
}

.user-info span{
font-size:13px;
color:#777;
}


/* SECTION BG */
.newsletter-section {
    background: radial-gradient(circle at right, #f6efe8, #ffffff);
}

/* MAIN BOX */
.newsletter-box {
    background: linear-gradient(120deg, #ffffff, #f9f4f0);
    border-radius: 26px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* LEFT */
.newsletter-left img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 22px;
}

.newsletter-left h3 {
    font-weight: 700;
    color: #0b6f6b;
    margin-bottom: 10px;
}

.newsletter-left p {
    color: #777;
    font-size: 15px;
    max-width: 90%;
}

/* FORM BOX */
.newsletter-form {
    background: linear-gradient(135deg, #ffffff, #f5eefb);
    padding: 30px;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

/* LABEL */
.newsletter-form label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 6px;
}

/* INPUT */
.newsletter-form .form-control {
    border: none;
    border-radius: 14px;
    padding: 14px 16px;
    background: #f1f3f6;
    font-size: 14px;
    box-shadow: inset 0 4px 10px rgba(0,0,0,.06);
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(11,111,107,.3);
}

/* BUTTON */
.send-btn {
    width: 100%;
    background: #0b6f6b;
    color: #fff;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    transition: .4s ease;
}

.send-btn:hover {
    background: #095e5b;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .newsletter-left p {
        max-width: 100%;
    }

    .newsletter-form {
        padding: 22px;
    }
}







/* =========================
   HOLIDAY THEMES SECTION
   ========================= */
.theme-section{
    padding:40px 0 80px;
    background:#fff;
    font-family:'Outfit', sans-serif;
}

/* ---------- HEADER ---------- */

.theme-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.theme-header h2{
    font-size:22px;
    font-weight:600;
    color:#1f2937;
}

.theme-arrows{
    display:flex;
    gap:8px;
}

.theme-arrows button{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid #e5e7eb;
    background:#fff;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.theme-arrows button:hover{
    background:#f3f4f6;
}

/* ---------- SLIDER WRAPPER ---------- */

.theme-slider-wrapper{
    overflow:hidden;
    padding-bottom:50px;
}

/* Mobile & Tablet: enable swipe */
@media (max-width: 991px){
    .theme-slider-wrapper{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scroll-snap-type:x mandatory;
    }
}

/* ---------- SLIDER ---------- */

.theme-slider{
    display:flex;
    gap:24px;
    transition:transform 0.5s ease;
}

/* Disable transform animation on touch devices */
@media (max-width: 991px){
    .theme-slider{
        transition:none;
    }
}

/* ---------- CARD ---------- */

.theme-card{
    flex:0 0 25%;
    transition:transform 0.4s ease;
}

/* Tablet */
@media (max-width: 991px){
    .theme-card{
        flex:0 0 70%;
        scroll-snap-align:start;
    }
}

/* Mobile */
@media (max-width: 575px){
    .theme-card{
        flex:0 0 85%;
    }
}

/* ---------- IMAGE BOX ---------- */

.theme-img{
    position:relative;
    height:310px;
    border-radius:18px;
    overflow:hidden;
    background:#f3f4f6;
    box-shadow:0 14px 34px rgba(0,0,0,0);
}

/* Tablet */
@media (max-width: 991px){
    .theme-img{
        height:240px;
    }
}

/* Mobile */
@media (max-width: 575px){
    .theme-img{
        height:210px;
    }
}

/* ---------- IMAGE ---------- */

.theme-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
}

/* ---------- WHITE LABEL ---------- */

.theme-label{
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    padding:10px 22px;
    border-radius:24px;
    font-size:14px;
    font-weight:500;
    color:#111827;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
    white-space:nowrap;
    z-index:2;
}

/* ---------- HOVER EFFECTS ---------- */

.theme-card:hover{
    transform:translateY(-8px);
}

.theme-card:hover img{
    transform:scale(1.08);
}

/* ---------- HIDE ARROWS ON TOUCH ---------- */

@media (max-width: 991px){
    .theme-arrows{
        display:none;
    }
}


.international-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
}

.tour-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FBC308;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.image-info {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-size: 13px;
}

.image-info i{
    color: #FBC308;
}

.tour-content {
    padding: 50px 20px 20px;
}

.tour-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    min-height: 55px;
}

.location {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #0b6f6b;
    font-size: 18px;
    font-weight: bold;
}

.explore {
    text-decoration: none;
    color: #FBC308;
    font-weight: 500;
}

.explore:hover {
    text-decoration: none;
    color: #0b6f6b;
    font-weight: 500;
}

/* Arrow Style */
.owl-nav button {
    position: absolute;
    top: 40%;
    border: none !important;
    background: transparent !important;
}

.owl-prev { left: -60px; }
.owl-next { right: -60px; }

.arrow-btn {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px){
    .owl-nav button{
        display:none !important;
    }
    .tour-image {
        height: 200px;
    }
}



.location-dropdown{
position:absolute;
background:#fff;
width:50%;
z-index:999;
max-height:200px;
overflow-y:auto;
}

.location-item{
padding:10px;
cursor:pointer;
}

.location-item:hover{
background:#f1f1f1;
}



.member-card {
    text-align: center;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.member-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.member-card img {
    height: 80px;
    width: 100%;
    object-fit: contain;
}

.member-name {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #FBC308;
}