body{
  font-family: "IBM Plex Sans", sans-serif;
}



h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;

}


/* HEADER */
.trv-header{
  background:transparent;
  padding:15px 0;
  
}

.nav{
  padding: 10px;
    background: #fff;
    border-radius: 10px;
    
}

.trv-logo{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
  color:#000;
}
.trv-logo span span{ color:#ff5722; }

.trv-menu{
  list-style:none;
  margin:0;
  padding:0;
  gap:25px;
}
.trv-menu li{ position:relative; }
.trv-menu a{
  text-decoration:none;
  color:#222;
  font-weight:500;
}

/* Sticky scroll header */
.trv-header.sticky {
  width: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  padding: 0px 0; /* thoda chhota padding scroll pe */
  z-index: 9999;
}

/* Dropdown */
.trv-menu .dropdown-menu{
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.3s;
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  padding:15px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.trv-menu .dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Hamburger */
.trv-hamburger{
  font-size:28px;
  background:none;
  border:none;
}

/* MOBILE MENU */
.trv-mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width: 320px;
  height:100%;
  background:#fff;
  z-index:9999;
  transition:.4s;
  padding:20px;
  overflow-y:auto;
}
.trv-mobile-menu.active{ left:0; }

.trv-mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}


.wishlist{
  margin:20px 0;
  padding:15px;
  background:#f6f6f6;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
}

.mobile-nav{
  list-style:none;
  padding:0;
}
.mobile-nav li{
  border-bottom:1px solid #eee;
}
.mobile-nav a{
  display:flex;
  justify-content:space-between;
  padding:15px 0;
  text-decoration:none;
  color:#222;
}

.sub-menu{
  display:none;
  padding-left:15px;
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:none;
  z-index:9998;
}
.menu-overlay.active{ display:block; }


/* Arrow icon */
.dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
  font-size: 0.7em; /* arrow thoda chhota kar diya */
}

/* Rotate up when dropdown is open */
.dropdown.show > a .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-toggle::after{
  display: none;
}

.dropdown-menu{
      border-radius: 0px!important;
    border-top: 2px solid #0e60aa;
    min-width: 250px;
}

.dropdown-item{
  padding-left: 0px;
  transition: all ease 0.4s;

}
.dropdown-item:hover{
  color: #ff5722;
  padding-left: 5px;
  background-color: #f0f0f0;
}

.btn-header-enquiry{
  background-color: #0e60aa;
  color: #fff;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Pseudo element for sliding background */
.btn-header-enquiry::before {
  content: "";
  position: absolute;
  top: 100%;       /* start from bottom */
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff5722;
  transition: all 0.3s ease;
  z-index: -1;
}

/* Text above pseudo element */
.btn-header-enquiry span {
  position: relative;
  z-index: 1;
}

/* Hover animation */
.btn-header-enquiry:hover::before {
  top: 0;          /* slide from bottom to top */
}

.btn-header-enquiry:hover {
  color: #fff;     /* text color stays white */
}

#openMenu i{
  color: #0e60aa;
}

#closeMenu{
 background-color: transparent;
 color: #ff5722;
}

.has-sub a span{
  color: #0e60aa;
  font-weight: 700;
}

.has-sub a:focus span{
  color: #ff5722;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 150px;
  gap: 15px;
  padding: 20px;
}

.field {
  border: 1px solid #9c9c9c;
  border-radius: 6px;
  padding: 5px 10px;
}

.field label {
  font-size: 12px;
  color: #888;
}

.field input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  margin-top: 5px;
}

/* Button */
.search-btn {
 
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {
  .search-form {
    grid-template-columns: 1fr;
  }

  .search-btn {
    padding: 14px;
  }
  .search-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
}


.hero {
  position: relative;
  /* height: 95vh; */
  width: 100%;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 80px;
    left: 0;
    right: 0;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  color: #fff;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.hero-text h1 span{
  color: #ff5722;
}

.hero-text p {
  margin-top: 10px;
  max-width: 600px;
}

/* Search Box */
.search-box {
  background: #fff;
  color: #000;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.tabs button {
  border: none;
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 500;
}

.tabs .active {
  background: #e74c3c;
  color: #fff;
  border-radius: 20px;
}

/* Form */
.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 150px;
  gap: 15px;
  padding: 20px;
}

.field label {
  font-size: 14px;
    color: #000000;
    font-weight: 600;
}

