body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  background: #ffffff;
  overflow-x: hidden;
  font-size: 14px; }
  body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  body.offcanvas-menu:before {
    opacity: 1;
    visibility: visible; }

/* Conmmon Classes */
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway';
    font-weight: 600;

}
p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
a{
    font-family: "Raleway";
    font-weight: 600;
}

.img-responsive{
    max-width: 100%;
    display: block;
    height: auto;
}
i.fa.fa-arrow-up{
    position: fixed;
    bottom: 20px;
    right: 25px;
    background-color: #4b8a24;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1;
}
div#toggle-btn{
    display: none;
}
/* header */

nav{
    position: fixed;
    width: 100%;
    z-index: 99;
    /* background-color: red; */
}
.menu-par{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Dropdown container */
.nav ul li.dropdown {
    position: relative;
}

/* Hide dropdown by default */
.nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000; /* Match your theme */
    min-width: 200px;
    padding: 0;
    list-style: none;
    z-index: 1000;
}

/* Dropdown menu links */
.nav ul li .dropdown-menu li {
    display: block;
}

.nav ul li .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

.nav ul li .dropdown-menu li a:hover {
    background-color: #4b8a24; /* Hover color */
    color: #fff;
}

/* Show dropdown on hover for desktop */
.nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}
.logo-par h2{
    color:#fff;
    font-size: 40px;
}

.nav ul li{
    display: inline-block;
}
.nav ul li a:before{
    content: "s";
    position: absolute;
    top: 0;
    left: 10px;
    background-color: #fff;
    width: 0%;
    height: 2px;
    font-size: 0px;
    transition: all 0.5s ease;
}
.nav ul li a:hover:before{
    width: 74%;
}
.nav ul li a{
    color:#fff;
    padding: 10px;
    position: relative;

}
/* navigation-fixed */
.nav-fixed{
    background-color: #fff;
    box-shadow: 2px 2px 10px #bbb;
}
.nav-fixed .menu-par{
    padding: 0px 0px;
}

.nav-fixed h2{
    color: #4b8a24;
}
.nav-fixed ul li a{
    color: #4b8a24;
}
.nav-fixed #toggle-btn {
    color: #4b8a24;
}

header{
    width: 100%;
    height: 100vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 200px;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: overlay;
}

/* video css */
.video{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;

}
video#video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-par{
    padding: 0px 0px;
}
.header-info-par a{
    background-color: #fff;
    color: #4b8a24;
    padding: 17px 45px;
    display: inline-block;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.header-info-par a:after{
    content: "Read More";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #4b8a24;
    color: #fff;
    width: 0%;
    height: 100%;
    line-height: 50px;
    transition: all 0.5s ease;
}
.header-info-par a:hover:after{
    width: 100%;
}
.header-info-par h1{
    font-size: 45px;
    text-transform: uppercase;
    padding: 20px 0px;
    letter-spacing: 4px;
}
.header-info-par p{
    line-height: 30px;
    font-size: 15px;
    width: 80%;
    margin: auto;
}

/* Welcome-text section */
section#welcome-text h2{
    color: #343a40;
    font-size: 45px;
    padding-bottom: 12px;
}
section#welcome-text{
    text-align: center;
}
section#welcome-text p{
    color: #777;
    text-align: center;
    font-size: 16px;
}
.logo-par img {
    height:auto;
    width: 100px;
}
div#toggle-btn {
    display: none;
}
/* media queries */
@media screen and (max-width: 768px) {
    div#toggle-btn{
        color: #fff;
        display: block;
        z-index: 1;

    }
    .nav{
        background-color: #000;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        transition: all 0.5s ease;
    }
    .nav-active{
        left: 0;
    }
    .nav ul li .dropdown-menu {
        position: static;
        min-width: 100%;
    }
    #toggle-btn i.nav-active:before{
        content: "\f00d";
    }

    .nav ul li{
    display: block;
    margin-top: 30px;
    text-align: center;
    }

    .nav ul{
        margin-top: 100px;
    }
    .header-info-par h1{
        font-size: 20px;
    }
    header{
        padding: 0 40px;
    }
    .header-info-par p{
        font-size: 14px;
        line-height: 26px;
    }
    section#welcome-text h2{
        font-size: 26px;
    }
    section#welcome-text p{
        font-size: 14px;
        line-height: 25px;
    }
    section#welcome-text{
        padding: 40px 0px;
    }
  }
.bg-primary {
  background-color: #1964a2 !important; 
}

.text-black {
  color: #000000 !important; 
}

a {
  color: #1964a2;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    color: #1964a2;
    text-decoration: none; }

