:root{
   --primary-color: #ff6b00;
   --black-color: #353535;
}
*{
   margin:0;
   padding:0;
   box-sizing:border-box;
}
body{
  font-family:'Poppins',sans-serif;
  background:#f3f6fb;
  color:#1f2937;
}

a{
  text-decoration: none;
}

.text-primary{
   color: var(--primary-color) !important;
}

/*--- Start NAVBAR BASE ----*/
/* NAVBAR */
.custom-navbar {
   background: #fff;
   padding: 0;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 10;
}

/* LOGO */
.navbar-brand img {
    width: 140px;
}

/* MENU */
.navbar-nav .nav-link {
    font-size: 14px;
    margin: 0 10px;
    color: #374151;
    position: relative;
}

/* ACTIVE */
.navbar-nav .nav-link.active {
    color: #2563eb;
    font-weight: 500;
}
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

/* RIGHT SIDE */
.nav-right .currency {
    font-size: 13px;
    cursor: pointer;
}

.nav-right .icon {
    font-size: 16px;
    cursor: pointer;
}

/* BUTTON */
.login-btn {
    background: #ff6b00;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
}
.login-btn:hover {
    background: #e65c00;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .navbar-nav {
        display: inline-flex;
    }
   .nav-right .currency, .nav-right .icon{
      display: none;
   }
   .nav-right {
       margin-top: 15px;
       justify-content: left;
       padding-bottom: 20px;
   }
}
/*--- END NAVBAR SECTION ----*/

/* START HERO SECTION */
.hero {
    height: 520px;
    background: linear-gradient(0deg, #0a2a6bc7 30%, #0a2a6b29 50%, #1e4fc175 80%), url(https://images.unsplash.com/photo-1512453979798-5ea266f8880c);
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    color: white;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
}
.hero p {
    margin: 10px 0 25px;
    color: #e5e7eb;
}

/* SEARCH BOX */
.search-box {
    display: flex;
    background: white;
    border-radius: 14px;
    max-width: 850px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-item {
    position: relative;
    padding: 15px 20px;
    flex: 1;
    border-right: 1px solid #eee;
}

.search-item label {
    font-size: 12px;
    color: #6b7280;
}

.search-item input,
#guestDisplay {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    color: #363852;
    font-weight: 500;
}

/* BUTTON */
.search-btn {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* DROPDOWN LOCATION */
.dropdown {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
}
.dropdown div {
    padding: 10px;
    cursor: pointer;
    color: #4d4f65;
}
.dropdown div:hover {
    background: #f3f6fb;
}

/* GUEST */
.guest-box {
    cursor: pointer;
}
.guest-dropdown {
    position: absolute;
    top: 65px;
    background: white;
    width: 220px;
    border-radius: 10px;
    padding: 15px;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guest-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #4d4f65;
}
.guest-row button {
    width: 25px;
}

/* CATEGORY STRIP */
.categories {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    padding: 10px 15px;
    border-radius: 16px;
    width: fit-content;
}

/* CATEGORY */
.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* ICON BOX */
.icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 60px;
}
.icon img{
    width: 22px;
    height: 22px;
}

/* SVG ICON */
.icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* TEXT */
.category span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

/* ACTIVE */
.category.active .icon {
        background: linear-gradient(45deg, #123c89, #0e66c7);
}
.category.active svg {
    fill: #fff;
}

.category.active{
   border-bottom: 2px solid #FFF;
}

/* HOVER */
.category:hover .icon{
    transform: translateY(-1px);
    background: linear-gradient(45deg, #123c89, #0e66c7);
}

@media screen and (max-width: 992px){
   .hero{

      padding: 24px 0;

   }
   .categories{
      display: none;
   }
}

@media screen and (max-width: 576px){
   .features{
      flex-direction: column;
   }
}
/* END HERO SECTION */

/* START FEATURE SECTION */
.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 50px;
    background: #FFF;
    border-radius: 16px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgb(225 224 255 / 33%);
    border: 1px solid #e4e4e4;
}

/* FEATURE ITEM */
.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    border-right: 1px solid #e4e4e4;
}

/* ICON BOX */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9def0;
    border-radius: 12px;
}

/* ICON */
.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: #2563eb;
}

/* TEXT */
.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.feature-text p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

/*----- END FEATURES SECTION ----*/

/*--- START CARD SECTION  -----*/
.kst-card{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
}
.kst-card .bg-img{
  width: 100%;
  height: 100%;
  border-radius: 12px;
  min-height: 280px;
}
.kst-card-details h3{
   font-size: 20px;
   font-weight: 600;
   margin: 4px 0;
}
.kst-card-details .meta{
  font-size: 12px;
}
.kst-card-details .price{
  font-size: 20px;
  font-weight: 800;

}
.kst-card-details .book-btn{
      color: white;
      display: block;
      width: 80%;
      background: #ff6b00;
      padding: 10px;
      border-radius: 24px;
      text-align: center;
      text-decoration: none;
}
.kst-card-details .whatsapp-btn{
       width: 48px;
       height: 48px;
       display: flex;
       align-items: center;
       justify-content: center;
       background: green;
       color: white;
       border-radius: 100%;
}
.nav-card{
      background: #f3f6fb;
      height: 148px;
      overflow: hidden;
      border-radius: 8px;
}
.nav-card .nav-tabs .nav-link{
         background-color: #fccaa6 !important;
         color: #000;
         border-radius: 0;
         font-size: 12px;
}
.nav-card .nav-tabs .nav-link.active{
       background-color: #ff6b00 !important;
       color: #fff;
       border: none;
}
.nav-card .tab-content{
  font-size: 13px !important;
      padding: 8px;
}