.field strong {
  display: block;
  font-size: 16px;
}

.field span {
  font-size: 12px;
  color: #777;
}

.search-btn {
  
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* 📱 Mobile Responsive */
@media (max-width: 992px) {
      .hero-text h1 {
        font-size: 28px;
        color: #0a0a0a;
    }

  .hero-text h1 br{
    display: none;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-btn {
    padding: 10px;
        margin-top: 10px;
  }
  .search-box h5{
    font-size: 18px;
    color: #fff;
  }
  .search-box {
    background: #fff;
    color: #000;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: #185997;
}
.field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    margin-top: 5px;
    padding: 5px 10px;
    border: 1px solid #a5a5a5;
    border-radius: 5px;
}
.field{
  padding: 0px;
  border: none;
}
.search-form{
  gap: 10px;
  padding: 14px 20px 20px;
}
.field label {
    font-size: 14px;
    color: #e2e2e2;
    font-weight: 600;
}
}


.search-box h5{
      margin: 10px 20px 0px;
      font-weight: 700;
}




.cruise-types {
  background: #f5f8fa;
}

.cruise-title {
  font-weight: 700;
  font-size: 32px;
}

.cruise-title span {
  color: #e53935;
  text-decoration: underline;
}

.cruise-subtitle {
  max-width: 900px;
  margin: 10px auto 0;
  color: #555;
  font-size: 18px;
}

/* Item */
.cruise-item {
  text-align: center;
}

.cruise-img {
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 100px;
  overflow: hidden;
  transition: all ease 0.3s;
}

.cruise-img:hover{
  border-radius: 60px;
}

.cruise-img:hover img{
  transform: scale(1.1);

}


.cruise-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
}
.cruise-item:hover h6{
  color: #e74c3c;
}

.cruise-item a{
  text-decoration: none;
}
.cruise-item h6 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

/* Owl arrows */
.cruise-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  width: 45px;
  height: 45px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.cruise-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.cruise-carousel .owl-nav button.owl-next {
  right: -20px;
}

.cruise-carousel .owl-nav button i {
  font-size: 18px;
}

.trv-marquee-wrap {
  background: #1e2a44;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.trv-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.trv-marquee-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: trv-scroll 25s linear infinite;
}

/* 🔥 Pause on hover */
.trv-marquee:hover .trv-marquee-track {
  animation-play-state: paused;
}

/* Clickable text */
.trv-marquee-item {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trv-marquee-item:hover {
  color: #ffcc00;
}

.trv-marquee-track i {
  color: #fff;
  font-size: 12px;
  opacity: 0.9;
}

/* Gradient fade */
.trv-marquee-fade {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trv-fade-left {
  left: 0;
  background: linear-gradient(to right, #1e2a44 0%, transparent 100%);
}

.trv-fade-right {
  right: 0;
  background: linear-gradient(to left, #1e2a44 0%, transparent 100%);
}

/* Animation */
@keyframes trv-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }}


  .abt-wrap {
  background: #fff;
}

.abt-img-grid {
  position: relative;
  width: 100%;
  
}

.abt-exp {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 180px;
  background: #0bb1d3;
  border-bottom: 5px solid #fff;
  border-right: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}

.abt-exp span {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;

}

.abt-img-sm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 230px;
  height: 260px;
  border-radius: 120px 0 0 0;
  overflow: hidden;
}

.abt-img-lg {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  border-radius: 0 150px 150px 0;
  overflow: hidden;
}

.abt-img-sm img,
.abt-img-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.abt-title span {
  color: #e53935;
  text-decoration: underline;
}

.abt-text {
  font-size: 15px;
  color: #242424;
  line-height: 1.7;
  text-align: justify;
}

.abt-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  height: 100%;
}

