:root {
    --brand-yellow: #FBC308;
    --brand-yellow-dark: #EEC829;
    --brand-teal: #0b6f6b;
}

body {
    font-family: 'Poppins', 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;
}
/* 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: #6b7280;
    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;
    color: #0b6f6b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* 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 */
.hero-section {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 30px;
  padding: 30px 20px;
  overflow: hidden;
}

.hero-content {
  text-align: left;
  max-width: 600px;
  padding-left: 30px;
}

.tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(11, 111, 107, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.highlight {
  color: var(--brand-teal);
}

p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-explore {
  background-color: var(--brand-yellow);
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background-color: var(--brand-yellow-dark);
  transform: translateY(-2px);
}

.btn-contact {
  background-color: #fff;
  color: var(--brand-teal);
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--brand-teal);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--brand-teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Images */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.small-image {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-right {
  top: -10px;
  right: -10px;
}

.bottom-left {
  bottom: -10px;
  left: -10px;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 60px 50px;
  }
 

  .hero-content {
    text-align: left;
    max-width: 50%;
  }

  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 1.1rem;
  }

  .hero-image {
    max-width: 45%;
  }

  .small-image {
    width: 100px;
    height: 100px;
  }

  .top-right {
    top: 0;
    right: 0;
  }

  .bottom-left {
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    padding: 80px 100px;
    gap: 50px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-buttons a {
    padding: 14px 30px;
    font-size: 1.05rem;
  }
  

  .small-image {
    width: 110px;
    height: 110px;
  }
}


/* enquiry section */
.search-section{
  display:flex;
  justify-content:center;
  margin:100px 15px;
}

.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;
  }
}


/* Service SECTION */
.services-section{
  padding:50px 0;
  text-align:center;
}

/* HEADING */
.services-title{
  font-size:42px;
  font-weight:800;
  color:#263238;
}

.title-underline{
  width:180px;
  height:8px;
  background:#f3d9cc;
  border-radius:20px;
  margin:15px auto;
}

.services-subtitle{
  color:#6b7280;
  font-size:16px;
}

/* CARD */
.service-card{
  background:#fff;
  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:#0b6f6b;
  font-weight:700;
  font-size:20px;
  margin-bottom:10px;
}

.service-text{
  color:#6b7280;
  font-size:15px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .services-title{
    font-size:32px;
  }
}

.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 */
.destination-card {
    position: relative;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    padding: 10px;                 /* 👈 white border feel */
    transition: .4s ease;
    margin-bottom: 20px;
}

/* IMAGE */
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .6s ease;
}

/* HOVER */
.destination-card:hover img {
    transform: scale(1.08);
}

/* TEXT BLACK GLASS */
.card-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}


/* 🔥 STAGGERED HEIGHT EFFECT (SAME AS IMAGE) */
.card-1 { transform: translateY(5px); }
.card-2 { transform: translateY(25px); }
.card-3 { transform: translateY(5px); }

.card-4 { transform: translateY(-1px); }
.card-5 { transform: translateY(10px); }
.card-6 { transform: translateY(-10px); }

/* DOTS */
.custom-dots {
    position: relative;
    margin-top: 35px;
}

.custom-dots button {
    background-color: #000 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    opacity: 0.4 !important;
}

.carousel-indicators .active {
    background-color: #000 !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
}

.carousel,
.carousel-inner,
.carousel-item,
.carousel-item .container,
.carousel-item .row,
.destination-section,
.destination-grid {
    background: transparent !important;
}
/* MOBILE */
@media(max-width:768px){
    .destination-card {
        height: 220px;
        transform: none !important;
    }
}

/* 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: #0b6f6b;
}

.title-line span:last-child {
    background: #f4a261;
}

/* CARD */
.story-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    transition: .4s ease;
}

.story-card:hover {
    transform: translateY(-6px);
}

/* STARS */
.stars {
    color: #f5b301;
    margin-bottom: 15px;
}

/* TEXT */
.story-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* QUOTE ICON */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: #f1f1f1;
}

/* USER */
.story-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-left: 15px;
}

.story-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f4a261;
}

.story-user h6 {
    margin: 0;
    font-weight: 600;
    color: #0b6f6b;
}

.story-user span {
    font-size: 12px;
    color: #999;
}

/* RESPONSIVE */
@media(max-width:768px){
    .section-title {
        font-size: 28px;
    }
}


/* 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;
    }
}
