body {
  font-family: 'Poppins', sans-serif;
  background:#F4F7FB;
  color:#1F2937;
  padding-top: 125px;
}

  /******************************* TOPBAR & NAVBAR START *******************/
  .topbar {
    background: #1E3A5F;
    color:#fff;
    padding:8px 0;
    font-size:14px;
    
    position: fixed;   /* ADD */
  top: 0;            /* ADD */
  width: 100%;       /* ADD */
  z-index: 1030; 
  }
  .topbar a {
    color:#fff;
    text-decoration:none;
    margin-left:15px;
    transition:0.3s;
  }
  .topbar a:hover {
    color:#FF7A00;
  }

  /* NAVBAR */
  .navbar {
    background:#ffffff;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    position: fixed;   /* ADD */
  top: 40px;         /* ADD (topbar height approx) */
  width: 100%;       /* ADD */
  z-index: 1020;
  }
  .navbar .nav-item {
      margin: 0 8px;
  }
  .navbar .nav-link {
    font-weight:600;
    color:#1F2937;
    transition:0.3s;
  }
  .navbar .nav-link:hover {
    color: #1E3A5F;
    font-weight: 600;
  }
  a.navbar-brand {
    color: #1E3A5F;
  }
  /* DROPDOWN */
  .navbar .dropdown-menu {
    border:none;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    padding:10px 0;
  }
  .navbar .dropdown-item {
    padding:8px 18px;
    font-weight:500;
    border-radius:6px;
    transition:0.3s;
  }
  .navbar .dropdown-item:hover {
    background: #1E3A5F;
    color: #fff;
    padding-left:25px;
  }

  /******************************* TOPBAR END *******************/


  /******************************* HOMEPAGE START *******************/

  /* SECTION CARD */
  .section-card {
    background: #fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    margin-bottom:30px;
    transition:0.3s ease;
  }

  .section-card:hover {
    transform:translateY(-5px);
  }

  /* THEME CARDS */
  .theme-card img {
    height:180px;
    border-radius:15px;
    object-fit:cover;
  }

  .theme-title {
    font-weight:600;
    margin-top:10px;
  }

  /* TITLE UNDERLINE */
  .title-underline {
    width:60px;
    height:3px;
    background:#FF7A00;
    margin:10px auto 0;
  }

  /* TOUR CARD */
  .tour-card {
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
  }

  .tour-card img {
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s ease;
  }

  .tour-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
  }

  .tour-content {
    /*position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
    color:#fff;
    padding:0 10px;*/
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 12px;
    left: 0;
    right: 0;
    text-align:center;
    color:#fff;
    font-size:16px;
  }

  .tour-content span {
    color:#FF7A00;
    font-size:14px;
  }

  .tour-card:hover img {
    transform:scale(1.08);
  }

  /* DESTINATION CARD */
  .destination-card .theme-card {
    height:400px;
    transition:0.3s ease;
  }

  .destination-card .theme-card:hover {
    transform:translateY(-10px);
  }

  .destination-card .overlay {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:12px 0;
    background:rgba(0,0,0,0.55);
  }

  /* SWIPER ARROWS */
  .swiper-button-next,
  .swiper-button-prev {
    color:#1E3A5F;
  }
  /******************************* HOMEPAGE END *******************/

  /******************************* POPULAR PACKAGES START *******************/

  /* Breadcrumb */
  .breadcrumb-area{
    font-size:14px;
    margin-bottom:10px;
  }
  .breadcrumb-area a{
    color: #f26522;
    text-decoration:none;
  }

  /* Page Title */
  .page-title {
    color: #f26522;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 8px;
  }

  .package-top-section {
    background: #f3f3f3;
    padding: 0px 0px 10px 0px;
    border-bottom: 4px solid #e6d3b3;
  }

  /* ===== FEATURE STRIP ===== */
  .feature-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    gap: 20px;
  }

  /* ===== FEATURE BOX ===== */
  .feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* ===== ICON CIRCLE ===== */
  .icon-circle {
    width: 40px;
    height: 40px;
    background: #e9e9e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
  }

  /* ===== TEXT ===== */
  .feature-small {
    font-size: 13px;
    color: #777;
    line-height: 1.2;
  }

  .feature-bold {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .feature-strip {
      flex-wrap: wrap;
      gap: 15px;
    }
  }

  /* Package Card */
  .package-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    margin-bottom:25px;
    transition:0.3s ease;
  }
  .package-card:hover{
    transform:translateY(-5px);
  }

  .package-card img{
    width:100%;
    height:220px;
    object-fit:cover;
  }

  .package-body{
    padding:15px;
  }

  .package-title{
    font-weight:600;
    font-size:16px;
  }

  .package-duration{
    color:#1cae4c;
    font-weight:600;
    margin-bottom:8px;
  }

  .package-icons i{
    margin-right:8px;
    color:#666;
  }

  .package-actions .btn{
    border-radius:20px;
    font-size:14px;
    padding:6px 15px;
  }
  /******************************* POPULAR PACKAGES END *******************/


  /********************** TOUR PACKAGE START***************************/
  /* ===== DESTINATION LINE ===== */
  .destination-line {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
  }

  .destination-line i {
    color: #f26522;
    margin-right: 6px;
  }


  /* MAIN BOX BACKGROUND */
  .package-main-box {
    background: #e9e9e9;
    padding: 25px;
    margin-top: 15px;
  }

  /* IMAGE */
  .package-image img {
    border-radius: 4px;
    width: 100%;
  }

  /* DETAIL CARD */
  .package-detail-card {
    background: #f8f8f8;
    padding: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
  }

  .package-detail-card th {
    background: #efefef;
    font-weight: 600;
  }

  .highlight-text {
    color: #f26522!important;
    font-style: italic;
    font-weight: 600;
  }

  /* INCLUSION ICONS */
  .inclusion-icons i {
    margin-right: 10px;
    font-size: 16px;
    color: #333;
  }

  /* BUTTONS */
  .cta-buttons {
    display: flex;
    gap: 15px;
  }

  .btn-deal {
    flex: 1;
    background: #0f2f57;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
  }

  .btn-deal:hover {
    background: #fff;
  }

  .btn-call {
    flex: 1;
    background: #f57c00;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
  }

  .btn-call:hover {
    background: #e56d00;
  }

  /* CUSTOM STRIP */
  .custom-strip {
    background: #f5f5f5;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }

  .custom-strip h6 {
    font-weight: 600;
    margin-bottom: 5px;
  }

  .custom-strip p {
    margin: 0;
    font-size: 14px;
  }

  .package-detail-page h6 {
      color: #f26522;
      font-style: italic;
      font-weight: 600;
      font-size: 16px
  }
  .package-detail-page p, .package-detail-page ul li  {
    font-size: 16px;
  }

  /* RESPONSIVE */
  @media(max-width:768px){
    .cta-buttons {
      flex-direction: column;
    }
  .topbar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .navbar {
        top: 40px; /* topbar height adjust */
    }
    
    body {
        padding-top: 115px; /* adjust for mobile */
    }


  }
  /********************** TOUR PACKAGE START***************************/

  /************************ Quote Sidebar START *******************/
  .quote-box{
    background:#1E3A5F;
    padding:20px;
    border-radius:12px;
    color:#fff;
    position:sticky;
    top:20px;
  }

  .quote-box h5{
    font-weight:600;
    margin-bottom:10px;
  }

  .quote-box p{
    font-size:13px;
  }

  .quote-box .form-control,
  .quote-box select,
  .quote-box textarea{
    border-radius:6px;
    margin-bottom:12px;
    font-size:14px;
  }

  .quote-box button{
    background:#0d6efd;
    border:none;
    border-radius:6px;
    padding:8px;
    width:100%;
    color:#fff;
    font-weight:500;
  }

  .quote-box button:hover{
    background:#0b5ed7;
  }
  /************************ Quote Sidebar END *******************/

  /********************************* FOOTER START *************************/
  .footer {
    background:#1E3A5F;
    color:#fff;
    padding:60px 0 20px;
  }

  .footer-title {
    font-weight:600;
    margin-bottom:20px;
    position:relative;
  }

  .footer-title::after {
    content:"";
    width:40px;
    height:3px;
    background:#FF7A00;
    position:absolute;
    left:0;
    bottom:-8px;
  }

  .footer-links {
    list-style:none;
    padding:0;
  }

  .footer-links li {
    margin-bottom:8px;
  }

  .footer-links a {
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
  }

  .footer-links a:hover {
    color:#FF7A00;
    padding-left:5px;
  }

  /* SOCIAL ICONS */
  .social-icons a {
    display:inline-block;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    background:#2F5D8A;
    border-radius:50%;
    margin-right:8px;
    color:#fff;
    transition:0.3s;
  }

  .social-icons a:hover {
    background:#FF7A00;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    border-top:1px solid rgba(255,255,255,0.2);
    font-size:14px;
  }

  .footer-bottom a {
    color:#ddd;
    text-decoration:none;
    margin-left:10px;
  }

  .footer-bottom a:hover {
    color:#FF7A00;
  }
  /*************************************************************** FOOTER END *************************/

  .side-list .fa { 
    font-size : 34px;
  }
  .side-list p {
    font-size: 16px;
  }
  .side-list p span {
    font-size: 20px;
  }
  
  
  


@media (max-width: 991px) {

  .navbar-collapse {
    position: fixed;
    top: 120px; /* navbar height */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    overflow-y: auto;   /* 🔥 full scroll */
    z-index: 999;
  }

  .navbar .dropdown-menu {
    position: static !important;
    width: 100%;
    box-shadow: none;
  }

}