.abt-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.abt-icon.red { background: #e74c3c; }
.abt-icon.green { background: #8bc34a; }

.abt-btn {
 
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 500;
}

.abt-btn:hover {
  background: #c0392b;
  color: #fff;
}

.large-img{
  width: 70%;
  display: block;
  margin-left: auto;
  height: 100%;
}

.large-img img{
  height: 100%;
  object-fit: cover;
}

.abt-img-grid{
  position: relative;
  /* border-radius: 50px;
  overflow: hidden; */
}

.abt-box h5{
  font-size: 18px;
}
.abt-box p{
  font-size: 15px;
}
.small-img{
  position: absolute;
  width: 300px;
  bottom: 0px;
  border-right: 6px solid #ffffff;
  border-top: 6px solid #ffffff;
  overflow: hidden;
}

.trv-tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.trv-tour-card:hover {
  transform: translateY(-6px);
}

.trv-tour-img {
  position: relative;
  
  overflow: hidden;
}

.trv-tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.trv-tour-card:hover img {
  transform: scale(1.1);
}

.trv-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1e88e5;
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
}

.trv-like {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
}

.trv-tour-body {
  padding: 20px;
}

.trv-tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.trv-tag {
  color: #e53935;
  font-weight: 500;
}

.trv-rating {
  background: #ffca28;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  gap: 10px;
}



.trv-rating span i{
    font-size: 18px;
}

.trv-tour-body h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.trv-location {
  font-size: 14px;
  color: #777;
}

.trv-price {
  margin: 12px 0;
  font-size: 15px;
}

.trv-price strong {
  color: #e53935;
  font-size: 20px;
}

.trv-price del {
  color: #999;
  margin-left: 5px;
}

.trv-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 12px;
  align-items: center;
}

.trv-tour-section{
  background-color: #f5f8fa;
}


.trv-inclusions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.trv-inclusions span {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f6f8fb;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.trv-inclusions i {
  color: #e53935;
  font-size: 14px;
}

.trv-stats-section {
  padding: 40px 0;
}

.trv-stats-box {
  background: #1f2f46;
  border-radius: 18px;
  padding: 45px 30px;
  overflow: hidden;
}

/* stat item */
.trv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trv-stat-icon {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 6px;
}

.trv-stat-label {
  color: #cfd8e3;
  font-size: 18px;
  margin: 4px 0;
  font-weight: 700;
}

.trv-stat-number {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

/* bg shapes */
.trv-shape {
  position: absolute;
  width: 80px;
  pointer-events: none;
}

.trv-shape-top {
  top: 0px;
  left: 0px;
}

.trv-shape-bottom {
  bottom: 0px;
  right: 0px;
}

.trv-stat-item i{
  font-size: 28px;
}

/* responsive */
@media (max-width: 767px) {
  .trv-stat-number {
    font-size: 28px;
  }
  .abt-exp{
    display: none;
  }
  .trv-stat-label{
    font-weight: 600;
    font-size: 12px!important;
  }
  .trv-stats-box{
    padding: 45px 15px;
  }
}


@media screen and (max-width:1200px) {
  .trv-stat-label { 
    font-size: 15px;
}
}




  /* Grid layout matching the image exactly */
        .cruise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 180px);
            gap: 15px;
            width: 100%;
        }
        
        /* Individual grid items positioning */
        .grid-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Hover effects */
        .grid-item:hover .destination-image {
            transform: scale(1.1);
        }
        
        
        
        /* Specific item positions and spans */
        .item1 { grid-column: 1 / 2; grid-row: 1 / 2; }
        .item2 { grid-column: 2 / 3; grid-row: 1 / 2; }
        .item3 { grid-column: 3 / 4; grid-row: 1 / 3; } /* Alaska spans 2 rows */
        .item4 { grid-column: 1 / 2; grid-row: 2 / 3; }
        .item5 { grid-column: 2 / 3; grid-row: 2 / 3; } /* Northern Europe spans 2 rows */
        .item6 { grid-column: 3 / 4; grid-row: 3 / 4; }
        .item7 { grid-column: 1 / 2; grid-row: 3 / 4; }
        .item8 { grid-column: 2 / 3; grid-row: 4 / 5; }
        .item9 { 
            grid-column: 1 / 3; /* Winter & White spans 2 columns */
            grid-row: 4 / 5; 
        }
        
        /* Image styling */
        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
    /* background-color: rgba(0, 0, 0, 0.3); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        }
        
        /* Text styling - matching the image exactly */
        .destination-text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            color: white;
            z-index: 2;
        }
        
        .destination-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            text-transform: capitalize;
             color: #fff;
             margin-bottom: 0px;
        }
        
        .cruise-count {
            font-size: 15px;
            font-weight: 500;
        }
        
       
        
        /* Responsive design */
        @media (max-width: 992px) {
            .cruise-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 150px);
            }
            
            /* Reassign grid positions for tablet */
            .item1 { grid-column: 1 / 2; grid-row: 1 / 2; }
            .item2 { grid-column: 2 / 3; grid-row: 1 / 2; }
            .item3 { grid-column: 1 / 2; grid-row: 2 / 3; }
            .item4 { grid-column: 2 / 3; grid-row: 2 / 3; }
            .item5 { grid-column: 1 / 2; grid-row: 3 / 4; }
            .item6 { grid-column: 2 / 3; grid-row: 3 / 4; }
            .item7 { grid-column: 1 / 2; grid-row: 4 / 5; }
            .item8 { grid-column: 2 / 3; grid-row: 4 / 5; }
            .item9 { grid-column: 1 / 3; grid-row: 5 / 6; }
            
            .destination-name {
                font-size: 20px;
            }
            
            .cruise-count {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .cruise-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 160px);
                gap: 10px;
            }
            
            /* All items in single column on mobile */
            .item1, .item2, .item3, .item4, .item5, 
            .item6, .item7, .item8, .item9 {
                grid-column: 1 / 2;
            }
            
            .item1 { grid-row: 1 / 2; }
            .item2 { grid-row: 2 / 3; }
            .item3 { grid-row: 3 / 4; }
            .item4 { grid-row: 4 / 5; }
            .item5 { grid-row: 5 / 6; }
            .item6 { grid-row: 6 / 7; }
            .item7 { grid-row: 7 / 8; }
            .item8 { grid-row: 8 / 9; }
            .item9 { grid-row: 9 / 10; }
            
            .destination-name {
                font-size: 18px;
            }
            
            .cruise-count {
                font-size: 15px;
            }
            .trv-cta-image img{
              width: 100%!important;
            }
            .trv-cta-accent{
              display: none;
            }
        }
        
        /* Title styling */
        .page-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 25px;
            color: #333;
            text-transform: uppercase;
        }
        
        /* Note about hover effect */
        .hover-note {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-style: italic;
            font-size: 14px;
        }



        .faq-section {
      padding: 60px 0;
      background-color: #FEEDEB;
      overflow: hidden;
    }

    .faq-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .faq-section p {
      color: #555;
    }

    .accordion-button:focus{
      box-shadow: none;
    }

    /* Image collage */
    .faq-images {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: -50px;
    }

    .faq-images img {
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      width: 200px;
      height: 250px;
      object-fit: cover;
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .faq-images img:nth-child(1) {
      z-index: 3;
      transform: rotate(-5deg);
    }
    .faq-images img:nth-child(2) {
      z-index: 2;
      transform: rotate(3deg);
      margin-left: -60px;
    }
    .faq-images img:nth-child(3) {
      z-index: 1;
      transform: rotate(-2deg);
      margin-left: -60px;
    }

    .faq-images img:hover {
      transform: scale(1.05) rotate(0deg);
      z-index: 5;
    }

    /* Accordion styling */
    .accordion-button {
      font-weight: 600;
    color: #222;
    font-size: 18px;
    }

    .accordion-button:not(.collapsed) {
      color: #d9534f; /* red color for active */
      background-color: #fff;
    }

    .accordion-body {
      color: #555;
    }

    .bg-img-rows{
      width: 800px;
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 0;
    }

    .faq-section .row{
      position: relative;
      z-index: 11;
    }

    .user-testimonial {
  background: #fff;
}

.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      border: 1px solid #dddddd;
}