.activity-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.activity-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BADGE */
.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 6px;
}

/* WISHLIST */
.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    cursor: pointer;
}

/* RATING */
.rating {
    font-size: 13px;
    font-weight: 500;
}
.rating span {
    color: #6b7280;
}

/* PRICE */
.price {
    font-weight: 600;
    color: #2563eb;
}
.price span {
    font-size: 12px;
    color: #6b7280;
}

/* BUTTON */
.btn-orange {
    background: #ff6b00;
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
}
.btn-orange:hover {
    background: #e65c00;
    color: #fff;
}
/*--- END CARDS SECTION ---*/


/*--- WHY SECTION ----*/
.why-section {

}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.why-card:hover {
    transform: translateY(-6px);
}

/* ICON BOX */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef2ff;
    border-radius: 14px;
}

/* ICON */
.why-icon svg {
    width: 26px;
    height: 26px;
    fill: #2563eb;
}

/* TEXT */
.why-card h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.why-card p {
    font-size: 12px;
    color: #6b7280;
}
/*--- END WHY CHOOSE US SECTION ----*/

/*--- START OFFER SECTION ---*/
.experience-section {
   background: linear-gradient(0deg, #0a2a6bd1, #1e4fc1a1), url(https://images.unsplash.com/photo-1512453979798-5ea266f8880c);
   background-size: cover;
   background-position: center;
    margin: 60px 0;
    padding: 50px 0;
}

/* CARD */
.exp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}
.exp-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.exp-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BODY */
.exp-body {
    padding: 18px;
}
.exp-body h5 {
    font-weight: 600;
    margin-bottom: 5px;
}
.exp-body p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* FOOTER */
.exp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.price {
    font-weight: 600;
    color: #2563eb;
}

/* BUTTON */
.btn-orange {
    background: #ff6b00;
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
}
.btn-orange:hover {
    background: #e65c00;
    color: #fff;
}

/*--- END OFFER SECTION ---*/

/*---- START TESTIMONIAL SECTION ----*/
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-6px);
}
.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}
.rating {
    color: #f59e0b;
}
.review {
    font-size: 13px;
    color: #374151;
}
.swiper {
    padding-bottom: 40px;
}

/*---- END TESTIMONIAL SECTION ----*/

/* START FAQ SECTION */
.faq-section {
    background: #fff;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}
.faq-question .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.faq-answer {
    display: none;
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
}
/* ACTIVE */
.faq-item.active {
    border-color: #2563eb;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .icon {
    background: #2563eb;
    color: #fff;
}
/*----- END FAQS SECTION -----*/

/*---- START NEWSLETTER SECTION ----*/
.offer-strip {
  background: linear-gradient(90deg, #083377, #1e4383);
  padding: 40px 0;
  color: #FFF;
}
/* LEFT */
.offer-left h6 {
    font-size: 14px;
    margin-bottom: 3px;
}
.offer-left p {
    font-size: 12px;
    color: #cbd5f5;
    margin: 0;
}
/* CENTER */
.offer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.offer-input {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
}
.offer-input input {
    border: none;
    outline: none;
    padding: 10px 12px;
    flex: 1;
    font-size: 13px;
}
.offer-input button {
    background: #ff6b00;
    border: none;
    color: #fff;
    padding: 0 16px;
    font-size: 13px;
}
.offer-input button:hover {
    background: #e65c00;
}
/* RIGHT FEATURES */
.offer-right {
    gap: 25px;
}
.offer-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}
.offer-feature span {
    font-size: 16px;
}
.offer-feature h6 {
    font-size: 12px;
    margin: 0;
}
.offer-feature p {
    font-size: 11px;
    margin: 0;
    color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .offer-strip .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .offer-right {
        justify-content: center;
        flex-direction: column;
    }
}
/*---- END NEWSLETTER SECTION ----*/

/*----- START FOOTER SECTION -----*/
.footer-section {
   color: #040f29;
   background: #f9fbff;
}
.footer-logo img{
    width: 196px;
}
.footer-text {
    font-size: 13px;
    color: #415774;
}
.footer-title {
    color: #122472;
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    text-decoration: none;
    color: #415774;
    font-size: 13px;
    transition: 0.2s;
}
.footer-section ul li a:hover {
    color: #172a44;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    background: #1e293b;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.social-icons a:hover {
    background: #2563eb;
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    font-size: 12px;
    color: #64748b;
}
.footer-address{
  font-size: 13px;
  color: #64748b;
}
.footer-address a{
  color: #64748b;
}
/*----- END FOOTER SECTION -----*/

/*----- START VISA PAGE -----*/

/* HERO SECTION */
.visas-hero {
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
    height: 500px;
    position: relative;
}

/* OVERLAY */
.visas-hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    height: 100%;
    display: flex;
    align-items: center;
}

/* TEXT */
.visas-hero-content {
    color: #fff;
    max-width: 500px;
}
.visas-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}
.visas-hero-content p {
    margin-top: 10px;
    color: #e5e7eb;
}

/* SEARCH BOX */
.visas-search-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TABS */
.visas-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.visas-tabs span {
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}
.visas-tabs .active {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
}

/* INPUT */
.visas-search-fields label {
    font-size: 12px;
    color: #6b7280;
}
.visas-search-fields input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 13px;
}

/* BUTTON */
.visas-btn-orange {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
}
.visas-btn-orange:hover {
    background: #e65c00;
}

/* FEATURES */
.visas-search-features {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .visas-hero-content h1 {
        font-size: 28px;
    }

    .visas-search-features {
        flex-direction: column;
        align-items: center;
    }
}