::-moz-selection {
  background: #000000;
  color: #ffffff; }

::selection {
  background: #000000;
  color: #ffffff; }

.text-primary {
  color: #1964a2 !important; }

a.text-primary {
  color: #1964a2 !important; }
  a.text-primary:hover {
    color: #1964a2 !important; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Source Serif Pro", serif; }

.btn {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px; 
}
  .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn.btn-primary {
    background: #1964a2;
    border-color: #1964a2; }
    .btn.btn-primary:hover {
      background-color: #4b8a24;
      color: #fff;
      transition: all 0.5s ease; }
  .btn.btn-outline-white {
    border: 2px solid #ffffff; }
    .btn.btn-outline-white:hover {
      background: #ffffff;
      color: #1964a2 !important; }

.text-white-opacity {
  opacity: .7; }

.form-control, .custom-select {
  border: 2px solid #e9ecef;
  font-size: 16px;
  height: 45px; }
  .form-control:active, .form-control:focus, .custom-select:active, .custom-select:focus {
    border-color: #1964a2;
    -webkit-box-shadow: none;
    box-shadow: none; }

.gutter-v1 {
  margin-right: -20px;
  margin-left: -20px; }
  @media (max-width: 991.98px) {
    .gutter-v1 {
      margin-left: -15px;
      margin-right: -15px; } }
  .gutter-v1 > .col,
  .gutter-v1 > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px; }
    @media (max-width: 991.98px) {
      .gutter-v1 > .col,
      .gutter-v1 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px; } }

.gutter-v2 {
  margin-right: -5px;
  margin-left: -5px; }
  @media (max-width: 991.98px) {
    .gutter-v2 {
      margin-left: -15px;
      margin-right: -15px; } }
  .gutter-v2 > .col,
  .gutter-v2 > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px; }
    @media (max-width: 991.98px) {
      .gutter-v2 > .col,
      .gutter-v2 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px; } }

.spinner-border {
  color: #1964a2; }

/*PRELOADING------------ */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.position-relative {
  position: relative; }

.logo {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700; }
  .logo:hover {
    color: #ffffff; }


/* Burger */
.burger {
  width: 28px;
  height: 32px;
  cursor: pointer;
  position: relative; }
  .burger.light:before, .burger.light span, .burger.light:after {
    background: #ffffff; }

.burger:before, .burger span, .burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  border-radius: 2px;
  position: absolute;
  opacity: 1; }

.burger:before, .burger:after {
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: ""; }

.burger:before {
  top: 4px; }

.burger span {
  top: 15px; }

.burger:after {
  top: 26px; }

/* Hover */
.burger:hover:before {
  top: 7px; }

.burger:hover:after {
  top: 23px; }

/* Click */
.burger.active span {
  opacity: 0; }

.burger.active:before, .burger.active:after {
  top: 40%; }

.burger.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/ }

.burger.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/ }

.burger:focus {
  outline: none; }


.hero {
  padding: 7rem 0 10rem 0;
  background: #6998AB;
}
  .hero.hero-inner {
    padding: 9rem 0 7rem 0;
    margin-bottom: auto;
    background: #1964a2; }
  .hero h1 {
    color: #ffffff;
    font-size: 60px; }
    @media (max-width: 991.98px) {
      .hero h1 {
        font-size: 45px; } 
      .count-main{
        display: none;
      }
      }
    .hero h1 .typed-words {
      position: relative; }
      .hero h1 .typed-words:before {
        position: absolute;
        height: 7px;
        background-color: #65050d;
        bottom: 0;
        left: 0;
        right: 0;
        content: ""; }
  .hero .intro-wrap {
    position: relative;
    z-index: 1; }
  .hero .slides {
    background: #ffffff;
    max-width: 800px;
    z-index: 0;
    position: relative;
    border-radius: 200px;
    -webkit-box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
    box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
    height: 608px;
    margin-bottom: -200px; }
    @media (max-width: 991.98px) {
      .hero .slides {
        left: 0; 
        height: 450px;
        margin-bottom: -180px;
      } 
      .hero .slides img {
        height: 450px !important;
      }
      }
    .hero .slides img {
      position: absolute;
      border-radius: 200px;
      height: 620px;
      width: auto;
      opacity: 0;
      -webkit-transition: 4s opacity ease;
      -o-transition: 4s opacity ease;
      transition: 4s opacity ease;
      background: #ffffff; }
      .hero .slides img.active {
        opacity: 1;
        z-index: 1; }

/* Welcome-text section */

section#welcome-text{
    text-align: center;
}


/**********************Popular Tourist Destinations***********************/

.media-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px; }
  .media-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(26, 55, 77, 0.8);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .media-thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease; }
  .media-thumb .media-text {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    margin-top: 20px; }
    .media-thumb .media-text h3 {
      font-size: 1rem;
      font-weight: 900;
      color: #1964a2;
      margin: 0;
      padding: 0; }
    .media-thumb .media-text .location {
      font-size: .8rem;
      color: rgba(26, 55, 77, 0.5); }
    .media-thumb .media-text h3, .media-thumb .media-text .location {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
  .media-thumb:hover {
    z-index: 3; }
    .media-thumb:hover h3 {
      color: #ffffff; }
    .media-thumb:hover .location {
      color: rgba(255, 255, 255, 0.5); }
    .media-thumb:hover img {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    .media-thumb:hover:after {
      opacity: 1;
      visibility: visible; }
    .media-thumb:hover .media-text {
      -webkit-transition-delay: .2s;
      -o-transition-delay: .2s;
      transition-delay: .2s;
      opacity: 1;
      visibility: visible; }

.section-title {
  position: relative;
  padding-bottom: 20px;
  display: inline-block; }
  .section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1964a2; }
  .section-title.text-center:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.media-1 {
  text-align: left; }
  .media-1 img {
    border-radius: 20px; }
  .media-1 .loc .icon-room {
    position: relative; }
    .media-1 .loc .icon-room:after {
      content: "";
      width: 24px;
      height: 24px;
      background: rgba(26, 55, 77, 0.1);
      position: absolute;
      left: 50%;
      top: 50%;
      border-radius: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .media-1 .deal {
    font-size: 16px;
    margin-bottom: 20px;
    display: block; }
  .media-1 h3 {
    font-size: 20px; }
    .media-1 h3 a {
      color: #000000; }
  .media-1 .price {
    font-size: 15px;
    color: #1964a2;
    font-weight: 700;
    position: relative;
    top: -2px; }
    .media-1 .price sup {
      font-weight: 400;
      font-size: 16px;
      top: -7px; }

/**********************************FOOTER**************************************/
.site-footer {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}
.site-footer .inner {
    padding-top: 0px;
    padding-bottom: 70px;
    background: #f8f9fa;
}
.site-footer .inner.first {
    padding-top: 80px;
}
.site-footer .heading{
  font-weight: normal;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.site-footer .widget .social li {
    display: inline-block;
}
.site-footer .widget .social li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1964a2;
    display: inline-block;
    position: relative;
    color: #ffffff;
    -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.2);
}
.site-footer .widget .social li a span {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.icon-twitter:before {
    content: "\f099";
}
/*******************************END FOOTER**************************************/

/* ==========================================================================
   CUSTOM AND LAYOUT OVERRIDES (Merged from custom.css)
   ========================================================================== */

/***********WELCOME SECTION*************/

.video-welcome {
  position: relative;
  height: 100%;
  /* min-height: 500px; */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 10px 15px 20px rgb(0 0 0 / 67%), -8px -8px 16px rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .video-welcome {
    min-height: 220px !important;
    margin: 20px auto 35px auto !important;
    width: 92% !important;
    max-width: 500px !important;
  }
}

.video-welcome .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video-welcome .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-welcome .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%;
  transition: all 200ms;
}

.video-welcome .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

/***********END WELCOME SECTION*************/
/******************************START DISTRICTS OF GILGIT BALTISTAN*********************************/
.hero {
  padding: 7rem 0 10rem 0;
  background: #6998AB;
}

.hero.hero-inner {
  padding: 9rem 0 7rem 0;
  margin-bottom: auto;
  background: #1964a2;
}

.hero h1 {
  color: #ffffff;
  font-size: 60px;
}

.hero h1 .typed-words {
  position: relative;
}

.hero h1 .typed-words:before {
  position: absolute;
  height: 7px;
  background-color: #65050d;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}

.hero .intro-wrap {
  position: relative;
  z-index: 1;
}

/* Slides Section */
.slides {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.slide_1 {
  /* background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/recipe_slides/astore.jpg);  */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 60px;
  min-width: 60px;
  height: 300px;
  border-radius: 40px;
  margin: 0 15px;
  position: relative;
  transition: all 0.5s ease;
}

.slide_1:hover {
  min-width: 250px;
}

.slide_1:hover .slide-info {
  transform: rotate(0deg);
  font-size: 22px;
  left: 20px;
  bottom: 20px;
}

.slide-info {
  position: absolute;
  bottom: 50px;
  right: 0;
  color: #fff;
  transform: rotate(-90deg);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.5s ease;
}

.slide_2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/astore.jpg);
}

.slide_3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/diamer.jpg);
}

.slide_4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/ghanche.jpg);
}

.slide_5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/ghizer.jpg);
}