.testimonial-card h5 {
  margin: 15px 0 10px;
  font-weight: 600;
  font-size: 17px;
}

.testimonial-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.stars {
  color: #e74c3c;
  font-size: 15px;
  letter-spacing: 2px;
}

.stars span {
  color: #111;
  font-weight: 500;
  margin-left: 6px;
}

.user {
  margin-top: 15px;
}

.user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 6px;
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  margin: 0 6px;
  font-size: 18px;
  transition: 0.3s;
}

.testimonial-nav button:hover {
  background: #e74c3c;
  color: #fff;
}

.user img{
  width: 40px !important;
  height: 40px !important;
  display: block;
  margin: auto;
}

.trv-cta-wrap {
  padding: 30px 0 40px;
}

.trv-cta-box {
  background: #1f2f4a;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* LEFT CONTENT */
.trv-cta-content {
  padding: 60px 60px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.trv-cta-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.trv-cta-content p {
  font-size: 15px;
  color: #d1d7e0;
  max-width: 500px;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* DOT */
.trv-cta-dot {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 14px;
  height: 14px;
  background: #7a2d2d;
  border-radius: 50%;
}

/* BUTTON */
.trv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.trv-cta-btn i {
  font-size: 14px;
}

.trv-cta-btn:hover {
  background: #e53935;
  color: #fff;
}

/* RED BLOCK */
.trv-cta-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 70px;
  background: #d32f2f;
  z-index: 0;
  opacity: 0.5;
}

/* RIGHT IMAGE */
.trv-cta-image {
  
    height: auto;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.trv-cta-image img {
  width: 80%;
  height: 100%;
  transform: scaleX(-1);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .trv-cta-content {
    padding: 40px 30px;
  }

  .trv-cta-image {
    clip-path: none;
    height: 300px;
  }
}


footer {
  background: #1f2f4a;
  padding-top: 70px;
  font-family: "IBM Plex Sans", sans-serif;
}

/* ABOUT */
.trv-footer-about p {
  font-size: 15px;
  color: #dbdbdb;
  max-width: 360px;
}

.trv-footer-about h6 {
  font-weight: 600;
  margin-top: 20px;
  color: #fff;
}

.trv-footer-about small {
  color: #dbdbdb;
}

/* NEWSLETTER */
.trv-newsletter {
  margin-top: 15px;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  position: relative;
}

.trv-newsletter i {
  margin-left: 15px;
  color: #999;
}

.trv-newsletter input {
  border: none;
  outline: none;
  padding: 10px;
  flex: 1;
  font-size: 14px;
}

.trv-newsletter button {
  background: #e74c3c;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* TITLES */
.trv-footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

/* LINKS */
.trv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trv-footer-links li {
  margin-bottom: 10px;
}

.trv-footer-links a {
  color: #dbdbdb;
  text-decoration: none;
  font-size: 15px;
}

.trv-footer-links a:hover {
  color: #e74c3c;
}

/* CONTACT */
.trv-footer-contact {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.trv-footer-contact span {
  width: 42px;
  height: 42px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2f4a;
}

.trv-footer-contact small {
  color: #dbdbdb;
}

.trv-footer-contact p {
  margin: 0;
  font-weight: 500;
  color: #fff;
}

/* BOTTOM */
.trv-footer-bottom {
  border-top: 1px solid #e2e6ec;
  padding: 20px 0;
  margin-top: 50px;
}

.trv-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #dbdbdb;
}

.trv-footer-bottom a {
  color: #e74c3c;
  text-decoration: none;
}

/* SOCIAL */
.trv-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  margin-left: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.trv-footer-social a:hover {
  background: #e74c3c;
  color: #fff;
}

@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.banner-inner .hero-overlay{
  position: inherit;
  bottom: 0;

}

.banner-listing{
  padding-top: 180px;
  padding-bottom: 100px;
  background-size: cover;
}

.inner-banner-heading{
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.breadcrumb-item{
  color: #fff;
}

.breadcrumb-item a{
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}

.breadcrumb-item.active{
  color: #ffca28!important;
}

.banner-inner .hero-overlay .search-box{
  margin-top: 15px;
}

.banner-inner .hero-overlay .search-box .search-form{
  background: #0c5ea3;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;

}

.banner-inner .hero-overlay .search-box .search-form .field label{
  color: #fff;
}

.banner-inner .hero-overlay .search-box .search-form .field input{
      background: transparent;
      color: #fff;
}

.banner-inner .hero-overlay .search-box .search-form .field input::placeholder{
  color: #c1c1c1;
}
.banner-inner .hero-overlay .search-box .search-form .search-btn{
background-color:#e74c3c!important;
}

.banner-inner-details{
  padding-top: 120px;
    background: #0f5da5;
    padding-bottom: 10px;
}

.breadcrumb-item a{ 
  text-decoration: none;
}

.tour-inner-details img{
  border-radius: 10px;
}

.tour-details-duration{
  display: flex;
  gap: 10px;
}
.duration-tour{
  border: 1px solid #bdbdbd;
  padding: 2px 5px;
  border-radius: 5px;
}

.duration-tour p{
  margin-bottom: 0px;
  display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.tour-details-type{
  border: 1px solid #ff5722;
  padding: 2px 5px;
  border-radius: 5px;
}

.tour-details-type p{
  margin-bottom: 0px;
  color: #ff5722;
   font-size: 14px;
}

.tour-dest-details{
  margin-top: 15px;
}

.tour-dest-details p span{
  padding-right: 34px;
  position: relative;
  top: -1px;
  line-height: 1;
}

.tour-dest-details p i{
  color: #0c5ea3;
  margin-right: 10px;
}


/* Sirf last ko chhod kar sab par icon */
.tour-dest-details p span:not(:last-child){
  background: url(../img/icons/city-next-icon.svg) no-repeat top 4px right 6px;
}

.tour-dest-details p{
  margin-top: 8px;
    display: flex;
    font-size: 14px;
    gap: 5px;
    flex-wrap: wrap;
}

.tour-details-name h3{
  font-size: 22px;
}


.trv-price-card{
  border:1px solid #cfd9ff;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

/* top section */
.trv-price-top{
  padding:15px;
}
.trv-price-row{
  display:flex;
  gap:12px;
  margin-bottom:15px;
}
.trv-price-row h6{
  font-size:14px;
  margin:0;
}
.trv-price-row p{
  font-size:13px;
  margin:2px 0;
  color:#555;
}
.trv-price-row h4{
  font-size:27px;
  margin:0;
  font-weight:700;
}

/* note */
.trv-note{
  background:#0b1e33;
  color:#fff;
  text-align:center;
  padding:10px;
  font-size:13px;
}

/* button */
.trv-cta{
  background:#0b1e33;
  padding:12px;
  text-align:center;
}
.trv-btn{
  background:#ffd400;
  color:#000;
  padding:10px 20px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
}

/* emi */
.trv-emi{
  background:#103a63;
  color:#fff;
  padding:10px 15px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
}
.trv-emi a{
  color:#fff;
  text-decoration:underline;
}

/* includes */
.trv-includes{
  padding:15px;
}
.trv-includes h6{
  margin-bottom:10px;
  font-weight:600;
}
.trv-includes ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.trv-includes li{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size:12px;
  width:20%;
}
.trv-includes i{
  font-size:18px;
  margin-bottom:4px;
}

.trv-price-row h4 small{
  color: #8e8e8e;
  font-weight: 500;
  font-size: 15px;
}



.trv-itinerary-wrap{
  background:#fff;
}

.trv-itinerary-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}
.trv-itinerary-head h4{
  font-size:18px;
  font-weight:600;
}
.trv-itinerary-head span{
  font-size:13px;
  font-weight:400;
}
.trv-itinerary-head a{
  font-size:14px;
  text-decoration:underline;
  color:#000;
}

/* DAY ITEM */
.trv-day-item{
  display:flex;
  position:relative;
  padding:15px 0;
  gap:15px;
}

.trv-day-left{
  position:relative;
  width:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.trv-pin{
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#bdbdbd;
  font-size:18px;
  background:#fff;
  z-index:2;
}

.trv-pin i{
  font-size:18px;
}

.trv-pin.active{
  color:#1e5bd9;
}



.trv-line{
  width:2px;
  flex:1;
  background:repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 4px,
    transparent 4px,
    transparent 8px
  );
}

/* CONTENT */
.trv-day-content{
  flex:1;
}
.trv-day-content small{
  font-size:15px;
  color:#ff5722;
  font-weight: 500;
}
.trv-day-content h5{
  font-size:17px;
  font-weight:600;
  margin:4px 0;
}

/* DETAILS */
.trv-day-details{
  display:none;
  font-size:14px;
  color:#555;
  margin-top:8px;
}
.trv-day-item.active .trv-day-details{
  display:block;
}

/* TOGGLE */
.trv-toggle-btn{
  width:32px;
  height:32px;
  border-radius:50%;
  border:none;
  background:#f2f2f2;
  font-size:20px;
  cursor:pointer;
}


.trv-details-box{
  padding: 20px 10px;
  border: 1px solid #c2c2c2;
  border-radius: 10px;
  margin-bottom: 25px;
}

.trv-tabs-wrapper{
  border:1px solid #d5d5d5;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

/* TAB HEAD */
.trv-tab-head{
  display:flex;
  background:#feedeb;
}

.trv-tab-btn{
  flex:1;
  padding:14px 10px;
  font-size:15px;
  border:none;
  background:transparent;
  cursor:pointer;
  color:#1e1e1e;
  border-radius:10px 10px 0 0;
}

.trv-tab-btn.active{
  background:#ff5722;
  color:#fff;
  font-weight:600;
}

/* TAB BODY */
.trv-tab-body{
  padding:18px;
}

/* CONTENT */
.trv-tab-content{
  display:none;
  animation:fadeSlide .35s ease;
}

.trv-tab-content.active{
  display:block;
}

/* LIST */
.trv-list{
  list-style:none;
  padding:0;
  margin:0;
}
.trv-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:10px;
  font-size:14.5px;
  line-height:1.6;
}
.trv-list li::before{
  content:"";
  width:7px;
  height:7px;
  background:#1db954;
  border-radius:50%;
  position:absolute;
  left:0;
  top:8px;
}

#excl .trv-list li::before{
  content:"";
  width:7px;
  height:7px;
  background:#db1203;
  border-radius:50%;
  position:absolute;
  left:0;
  top:8px;
}

/* animation */
@keyframes fadeSlide{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* sticky wrapper */
.trv-sticky-wrap{
  position:sticky;
  top:110px; /* header ke according adjust kar sakte ho */
}

/* card */
.trv-enquiry-card{
  border:1px solid #e0e0e0;
  border-radius:0px;
  background:#fff;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* title */
.trv-form-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
  border-bottom:1px solid #eee;
  padding-bottom:10px;
}

/* inputs */
.trv-input{
  font-size:14px;
  padding:10px 12px;
  border-radius:8px;
}

/* button */
.trv-submit-btn{
  width:100%;
  background:#ffd400;
  border:none;
  padding:12px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
}

.trv-submit-btn:hover{
  background:#f2c600;
}

.trv-action-strip{
  display:flex;
  border-top:1px solid #e5e5e5;
  background:#fff;
}

.trv-action-item{
  flex:1;
  text-align:center;
  padding:12px 5px;
  text-decoration:none;
  color:#000;
  font-size:13px;
  position:relative;
}

/* vertical divider */
.trv-action-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:20%;
  width:1px;
  height:60%;
  background:#e5e5e5;
}

/* icon */
.trv-action-item i{
  font-size:20px;
  display:block;
  margin-bottom:6px;
}

/* whatsapp color */
.trv-wa i{
  color:#25d366;
}

.trv-call i{
  color: #098338;
}

.trv-mail i{
  color: #0388a2;
}

/* hover */
.trv-action-item:hover{
  background:#f7f7f7;
}


.why-choose-us-section {
  background-color: #f8f9fb;
  overflow: hidden;
}

/* Decorative Stars */
.why-star {
  position: absolute;
  width: 70px;
  height: auto;
}

.why-star-top {
  top: 20px;
  right: 30px;
}

.why-star-bottom {
  bottom: 40px;
  left: 25px;
}

/* Title */
.why-title {
  font-size: 32px;
  font-weight: 700;
}

.why-title span {
  color: #e63946;
}

/* Cards */
.why-card {
  background: #fff;
  padding: 25px;
  height: 100%;
}

.why-icon {
  width: 55px;
  height: 55px;
  background: #1f2a44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.vm-alt-section {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

/* Card Base */
.vm-alt-card {
  position: relative;
  background: #ffffff;
  padding: 45px 40px;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Vertical Accent Line */
.vm-alt-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 5px;
  border-radius: 5px;
}



/* Tag */
.vm-alt-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 10px;
}

/* Title */
.vm-alt-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f5da5;

}

/* Base Icon */
.vm-top-icon {
  position: absolute;
  top: -30px;
  width: 75px;
  height: 75px;
  background: #0f5da5;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* Mission icon – LEFT */
.vm-icon-left {
  left: 40px;
}

/* Vision icon – RIGHT */
.vm-icon-right {
  right: 40px;
}


/* Company */
.vm-company {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

/* Text */
.vm-alt-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-alt-title {
    font-size: 22px;
  }

  .vm-alt-card {
    padding: 30px;
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .vm-top-icon {
    width: 55px;
    height: 55px;
    top: -22px;
    padding: 10px;
  }

  .vm-icon-left,
  .vm-icon-right {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}


.cert-section {
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
}

/* Headings */
.cert-subtitle {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: 1px;
  color: #0f5da5;
}

.cert-title {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0;
}

.cert-desc {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Cards */
.cert-card {
  background: #ffffff;
  padding: 38px 32px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* Badge */
.cert-badge {
  position: absolute;
  top: -16px;
  right: 25px;
  background: #0f5da5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;

}

/* Text */
.cert-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cert-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
}

/* Wide Card */
.cert-wide {
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .cert-title {
    font-size: 26px;
  }

  .cert-card {
    padding: 26px;
  }

  .cert-badge {
    right: 15px;
  }
}


.contact-alt-section {
  background: linear-gradient(120deg, #f8fafc 50%, #ffffff 50%);
}

/* Form Card */
.contact-alt-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-alt-form h3 {
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-alt-form p {
  color: #666;
}

.contact-alt-form .form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #dfe6ee;
}

.contact-alt-form textarea.form-control {
  height: auto;
}

.alt-submit-btn {
  background: #e34b3c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.alt-submit-btn:hover {
  background: #c93d30;
  color: #fff;
}

/* Info Side */


.info-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  color: #0f5da5;
  margin-bottom: 12px;
}

.contact-alt-info h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.info-text {
  color: #555;
  max-width: 480px;
}

.info-list {
  margin-top: 35px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.info-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #103a63;
  padding: 5px;
  border-radius: 50%;
  
}

.info-item span {
   font-size: 13px;
  color: #888;
  display: block;
}

.info-item p {
  font-weight: 700;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-alt-info {
    padding-left: 0;
    border-left: none;
  }

  .contact-alt-info h2 {
    font-size: 28px;
  }

  .contact-alt-form {
    padding: 28px;
  }
}


.branches-section {
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

.branches-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e34b3c;
}

.branches-title {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.branches-desc {
  max-width: 620px;
  margin: auto;
  color: #555;
}

/* Card */
.branch-card {
  background: #0f3f75;
  color: #ffffff;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.branch-card:hover {
  transform: translateY(-10px);
  background: #124a8b;
}

/* Header */
.branch-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.branch-dot {
  width: 10px;
  height: 10px;
  background: #ffcc00;
  border-radius: 50%;
}

.branch-head h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.branch-head small {
  font-weight: 500;
  opacity: 0.8;
}

/* Info */
.branch-info {
  font-weight: 600;
  margin-bottom: 6px;
}

.branch-address {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .branches-title {
    font-size: 26px;
  }

  .branch-card {
    padding: 24px;
  }
}

.branches-map-section {
  background: #f6f8fc;
}



/* Map Box */
.branches-map-wrapper {
  margin-top: 30px;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.branches-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .map-title {
    font-size: 26px;
  }

  .branches-map-wrapper {
    height: 320px;
  }
}



/* Unique namespace */
.quote-modal-ui .quote-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px 26px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  border: none;
}

/* Header gradient */
.quote-modal-ui .quote-header {
  background: #c1e2ff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  position: relative;
}

.quote-modal-ui .quote-header h5 {
  font-weight: 600;
}

.quote-modal-ui .quote-header p {
  font-size: 13px;
  color: #000;
}

.quote-modal-ui .quote-icon {
  width: 50px;
  height: 40px;
  background: #0e60aa;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
}

/* Form */
.quote-modal-ui label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.quote-modal-ui .form-control {
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
}

/* Submit button */
.quote-modal-ui .submit-btn {
  background: #0e60aa;
  font-size: 18px;
  color: white;
  border-radius: 25px;
  padding: 10px 35px;
  border: none;
  font-weight: 600;
  
}

.quote-modal-ui .submit-btn:hover {
  opacity: 0.9;
}

/* Links */
.quote-modal-ui a {
  color: #4facfe;
  text-decoration: none;
}

.quote-modal-ui a:hover {
  text-decoration: underline;
}


.quote-modal-ui textarea.form-control {
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  height: 100px;
 
}

.modal.show{
      display: block;
    padding-right: 15px;
    z-index: 11111;
}

.bx-blog-section{
    padding:70px 0;
    background:#f8f9fa;
}

.bx-blog-title{
    text-align:center;
    margin-bottom:50px;
}

.bx-blog-title h2{
    font-weight:700;
}

.bx-blog-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:all 0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.bx-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.bx-blog-img{
    height:220px;
    object-fit:cover;
}

.bx-blog-body{
    padding:20px;
}

.bx-blog-date{
    font-size:14px;
    color:#6c757d;
}

.bx-blog-btn{
    border-radius:30px;
    padding:6px 18px;
}


@media (max-width: 991px) {
 .trv-header{ padding: 0px;
  background: #fff;
  position: inherit!important;
 }

 .faq-img img{
  width: 100%;
 }

 .banner-inner-details{
  padding: 15px;
  
 }
 
 .breadcrumb-item {
    color: #fff;
    font-size: 14px;
}

.banner-listing {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: cover;
}

.vm-alt-title{
  margin-top: 10px;
}

  }