.visa-sec {
  background: linear-gradient(to bottom, #0d2b4c, #1f4b7a);
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.visa-container {
  max-width: 1100px;
  margin: auto;
}

/* MENU */
.visa-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 15px;
  gap: 15px;
}

.visa-item {
  font-size: 14px;
  color: #555;
  cursor: pointer;
  position: relative;
}

.visa-item.active {
  color: #007bff;
  font-weight: 600;
}

.visa-item.active::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #007bff;
  bottom: -5px;
  left: 0;
}

/* CARD */
.visa-card {
  background: #fff;
  margin-top: 20px;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.visa-card h2 {
  color: #1d4c7d;
  font-size: 20px;
  margin-bottom: 20px;
}

/* FORM */
.visa-form {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.visa-field {
  flex: 1;
  padding: 20px;
  text-align: left;
  border-right: 1px solid #eee;
}

.visa-field:last-child {
  border-right: none;
}

.visa-field label {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.visa-field h3 {
  font-size: 20px;
  color: #555;
  margin: 0;
}

.visa-field.big {
  flex: 2;
}

/* BUTTON */
.visa-btn {
  margin-top: 20px;
  background: linear-gradient(to right, #4facfe, #007bff);
  border: none;
  padding: 12px 40px;
  color: #fff;
  font-size: 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.visa-btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .visa-form {
    flex-direction: column;
  }

  .visa-field {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .visa-field:last-child {
    border-bottom: none;
  }

  .visa-menu {
    gap: 10px;
    font-size: 12px;
  }
}

/* SECTION BOX */
.visa-sec-box {
  background: #f6f7fb;
  border-radius: 16px;
}

/* TITLE */
.visa-sec-title {
  font-weight: 700;
}

/* ARROWS */
.visa-arrow-btn {
  border: none;
  background: #fff;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* CARD */
.visa-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  height: 100%;
  border: 1px solid #eee;
  transition: 0.3s;
}

.visa-card:hover {
  transform: translateY(-5px);
}

/* FLAG */
.visa-flag {
  width: 32px;
}

/* BADGE */
.visa-badge {
  font-size: 12px;
  background: #e9f0ff;
  color: #3b6ef5;
  padding: 4px 8px;
  border-radius: 8px;
}

.visa-badge.blue {
  background: #e0f0ff;
  color: #007bff;
}

/* TEXT */
.visa-country {
  font-weight: 600;
}

.visa-link {
  color: #00a19c;
  font-size: 14px;
  margin: 5px 0;
}

.visa-desc {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* BOTTOM */
.visa-bottom {
  background: #dff3ef;
  padding: 10px;
  margin-top: 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #00796b;
}

/* EUROPE */
.europe-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  border: 1px solid #eee;
}

.europe-badge {
  background: #fff3e0;
  color: #ff9800;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
}

/* FLAGS DESIGN */
.europe-flag {
  height: 90px;
  border-radius: 12px;
}

/* Custom flag styles */
.france {
  background: linear-gradient(135deg, blue 50%, white 50%, red);
}

.spain {
  background: linear-gradient(135deg, red 50%, yellow 50%);
}

.finland {
  background: linear-gradient(135deg, navy 50%, white 50%);
}

.germany {
  background: linear-gradient(135deg, black 33%, red 33%, yellow);
}

/* SECTION */
.vm-sec-box {
  background: #eef3fb;
  border-radius: 16px;
}

/* TITLE */
.vm-title {
  font-weight: 700;
}

/* ARROWS */
.vm-arrow {
  border: none;
  background: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  margin-left: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* REVIEW CARD */
.vm-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #eee;
  height: 100%;
}

.vm-review-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.vm-review-head img {
  width: 24px;
}

.vm-review-text {
  font-size: 13px;
  color: #555;
}

/* FEATURES */
.vm-feature-card {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eee;
  height: 100%;
}

.vm-icon {
  background: #1e5bb8;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* BLOG */
.vm-blog-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  border: 1px solid #eee;
  gap: 10px;
}

.vm-blog-card img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.vm-blog-text h6 {
  font-weight: 600;
}

.vm-blog-text p {
  font-size: 13px;
  color: #555;
}

.vm-blog-text a {
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
}

/* SECTION BG */
.vm-travel-strip {
  background: #eaf2fb;
  overflow: hidden;
}

/* TITLE */
.vm-travel-title {
  color: #2a5db0;
  font-weight: 500;
  font-style: italic;
}

/* SLIDER */
.vm-flag-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.vm-flag-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: vm-scroll 20s linear infinite;
}

/* FLAGS */
.vm-flag-track img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

/* ANIMATION */
@keyframes vm-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* caroffer css */

/* MAIN HERO */
.cab-hero-sec {
  position: relative;
  height: 520px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.cab-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../image/cab-tb-mb-110925.webp') center/cover no-repeat;
  filter: blur(3px);
  transform: scale(1.1);
}

/* DARK OVERLAY */
.cab-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* CONTENT */
.cab-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.cab-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.cab-hero-content p {
  font-size: 22px;
  margin-top: 10px;
  font-weight: 500;
}

/* DOTS */
.cab-dots {
  margin-top: 15px;
}

.cab-dots span {
  display: inline-block;
  width: 30px;
  height: 6px;
  border-radius: 10px;
  background: #ccc;
  margin: 0 4px;
}

.cab-dots span.active {
  background: #2b6cb0;
}

.cab-dots span:last-child {
  background: #ff4d4d;
}

/* CAR IMAGE */
.cab-car {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cab-hero-content h1 {
    font-size: 32px;
  }

  .cab-hero-content p {
    font-size: 18px;
  }

  .cab-car {
    width: 420px;
  }
}

@media (max-width: 576px) {
  .cab-hero-sec {
    height: 450px;
  }

  .cab-hero-content h1 {
    font-size: 24px;
  }

  .cab-hero-content p {
    font-size: 16px;
  }

  .cab-car {
    width: 300px;
  }
}


/* TEXT */
.cab-top-text {
  color: #666;
}

.cab-heading {
  font-weight: 700;
}

/* TABS */
.cab-tab {
  border: 1px solid #2b5da7;
  padding: 8px 20px;
  border-radius: 8px;
  background: #fff;
  color: #2b5da7;
}

.cab-tab.active {
  background: #2b5da7;
  color: #fff;
}

/* CARD */
.cab-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cab-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cab-card-body {
  padding: 12px;
}

.cab-price {
  background: #eef3f8;
  padding: 6px;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}

.cab-btn {
  background: #2b6cb0;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  margin-top: 10px;
}

/* OFFER */
.cab-offer {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.cab-offer img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cab-offer-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
}

/* FEATURES */
.cab-feature-box {
  background: #eef3f8;
  padding: 20px;
  border-radius: 12px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cab-card img{
    height:150px;
  }
}


    .section-box {
      background: #fff;
      padding: 40px 20px;
      border-radius: 10px;
      
      font-family: Arial, sans-serif;
    }

    .addons-title {
      text-align: center;
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
    }

    .addons-title::before,
    .addons-title::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 35%;
      height: 1px;
      background: #ccc;
    }

    .addons-title::before { left: 0; }
    .addons-title::after { right: 0; }

    .addon-item {
      text-align: center;
      padding: 20px;
      border-right: 1px solid #e0e0e0;
      height: 100%;
    }

    .addon-item:last-child {
      border-right: none;
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      background: #1e4f8a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }

    .icon-circle i {
      color: #fff;
      font-size: 28px;
    }

    .addon-title {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .addon-desc {
      font-size: 14px;
      color: #666;
    }

    .cta-section {
      text-align: center;
      margin-top: 40px;
    }

    .cta-btn {
      background: linear-gradient(to right, #4facfe, #007bff);
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      color: #fff;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .addon-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
      }
      .addon-item:last-child {
        border-bottom: none;
      }

      .addons-title::before,
      .addons-title::after {
        width: 25%;
      }
    }

    .cab-tab.active,
.cab-tab[aria-selected="true"] {
  background: #2b5da7;
  color: #fff;
}


.cab-note {
  background: #f8f9fb;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #555;
}

.cab-fare-box {
  background: #eef3f8;
  padding: 12px;
  border-radius: 10px;
}

.cab-note {
  background: #f8f9fb;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
}

.blog_section {
  
  overflow: hidden;
  
}
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.blog_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 60px; 
}


.blog_card img {
  width: 100%;
  height: 260px;        
  object-fit: cover;    
  display: block;
  border-radius: 15px;

}
.blog_card:hover img {
  transform: scale(1.05);
}

/* Overlay Content */
.blog_content {
background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin: -40px 15px 0;   
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog_content small {
  color: #777;
}

.blog_content h5 {
  margin-top: 5px;
  font-weight: 600;
}

/* Arrow Buttons */
.btn-light {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

 .blog-sidebar {
  position: sticky;
  top: 90px;
}

/* Box Style */
.sidebar-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
   box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Title */
.sidebar-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.sidebar-box h5::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #ff7a00;
  display: block;
  margin-top: 5px;
}

/* Search */
.search-bar {
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.search-bar button {
  position: absolute;
  right: 5px;
  top: 5px;
  border: none;
  background: #ff7a00;
  color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
}

/* Posts */
.post {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.post img {
  width: 75px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.post p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.post span {
  font-size: 12px;
  color: gray;
}
.post:hover p {
  color: #ff7a00;
}

/* Categories */
.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

/* Tags */
.tags a {
  display: inline-block;
  padding: 6px 12px;
  margin: 5px 5px 0 0;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
}

.tags a:hover {
  background: #ff7a00;
  color: #fff;
}

@media (max-width: 992px) {
  .blog-sidebar {
    position: static;
    margin-top: 30px;
  }
}


/* HERO */
.hero-sec{
  height:220px;
  background:url('../image/1440x320-Kashmir-21-06-2021.avif') center/cover;
  position:relative;
}

.hero-text{
  position:absolute;
  bottom:30px;
  left:60px;
  color:#fff;
}

/* SIDEBAR */
.sidebar-box{
  position:sticky;
  top:20px;
  background:#fff;
  padding:20px;
  border-radius:10px;
}

.filter-title{
  font-weight:600;
  margin-bottom:20px;
}

.filter-item{
  padding:12px 0;
  border-bottom:1px solid #eee;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}

/* TABS */
.custom-tabs .nav-link{
  border:none;
  color:#555;
}

.custom-tabs .nav-link.active{
  border-bottom:3px solid #007bff;
  color:#007bff;
}

/* SORT */
.sort-box{
  background:#fff;
  padding:8px 15px;
  border-radius:20px;
  font-size:14px;
}

/* CARD */
.pkg-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  border:1px solid #eee;
}

.img-box{
  position:relative;
}

.img-box img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.tag{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  background:#e6f0ff;
  padding:5px 10px;
  border-radius:20px;
  font-size:12px;
}

/* CARD BODY */
.card-body{
  padding:15px;
}

.card-body h6{
  font-weight:600;
}

.sub{
  font-size:13px;
  color:#777;
}

.card-body ul{
  font-size:13px;
  padding-left:18px;
}

/* PRICE */
.price-box{
  background:#f3f3f3;
  padding:10px;
  border-radius:10px;
  margin-top:10px;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:991px){
  .sidebar-box{
    position:relative;
    margin-bottom:20px;
  }
}