.slide_6 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/gilgit.jpg);
}

.slide_7 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hunza.jpg);
}

.slide_8 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/kharmang.jpg);
}

.slide_9 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/nagar.jpg);
}

.slide_10 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/shigar.jpg);
}

.slide_11 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/skardu.jpg);
}

@media (max-width: 991.98px) {
  .slides {
    flex-direction: column;
  }

  .slide_1 {
    width: 90%;
    min-width: 90%;
    height: 240px;
    margin: 20px 15px;
  }
}

/*End Slides Section*/
/******************************END DISTRICTS OF GILGIT BALTISTAN**********************************/
/*****************************START POPULAR DESTINATIONS SETTINGS***********************************/
/* Core layout */
.slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  /* Full screen height */
  overflow: hidden;
  display: flex;
}

/* Left text slider */
.left-slide {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(0%);
  transition: transform 0.5s ease-in-out;
}

.left-slide>div {
  flex: 0 0 100%;
  height: 100%;

  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  border: 5px solid white;
  border-right: none;
  color: #999;
}

.left-slide>div ul {
  font-size: 14px;
}

/*End left text title*/
/*End left text slider*/
/*Right image slider*/
/* Right image slider */
.right-slide {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(0%);
  transition: transform 0.5s ease-in-out;
}

.right-slide>div {
  flex: 0 0 100%;
  height: 100%;
}

.right-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid white;
  border-left: none;
}

/*End right image slider*/
/*Middle Button Menouver*/

.slider-container .action-buttons button {
  background-color: #fff;
  border: none;
  color: #5997a9;
  cursor: pointer;
  font-size: 16px;
  padding: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons button:hover {
  color: #fff;
  background: black;
}

.slider-container .action-buttons button:focus {
  outline: none;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*End Middle Button Menouver*/
/*Media Queries*/
@media (max-width: 991.98px) {
  .left-slide p {
    display: none;
  }

  .left-slide a {
    font-size: 10px;
  }

  .right-slide img {

    object-fit: cover;
  }

  ul {
    display: none;
  }

  .slider-container .action-buttons button {
    font-size: 10px;
    padding: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
  }
}

/*End Media Queries*/
/*****************************END POPULAR DESTINATIONS SETTINGS***********************************/
/**********************************FESTIVALS & EVENTS*****************************************/
.destination {
  position: relative;
  background: #ffffff !important;
  border: 2px solid rgba(25, 100, 162, 0.15) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.destination:hover {
  border-color: #4b8a24 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-5px) !important;
}

.destination .thumb {
  position: relative;
  /* border-radius: 10px; */
  overflow: hidden;
  z-index: 1;
}

.destination .thumb:before {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  opacity: .5;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 212, 255, 0)));
  background: -webkit-linear-gradient(bottom, black 0%, rgba(0, 212, 255, 0) 100%);
  background: -o-linear-gradient(bottom, black 0%, rgba(0, 212, 255, 0) 100%);
  background: linear-gradient(0deg, black 0%, rgba(0, 212, 255, 0) 100%);
}

.destination .thumb img {
  height: 300px;
  width: 350px;
}

.destination .price {
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 0px 10px;
  font-size: 15px;
  background: #1964a2;
  color: #fff;
  margin-bottom: 5px;

}

.destination .slide-text {
  text-align: center;
  width: 100% !important;
  margin: 0 !important;
  margin-top: 15px !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  height: auto !important;
  min-height: auto !important;
  border: none !important;
}

.destination .meta {
  color: #999;
}

.destination-slider-wrap {
  position: relative;
}

.destination-slider-wrap .tns-nav {
  display: none;
}

/* .destination-slider-wrap .tns-nav {
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); 
}
.destination-slider-wrap .tns-nav button {
    background: none;
    border: none;
    display: inline-block;
    position: relative;
    width: 0px !important;
    height: 7px !important;
    margin: 2px; 
}
.destination-slider-wrap .tns-nav button:active, .destination-slider-wrap .tns-nav button:focus, .destination-slider-wrap .tns-nav button:hover {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none; 
}
.destination-slider-wrap .tns-nav button:before {
    display: block;
    width: 9px;
    height: 9px;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    border-radius: 50%;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    background-color: transparent;
    border: 2px solid #1964a2 ; 
}
.destination-slider-wrap .tns-nav button:hover:before, .destination-slider-wrap .tns-nav button.tns-nav-active:before {
    background-color: #1964a2 ; 
} */

#destination-controls:active,
#destination-controls:focus,
#prevnext-testimonial:active,
#prevnext-testimonial:focus {
  outline: none;
}

#destination-controls .next,
#destination-controls .prev,
#prevnext-testimonial .next,
#prevnext-testimonial .prev {
  cursor: pointer;
  display: inline-block;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  width: 80px;
  height: 80px;
  background-color: #efefef;
  border-radius: 50%;
}

#destination-controls .next>span,
#destination-controls .prev>span,
#prevnext-testimonial .next>span,
#prevnext-testimonial .prev>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#destination-controls .next:hover,
#destination-controls .prev:hover,
#prevnext-testimonial .next:hover,
#prevnext-testimonial .prev:hover {
  opacity: 1;
}

#destination-controls .next:hover,
#destination-controls .prev:hover,
#prevnext-testimonial .next:hover,
#prevnext-testimonial .prev:hover {
  background-color: #1964a2;
  color: #fff;
}

#destination-controls .prev,
#prevnext-testimonial .prev {
  right: 0;
}

#destination-controls .prev:hover,
#prevnext-testimonial .prev:hover {
  color: #fff;
  right: 7px;
}

#destination-controls .next,
#prevnext-testimonial .next {
  left: 0;
}

#destination-controls .next:hover,
#prevnext-testimonial .next:hover {
  color: #fff;
  left: 7px;
}

/********************************END FESTIVALS & EVENTS**************************************/
/****************************************KEY TOURISM AREAS***********************************/
.projects {
  padding: 0px 0;
  overflow: hidden;
}

.tab__bar {
  position: relative;
  margin: 20px 10px 15px 10px;
}

.tab__navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: 0 auto;
}

.tab__menu {
  color: var(--text-color);
  list-style: none;
  max-width: 550px;
  white-space: nowrap;
  scroll-behavior: smooth;
  user-select: none;
  overflow-x: auto;
  display: flex !important;
}

.tab__menu.dragging {
  scroll-behavior: unset;
  cursor: grab;
}

.tab__menu.dragging .tab-btn {
  pointer-events: none;
}

.tab__menu::-webkit-scrollbar {
  display: none;
}

.tab__btn {
  display: inline-block;
  color: #999;
  font-size: 1em;
  font-weight: 400;
  margin: 0 2px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  transition: background-color .3s ease;
}

.tab__btn:hover {
  background-color: #1964a2;
  color: #fff;
}

.tab__btn.active {
  background-color: #1964a2;
  color: #fff;
  font-weight: 600;
}

.left__btn,
.right__btn {
  position: absolute;
  color: var(--text-color);
  font-size: 1.8em;
  cursor: pointer;
}

.left__btn svg,
.right__btn svg {
  width: 30px;
  height: 30px;
}

.left__btn svg path,
.right__btn svg path {
  fill: #1964a2;
}

.left__btn {
  display: none;
  left: -50px;
  top: -5px;
  padding: 10px 30px 10px 0;
}

.right__btn {
  right: -50px;
  top: -5px;
  padding: 10px 0 10px 30px;
}

@media (max-width: 768px) {

  .left__btn,
  .right__btn {
    display: none !important;
  }
}

.tab__content {
  position: relative;
}

.tab-domains {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  display: none;
  animation: fadein .8s;
}

.tab-domains.active {
  display: block;
}

.portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio-content img {
  height: 302px;
  width: 100%;
  transition: 0.3s;
}

.portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: #1964a2;
}

.portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.portfolio-content .portfolio-info .preview-link,
.portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: #fff;
}

.portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*************************************END KEY TOURISM AREAS***********************************/
/*************************************PLAN YOUR TRIP******************************************/
.heading-section .subheading {
  font-size: 25px;
  display: block;
  margin-bottom: 20px;
  color: #f15d30;
  font-family: "Arizonia", cursive;
}

.services {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services.services-1 {
  width: 100%;
  background-color: #1964a266;
  padding: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  margin-bottom: 30px;
  z-index: 0;
  height: 300px;
  background-blend-mode: overlay;
  transition: all 0.3s ease;
}

.services.services-1:hover {
  transform: scale(1.1);
  /* Zoom in by 10% */
}

.services .icon {
  line-height: 1.3;
  position: relative;
}

.services.services-1 .icon {
  width: 90px;
  height: 50px;
  margin-left: -35px;
  margin-bottom: 10px;
  background: #1964a2c7;
  position: relative;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.services.services-1 .icon span {
  color: #fff;
  font-size: 30px;
}

.services .icon span {
  font-size: 60px;
  color: #1964a2;
}

.flaticon-tour-guide:before {
  content: "\f104";
}

.flaticon-route:before {
  content: "\f105";
}

.flaticon-map:before {
  content: "\f106";
}

.flaticon-paragliding:before {
  content: "\f103";
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services.services-1 .icon:after {
  position: absolute;
  top: -5px;
  left: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5px 5px;
  border-color: transparent transparent #1964a2 transparent;
}

.services.services-1 .media-body {
  color: rgba(255, 255, 255, 0.8);
}

.services.services-1 .media-body h3 {
  text-align: center;
  color: #fff;
}

/************************************END PLAN YOUR TRIP***************************************/
/*************************************TESTIMONIALS SECTIONS***************************************/
/* Limit the Swiper width and center it */
.swiper.testimonial-swiper {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  box-shadow: 10px 15px 20px #00000070;
}

/* Center content inside each slide */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Optional: On smaller screens, center text */
.text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-column {
  grid-column: span 5;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1964a2;
  border: none;
  color: white;
  font-size: 40px;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
}

.text-column {
  grid-column: span 7;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-column .profile {
  display: flex;
  padding-left: 15px;
}

.text-column .profile img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.text-column .profile .information {
  color: #1964a2;
  padding-left: 20px;
  margin-bottom: 15px;
}

.text-column .profile .information .stars {
  color: #1964a2;
}

.text-column .profile .information span {
  color: #1964a2;
  font-weight: bold;
  line-height: 1.6em;
  font-size: 14px;
}

.testimonial-name {
  font-weight: bold;
  color: #555;
}

/* Popup Styles */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.popup-content iframe {
  width: 100%;
  height: 450px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* Swiper Navigation Colors */
/* Swiper pagination dots */
/* Bottom right navigation buttons */
.swiper-controls {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.swiper-btn {
  border: 2px solid #ccc;
  background: transparent;
  color: #333;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-btn:hover {
  background: #1964a2;
  color: #fff;
  border-color: #1964a2;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .video-column,
  .text-column {
    grid-column: span 12;
  }

  .swiper-controls {
    margin-top: 10px;
  }
}

/***********************************END TESTIMONIALS SECTIONS*************************************/
/***********************************MEDIA & GALLERY**********************************************/
.main {
  grid-column: main;
  padding: 1.25rem;
}

/* Photo Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  grid-auto-rows: 12.5rem;
  grid-auto-flow: dense;
  gap: 0.75rem;
}

.gallery figure {
  /* container-type: inline-size; */
  container: figure / inline-size;
  overflow: hidden;

  display: grid;
  /* grid-template-columns: 1fr; */
  /* grid-template-rows: 1fr; */

  /*
    Because 1fr = minmax(auto, 1fr),
    to prevent the grid blowout,
    set the minimum to zero.
  */
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.gallery img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;

  /* grid-row: 1 / -1; */
  /* grid-column: 1 / -1; */
  grid-area: 1 / 1 / -1 / -1;

  transition: scale 1s ease-in-out;
}

.gallery figure:hover img {
  scale: 1.125;
}

.gallery figcaption {
  grid-area: 1 / 1 / -1 / -1;
  align-self: end;
  z-index: 1;

  padding: 3em 15% 1em 1em;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  background: linear-gradient(transparent 25%, rgb(0 0 0 / 0.75));
  display: none;
}

@container figure (width > 20rem) {
  .gallery figcaption {
    display: block;
  }
}

.gallery figcaption h3 {
  font-size: 1.0625rem;
}

.gallery figcaption p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (width > 600px) {
  .gallery figure:nth-child(1) {
    grid-area: span 2 / span 2;
  }

  .gallery figure:nth-child(4n + 1) {
    grid-row: span 2;
  }

  .gallery figure:nth-child(4n + 2) {
    grid-column: span 2;
  }
}

/*********************************END MEDIA & GALLERY*******************************************/
/*********************************ABOUT US*****************************************************/
.service-section-1 {
  background: #F7F7F7;
}

.service-section-1 .image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.service-section-1 .image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.service-section-1 .image-container:hover img {
  transform: scale(1.1);
}

.service-section-1 .image-container .image-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
  background: transparent !important;
  padding: 0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.service-section-1 .image-container:hover .image-title {
  color: #4b8a24 !important;
  transform: scale(1.05);
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-section-1 .image-container:hover .about-overlay {
  opacity: 1;
}

/********************************END ABOUT US*************************************************/
/*****************************SECTIONS TITLE UNDERLINE SETTINGS********************************/
/*Option One*/
.title-underline h1,
.title-underline h2,
.title-underline h3,
.title-underline h5 {
  text-align: center;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

@media (max-width: 991.98px) {

  .title-underline h1,
  .title-underline h2,
  .title-underline h3,
  .title-underline h5 {
    font-size: 17px;
    grid-gap: 10px;
  }

  .title-underline h1:before,
  .title-underline h2:before,
  .title-underline h3:before,
  .title-underline h5:before {
    width: 20px !important;
  }

  .title-underline h1:after,
  .title-underline h2:after,
  .title-underline h3:after,
  .title-underline h5:after {
    width: 20px !important;
  }
}

.title-underline h1:before,
.title-underline h2:before,
.title-underline h3:before,
.title-underline h5:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #1964a2;
  border-top: 1px solid #1964a2;
  height: 10px;
  width: 80px;
  margin-left: auto;
}

.title-underline h1:after,
.title-underline h2:after,
.title-underline h3:after,
.title-underline h5:after {
  content: " ";
  display: block;
  border-bottom: 1px solid #1964a2;
  border-top: 1px solid #1964a2;
  height: 10px;
  width: 80px;
  margin-right: auto;
}

/*End Option One*/
/*Option Two*/
/* === HEADING STYLE #1 === */
.title-underline2 h1,
.title-underline2 h2,
.title-underline2 h3,
.title-underline2 h5 {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.title-underline2 h1:before,
.title-underline2 h2:before,
.title-underline2 h3:before,
.title-underline2 h5:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #1964a2;
}

.title-underline2 h1:after,
.title-underline2 h2:after,
.title-underline2 h3:after,
.title-underline2 h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #1964a2;
}

/*End Option Two*/
/*Option Three*/
/*left text title */
.title-underline3 h1 {
  text-align: center;
  color: #222;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  word-spacing: 1px;
  letter-spacing: 2px;
  color: #353c49;
}

.title-underline3 h1 span {
  line-height: 2em;
  padding-bottom: 15px;
  text-transform: none;
  font-size: .7em;
  font-weight: normal;
  font-style: italic;
  font-family: "Playfair Display", "Bookman", serif;
  color: #999;
  letter-spacing: -0.005em;
  word-spacing: 1px;
  letter-spacing: none;
}

.title-underline3 h1:after,
.title-underline3 h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 4px;
  content: "";
  right: 45px;
  margin: auto;
  background-color: #ccc;
}

.title-underline3 h1:before {
  background-color: #323d3f;
  left: 45px;
  width: 90px;
}

@media (max-width: 991.98px) {
  .title-underline3 h1 {
    font-size: 15px;
  }

  .title-underline3 h1 span {
    line-height: 15px;
    padding-bottom: 10px;
    font-size: 10px;
  }

  .title-underline3 h1:after,
  .title-underline3 h1:before {
    height: 2px;
    right: 15px;
    background-color: #ccc;
  }

  .title-underline3 h1:before {
    background-color: #323d3f !important;
    width: 20px;
    left: 20px;
  }
}

/*End Option Three*/
/*****************************END SECTIONS UNDERLINE SETTINGS******************************************/

/*****************************MOBILE RESPONSIVENESS PATCHES********************************************/
/* Global Weather/Page Container Padding Override */
@media (max-width: 991.98px) {
  .weather {
    padding-top: 90px !important;
  }
}

/* Districts of Gilgit-Baltistan Grid on Mobile/Tablet */
@media (max-width: 991.98px) {
  .slides {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 15px !important;
    margin: 0 auto 30px !important;
  }

  .slides a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .slide_1 {
    width: 100% !important;
    min-width: 100% !important;
    height: 180px !important;
    border-radius: 15px !important;
    margin: 0 !important;
  }

  .slide-info {
    transform: rotate(0deg) !important;
    font-size: 16px !important;
    left: 15px !important;
    bottom: 15px !important;
    right: 15px !important;
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .slides {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Popular Destinations Split Slider responsive rules */
@media (max-width: 768px) {
  .slider-container {
    display: flex !important;
    flex-direction: row !important;
    height: 350px !important;
    overflow: hidden !important;
  }

  .left-slide {
    width: 50% !important;
    height: 100% !important;
    order: 1 !important;
  }

  .right-slide {
    width: 50% !important;
    height: 100% !important;
    order: 2 !important;
  }

  .left-slide>div {
    border: 5px solid white !important;
    padding: 15px !important;
    height: 100% !important;
    flex: 0 0 100% !important;
    justify-content: center !important;
  }

  .left-slide h1 {
    font-size: 16px !important;
  }

  .left-slide h1 span {
    font-size: 11px !important;
  }

  .left-slide p {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .left-slide a.btn {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }

  .right-slide img {
    border: 5px solid white !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Center action control buttons at the boundary of split */
  .slider-container .action-buttons button {
    font-size: 12px !important;
    padding: 6px 10px !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 100;
  }

  .slider-container .action-buttons .down-button {
    transform: translate(-100%, -50%) !important;
    border-radius: 5px 0 0 5px !important;
  }

  .slider-container .action-buttons .up-button {
    transform: translate(0, -50%) !important;
    border-radius: 0 5px 5px 0 !important;
  }

  .slider-container .left-slide>div ul {
    display: none !important;
  }
}

/* Experiences tab-content & Testimonials */
@media (max-width: 768px) {
  .tab-domains {
    padding: 10px 5px !important;
    flex-direction: column !important;
  }

  .portfolio-item {
    margin-bottom: 25px !important;
  }

  .portfolio-content img {
    height: 220px !important;
  }

  .portfolio-info {
    opacity: 1 !important;
    /* show overlays on mobile screens */
    background: rgba(0, 0, 0, 0.5) !important;
  }

  .portfolio-info p {
    font-size: 14px !important;
  }

  .portfolio-info .preview-link,
  .portfolio-info .details-link {
    font-size: 24px !important;
  }
}

/*****************************DYNAMIC & LOGO-ALIGNED ACCENT COLORS*************************************/
/* Modern Logo Badge & Title Display */
nav,
.menu-par,
.logo-par {
  overflow: visible !important;
}

.logo-par {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.logo-par a {
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  z-index: 10010 !important;
}

.logo-par a img {
  background-color: #ffffff !important;
  padding: 7px !important;
  border-radius: 50% !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22) !important;
  width: 110px !important;
  height: 110px !important;
  object-fit: contain !important;
  border: 3px solid #1964a2 !important;
  position: relative !important;
  top: 32px !important;
  /* Offset downward, extending half-outside bottom border */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.nav-fixed .logo-par a img {
  width: 90px !important;
  height: 90px !important;
  top: 22px !important;
  /* Adjusted offset for scrolled header */
}

.logo-par a:hover img {
  transform: scale(1.08) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3) !important;
}

.logo-par h2 {
  margin: 0 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

/* Navigation colors for inner pages */
.inner-page nav {
  background-color: #1964a2 !important;
  /* Forest Green Logo */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.inner-page nav.nav-fixed {
  background-color: #fff !important;
  /* white scrolled is perfect */
}

.logo-par h2 a {
  color: #fff !important;
  transition: color 0.3s ease;
}

.nav-fixed .logo-par h2 a,
.nav-fixed ul li a,
.nav-fixed #toggle-btn {
  color: #1964a2 !important;
}

.nav-fixed #toggle-btn i {
  color: #1964a2 !important;
}

/* Dynamic styling for dropdown menu hover colors */
.nav ul li .dropdown-menu li a:hover {
  background-color: #4b8a24 !important;
  /* Secondary Blue from Logo */
  color: #fff !important;
}

/* Mobile Navigation responsive layout overrides */
@media screen and (max-width: 768px) {
  .logo-par h2 {
    font-size: 15px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .logo-par h2 a {
    color: #fff !important;
  }

  .nav-fixed .logo-par h2 a {
    color: #1964a2 !important;
  }

  .logo-par a img {
    width: 80px !important;
    height: 80px !important;
    top: 20px !important;
    border-width: 2px !important;
    padding: 5px !important;
  }

  .nav-fixed .logo-par a img {
    width: 65px !important;
    height: 65px !important;
    top: 15px !important;
  }

  .menu-par {
    padding: 8px 15px !important;
  }

  /* Mobile full-screen green overlay navigation menu */
  .nav {
    background-color: #11422d !important;
    /* Premium Dark Green */
    z-index: 9999 !important;
    top: 0;
    height: 100vh;
    width: 100%;
    transition: all 0.5s ease;
  }

  .nav ul {
    margin-top: 80px !important;
    padding-left: 0 !important;
    display: block !important;
  }

  .nav ul li {
    margin-top: 20px !important;
    display: block !important;
    text-align: center !important;
  }

  .nav ul li a {
    color: #ffffff !important;
    /* Force white text readability on mobile */
    font-size: 16px !important;
    padding: 10px 20px !important;
    display: block !important;
  }

  .nav ul li .dropdown-menu {
    background-color: #0b2e1f !important;
    /* Deeper Green for nested mobile links */
    box-shadow: none !important;
    padding: 5px 0 !important;
  }

  .nav ul li .dropdown-menu li a {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  #toggle-btn {
    z-index: 10000 !important;
    /* Keep toggle button clickable on top of overlay */
  }
}

/* Dynamic Inner page wrapper section paddings */
.weather,
.currency,
.plan-trip-section {
  padding-top: 200px;
  min-height: 100vh;
}

@media (max-width: 991.98px) {

  .weather,
  .currency,
  .plan-trip-section {
    padding-top: 90px !important;
  }
}

ul {
  list-style: none;
}

/* Glassmorphism details box themed using logo colors */
.glass-weather {
  background: linear-gradient(135deg, rgba(25, 100, 162, 0.85), rgba(75, 138, 36, 0.85)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(75, 138, 36, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  padding: 25px 15px;
  color: white;
}

.glass-weather:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(75, 138, 36, 0.4);
}

.weather-header {
  margin-bottom: 20px;
}

.location {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.date {
  font-size: 13px;
  opacity: 0.85;
  color: #e8f5e9;
}

.weather-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.temperature {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  position: relative;
  color: #fff;
}

.temperature::after {
  content: "°C";
  position: absolute;
  font-size: 26px;
  top: 5px;
}

.weather-icon {
  width: 80px;
  height: 80px;
  margin: 10px 0;
}

.description {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.weather-details {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-value {
  font-weight: 600;
  margin-bottom: 3px;
}

.detail-label {
  font-size: 11px;
  opacity: 0.8;
}

/* Aspect ratio helper */
.fixed-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Custom interactive responsive Organogram layout */
.org-chart-wrapper {
  margin: 20px auto;
  padding: 10px;
  font-family: 'Inter', sans-serif;
}

.org-tree {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.org-tree ul {
  list-style: none;
  padding-left: 25px;
  border-left: 2px dashed rgba(25, 100, 162, 0.3);
  margin-top: 10px;
  margin-bottom: 10px;
}

.org-node {
  margin-bottom: 15px;
  position: relative;
}

.org-node::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -27px;
  width: 25px;
  border-top: 2px dashed rgba(25, 100, 162, 0.3);
}

.org-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #4b8a24;
  /* Secondary blue */
  border-radius: 8px;
  padding: 12px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: inline-block;
  min-width: 260px;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.org-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.org-role {
  font-size: 14px;
  font-weight: 700;
  color: #1964a2;
  /* Primary Green */
  text-transform: uppercase;
  margin-bottom: 4px;
  padding-right: 25px;
  /* space for toggle button */
}

.org-name {
  font-size: 13px;
  color: #555;
}

.org-node.level-0>.org-card {
  border-left-color: #1964a2;
  background: #e8f5e9;
}

.org-node.level-0>.org-card .org-role {
  font-size: 16px;
}

.org-node.level-1>.org-card {
  border-left-color: #4b8a24;
  background: #e3f2fd;
}

.org-node.level-2>.org-card {
  border-left-color: #ff9800;
}

.org-toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #1964a2;
  transition: background 0.3s;
}

.org-toggle-btn:hover {
  background: #e0e0e0;
}

.org-node.collapsed>ul {
  display: none !important;
}

.org-node.collapsed .org-toggle-btn::after {
  content: "+";
}

.org-node:not(.collapsed) .org-toggle-btn::after {
  content: "-";
}

.org-tree>.org-node::before {
  display: none;
}

/* Contact Page Responsive Card Styles */
.contact-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e0e0;
  width: 100% !important;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.contact-card h5 {
  margin: 0px;
  color: #333;
  text-align: center;
  padding: 15px;
  min-height: 60px;
  font-size: 16px;
  font-weight: bold;
}

.map-container {
  height: 150px;
  overflow: hidden;
  margin-bottom: 15px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card .address,
.contact-card .mobile {
  color: #555;
  margin: 10px 15px;
  text-align: center;
  font-size: 13px;
}

.map-button {
  background-color: #4b8a24;
  /* Secondary Blue theme */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  display: block;
  margin: 0 auto 15px;
  transition: background-color 0.3s;
}

.map-button:hover {
  background-color: #1964a2;
  /* Primary Green hover */
}

/* Custom Table Styles (aligned with Logo Green) */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.custom-table thead tr {
  background-color: #1964a2 !important;
  color: #ffffff !important;
  text-align: left;
  font-weight: bold;
}

.custom-table th,
.custom-table td {
  padding: 12px 15px;
}

.custom-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.custom-table tbody tr:nth-of-type(even) {
  background-color: #f8f9fa;
}

.custom-table tbody tr:last-of-type {
  border-bottom: 2px solid #1964a2 !important;
}

/* News Article List Styles */
.article {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 15px;
}

.article img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 6px;
}

.article-content {
  flex: 1;
}

.article h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.article h4 a {
  color: #1964a2;
  text-decoration: none;
}

.article h4 a:hover {
  color: #4b8a24;
}

.article .event-meta {
  display: block;
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.article .event-meta i {
  color: #1964a2;
}

.article p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .article {
    flex-direction: column;
  }

  .article img {
    width: 100%;
    height: 180px;
    margin: 0 0 12px 0;
  }
}

/* Tourist Inflows Tab styling (aligned with theme colors) */
.tab {
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  border-radius: 8px 8px 0 0;
  display: flex;
}

.tab button {
  background-color: inherit;
  flex: 1;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  border-bottom: 3px solid transparent;
}

.tab button:hover {
  background-color: #e9ecef;
}

.tab button.active {
  background-color: #e8f5e9;
  color: #1964a2;
  border-bottom-color: #1964a2;
}

.tabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tabcontent.activetab {
  display: block !important;
  opacity: 1;
}

/* =========================================================
   MODERN FOOTER
   ========================================================= */
.footer-modern {
  font-family: 'Inter', sans-serif;
  background: #0d1f2d;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

/* Wave SVG top divider */
.footer-wave {
  line-height: 0;
  overflow: hidden;
  background: #f8f9fa;
  /* matches the section above */
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Footer body */
.footer-body {
  padding: 60px 0 40px;
}

/* Brand column */
.footer-brand {}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* Social buttons */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: #1964a2;
  border-color: #1964a2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 100, 162, 0.4);
}

/* Widget sections */
.footer-widget {}

.footer-widget-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #1964a2, #4b8a24);
  border-radius: 2px;
}

/* Nav links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.footer-links li a i {
  font-size: 9px;
  color: #4b8a24;
  transition: transform 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links li a:hover i {
  transform: translateX(3px);
  color: #1964a2;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(25, 100, 162, 0.2);
  border: 1px solid rgba(25, 100, 162, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4da6ff;
  font-size: 14px;
}

.footer-contact-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  padding-top: 6px;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover {
  color: #4da6ff;
}

/* Destination badge chips */
.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(75, 138, 36, 0.15);
  border: 1px solid rgba(75, 138, 36, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.footer-badge i {
  color: #4b8a24;
  font-size: 10px;
}

.footer-badge:hover {
  background: rgba(75, 138, 36, 0.3);
  color: #fff;
}

/* Copyright bar */
.footer-bottom {
  background: #071218;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-copy-link {
  color: #4da6ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-copy-link:hover {
  color: #4b8a24;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-body {
    padding: 40px 0 30px;
  }

  .footer-widget-title {
    margin-top: 10px;
  }

  .footer-badge-row {
    margin-top: 10px;
  }

  .footer-copy {
    text-align: center !important;
  }
}

/* =========================================================
   END MODERN FOOTER
   ========================================================= */


/* =========================================================
   INNER PAGE — UNIVERSAL NAV OFFSET & PAGE HERO
   ========================================================= */

/**
 * All inner-page first sections (.weather) need top padding
 * to clear the fixed nav (~130px desktop / ~90px mobile).
 * We target .inner-page .weather and section.weather on non-home pages.
 */
.inner-page section.weather,
.inner-page section:first-of-type {
  padding-top: 140px;
}

/* Inner page decorative hero strip */
.page-hero {
  background: linear-gradient(135deg, #0d1f2d 0%, #1964a2 60%, #4b8a24 100%);
  padding: 120px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(22px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero .breadcrumb-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-hero .breadcrumb-wrap a:hover {
  color: #fff;
}

.page-hero .breadcrumb-wrap .sep {
  opacity: 0.5;
}

/* =========================================================
   INNER PAGE — WEATHER / CONTENT WRAPPER NAV OFFSET
   ========================================================= */
/* Applied to all section.weather containers on inner pages */
section.weather {
  padding-top: 140px;
  min-height: 60vh;
}

/* On home page the .weather is already set differently — do not override */
.home-page section.weather {
  padding-top: 0 !important;
  min-height: unset;
}

/* =========================================================
   INNER PAGE — POST MODULE (district/destination detail)
   ========================================================= */
.post-module {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-bottom: 24px;
}

.post-module .post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-module .post-thumbnail img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.post-module .post-thumbnail:hover img {
  transform: scale(1.03);
}

.post-module .tourist-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.post-module .category {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: capitalize;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.post-module .post-content {
  padding: 24px;
}

.post-module .post-content .title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #0d1f2d;
  margin-bottom: 12px;
}

/* District meta info row */
.post-module .post-content ul.d-flex {
  flex-wrap: wrap !important;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 16px !important;
  margin-bottom: 20px !important;
}

.post-module .post-content ul.d-flex li {
  flex: 1 1 100px;
  min-width: 80px;
  font-size: 12px;
  text-align: center;
}

/* =========================================================
   INNER PAGE — SIDEBAR
   ========================================================= */
.sidebar {
  padding-left: 20px;
}

.sidebar .widget img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* =========================================================
   INNER PAGE — GALLERY GRID
   ========================================================= */
.gallery-element {
  position: relative;
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-element::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-element img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
  z-index: 1;
}

.gallery-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-element:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.gallery-element:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.gallery-element .element-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  z-index: 3;
  width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.gallery-element:hover .element-title {
  transform: translate(-50%, -50%) scale(1.05);
  color: #ffd700;
}

/* =========================================================
   INNER PAGE — TABLES (hotels, operators, tourist inflows)
   ========================================================= */
.inner-page-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.inner-page-table th {
  background: #1964a2;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

.inner-page-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.inner-page-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.inner-page-table tr:hover td {
  background: #eef4fb;
}

/* Responsive table wrapper */
.table-responsive-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* =========================================================
   INNER PAGE — CARDS (news, events, operators, hotels)
   ========================================================= */
.inner-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.inner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.inner-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.inner-card .inner-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.inner-card .inner-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1f2d;
  margin-bottom: 8px;
  line-height: 1.3;
}

.inner-card .inner-card-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.inner-card .inner-card-text {
  font-size: 13.5px;
  color: #555;
  flex: 1;
  line-height: 1.6;
}

.inner-card .inner-card-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* =========================================================
   INNER PAGE — MOBILE RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 991.98px) {
  section.weather {
    padding-top: 130px;
  }

  /* District / destination detail: stack sidebar below content */
  .sidebar {
    border-left: none !important;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    margin-top: 30px !important;
    padding-left: 0 !important;
    padding-top: 24px !important;
  }

  /* Welcome section on inner GB page */
  .welcome-section .video-welcome {
    margin-left: 0 !important;
    min-height: 220px !important;
    margin-bottom: 24px !important;
  }

  /* Post module thumbnail height */
  .post-module .post-thumbnail img {
    height: 220px;
  }

  /* Collapse the district meta row */
  .post-module .post-content ul.d-flex li {
    flex: 1 1 80px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  section.weather {
    padding-top: 125px;
  }

  .gallery-element {
    height: 200px !important;
  }

  /* Make gallery 2 cols on small screens */
  .col-md-4.gallery-col,
  .col-sm-6.gallery-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Post module thumbnail height */
  .post-module .post-thumbnail img {
    height: 180px;
  }

  /* Inner page h3 titles */
  .welcome-section h3,
  .title-underline h3,
  .title-underline2 h3 {
    font-size: clamp(16px, 4.5vw, 24px) !important;
  }

  /* Back to Home button */
  .btn.float-right {
    float: none !important;
    display: block !important;
    width: fit-content !important;
    margin: 16px auto 0 !important;
  }

  /* Weather cards on mobile — full width */
  .col-md-4.glass-weather-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Plan-trip weather section reduced padding */
  .plan-trip-weather.weather {
    padding-top: 90px;
  }

  /* Operator / hotel cards — 1 column */
  .col-md-6.operator-col,
  .col-md-4.hotel-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* News list items */
  .news-item-wrap {
    flex-direction: column !important;
  }

  .news-item-img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  section.weather {
    padding-top: 120px;
  }

  .post-module .post-content {
    padding: 14px;
  }

  .post-module .post-content ul.d-flex {
    gap: 6px;
    padding: 8px !important;
  }

  .post-module .post-content ul.d-flex li {
    flex: 1 1 60px;
    font-size: 10px;
  }

  .gallery-element {
    height: 180px !important;
  }

  .gallery-element img {
    height: 100% !important;
  }
}

/* =========================================================
   END INNER PAGE RESPONSIVE
   ========================================================= */

/* =========================================================
   INNER PAGE — CARDS (news, events, operators, hotels)
   ========================================================= */
.inner-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.inner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

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

.inner-card .inner-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.inner-card .inner-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1f2d;
  margin-bottom: 8px;
  line-height: 1.3;
}

.inner-card .inner-card-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.inner-card .inner-card-text {
  font-size: 13.5px;
  color: #555;
  flex: 1;
  line-height: 1.6;
}

.inner-card .inner-card-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* =========================================================
   INNER PAGE — MOBILE RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 991.98px) {
  section.weather {
    padding-top: 130px;
  }

  /* District / destination detail: stack sidebar below content */
  .sidebar {
    border-left: none !important;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    margin-top: 30px !important;
    padding-left: 0 !important;
    padding-top: 24px !important;
  }

  /* Welcome section on inner GB page */
  .welcome-section .video-welcome {
    margin-left: 0 !important;
    min-height: 220px !important;
    margin-bottom: 24px !important;
  }

  /* Post module thumbnail height */
  .post-module .post-thumbnail img {
    height: 220px;
  }

  /* Collapse the district meta row */
  .post-module .post-content ul.d-flex li {
    flex: 1 1 80px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  section.weather {
    padding-top: 125px;
  }

  .gallery-element {
    height: 200px !important;
  }

  /* Make gallery 2 cols on small screens */
  .col-md-4.gallery-col,
  .col-sm-6.gallery-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Post module thumbnail height */
  .post-module .post-thumbnail img {
    height: 180px;
  }

  /* Inner page h3 titles */
  .welcome-section h3,
  .title-underline h3,
  .title-underline2 h3 {
    font-size: clamp(16px, 4.5vw, 24px) !important;
  }

  /* Back to Home button */
  .btn.float-right {
    float: none !important;
    display: block !important;
    width: fit-content !important;
    margin: 16px auto 0 !important;
  }

  /* Weather cards on mobile — full width */
  .col-md-4.glass-weather-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Plan-trip weather section reduced padding */
  .plan-trip-weather.weather {
    padding-top: 90px;
  }

  /* Operator / hotel cards — 1 column */
  .col-md-6.operator-col,
  .col-md-4.hotel-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* News list items */
  .news-item-wrap {
    flex-direction: column !important;
  }

  .news-item-img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  section.weather {
    padding-top: 120px;
  }

  .post-module .post-content {
    padding: 14px;
  }

  .post-module .post-content ul.d-flex {
    gap: 6px;
    padding: 8px !important;
  }

  .post-module .post-content ul.d-flex li {
    flex: 1 1 60px;
    font-size: 10px;
  }

  .gallery-element {
    height: 180px !important;
  }

  .gallery-element img {
    height: 100% !important;
  }
}

/* =========================================================
   END INNER PAGE RESPONSIVE
   ========================================================= */

/* =========================================================
   END EVENT DETAIL PAGE SCOPED STYLES
   ========================================================= */

/* =========================================================
   END EVENT FARE DETAIL PAGE SCOPED STYLES
   ========================================================= */

.inactive-slider {
  display: none !important;
}
