
/*** Spinner Start ***/
/*** Spinner ***/



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/* Apply reduced height only on desktop (≥992px in Bootstrap) */
@media (min-width: 992px) {
  .destination-img {
    position: relative;
    overflow: hidden;
    height: 270px; /* reduced height for desktop */
  }
}

/* Gutters (spacing) */
.row.g-4{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Card layout + equal height */
.svc-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* Consistent image height/crop */
.svc-img{
  width:100%;
  aspect-ratio:16/9;         /* modern browsers */
  object-fit:cover;
  display:block;
}
@supports not (aspect-ratio: 16/9){
  .svc-img{ height:200px; }
}

/* Body grows so button can sit at bottom */
.svc-card .body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  flex:1 1 auto;
}

/* Keep titles consistent height (helps button alignment) */
.svc-title{
  /* ~2 lines on most screens; tweak if needed */
  min-height: 3.25rem;
  line-height: 1.2;
}

/* Rounded buttons */
.btn-pill{ border-radius:9999px; }


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Button End ***/


.daytour-dropdown {
  max-height: 300px;   /* limit dropdown height */
  overflow-y: auto;
}

/* Hide scrollbar (for Chrome, Safari) */
.daytour-dropdown::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Hide scrollbar (for Firefox) */
.daytour-dropdown {
  scrollbar-width: none;
}



/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

@media (max-width: 767px) {
  .section-title::before{
     margin-right: -15px;
      width: 30px;
  }
  .section-title::after {
   margin-left: -15px;
    width: 30px;
  }
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/* Title */
.section-title{
  font-family:"Inter",sans-serif;
  font-weight:600;
  /* color:#3b85ff; */
  font-size:36px;
  line-height:42px;
  margin-top:-2rem!important;
  margin-bottom:0!important;
  text-align:center;
}

/* Wrapper */
.blog-card-container1{
  display:flex; flex-wrap:wrap; gap:2rem;
  justify-content:center; padding:1rem; margin:0;
  position:relative;
}

/* Desktop grid */
.desktop-view{
  display:flex; flex-wrap:wrap; gap:5rem; justify-content:center; width:100%;
}

/* Mobile swiper (hidden on desktop) */
.mobile-view{ display:none; flex-direction:column; align-items:center; width:100%; }

/* Card */
.blog-card2{
  width:100%; max-width:320px; height:350px;
  background:#fff; border-radius:5px;
  box-shadow:0px 1px 3px 0px #0000004d, 0px 4px 8px 3px #00000026;
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .3s ease;
}
.blog-card2:hover{ transform:translateY(-5px); }

.blog-card-image{ width:100%; height:193px; object-fit:cover; }

.blog-card-metaa{
  margin-top:15px; font-family:"Inter",sans-serif;
  font-size:20px; font-weight:600; color:#000; line-height:100%;
  text-align:center;
}
.blog-card-description{
  font-family:"Inter",sans-serif; font-size:15px; font-weight:400;
  color:#000; line-height:27px; margin:1rem; text-align:center;
}

/* Swiper */
.vehicles-swiper{ width:100%; padding-bottom:40px; overflow:hidden; }
.vehicles-swiper .swiper-wrapper{ align-items:center; }
.vehicles-swiper .swiper-pagination{ bottom:0; }
.vehicles-swiper .swiper-slide{ display:flex; justify-content:center; align-items:center; }
.vehicles-swiper .swiper-pagination-bullet{ background:#3B85FF; opacity:.5; }
.vehicles-swiper .swiper-pagination-bullet-active{ opacity:1; }

.section2-container{
  position: relative;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none !important;
}

.section2-title{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #3B85FF;
  font-size: 36px;
  line-height: 42px;
  width: 100%;
  text-align: center;
  margin: 1rem 0 1rem;
}

.section2-content{
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  text-align: center;
}

.section2-item{ margin-bottom: 2rem; }

.section2-subtitle{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #3B85FF;
  font-size: 24px;
  line-height: 42px;
  margin-bottom: 2rem;
  text-align: center;
}

.section2-subtitle-black{
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 42px;
  color: #000;
  width: 100%;
  text-align: center;
padding: 0 1rem;
}

.section2-text{
  font-family: 'Inter', sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  line-height: 42px;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  padding: 1rem;
}

/* Decorative background image (was Tailwind: absolute/left-0/top-2/2/-translate-y-1/4 ...) */
.section2-decoration{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-25%); /* roughly -translate-y-1/4 */
  z-index: -1;
  margin-top: 30px;
  opacity: .8;
}
.section2-decoration img{
  width: min(1000px, 80vw);
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive tweaks */
@media (max-width: 768px){
  .section2-title{
    font-size: 24px;
    margin-top: 10px !important;
    margin-bottom: -10px;
  }
  .section2-container{ padding: 1.5rem 1rem; }
  .section2-item{ margin-bottom: 1.5rem; }
  .section2-decoration{ opacity: .6; top: 40%; }
}

@media (max-width: 480px){
  .section2-container{ padding: 1rem .5rem; }
  .section2-title{ font-size: 24px; margin-bottom: -10px; }
  .section2-subtitle{ margin-bottom: .8rem; }
  .section2-decoration{ opacity: .4; top: 35%; }
}

/* Remove/adjust padding on mobile */
@media (max-width: 576px) {
  .blog-description-wrapper {
    padding: 20px 15px !important;  /* or 0 if you want completely no padding */
  }
}

/* Blog wrapper */
.blog-description-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
  font-family: "Roboto", sans-serif;
  color: #222;
  line-height: 1.8;
}

/* Main Title */
.blog-main-title {
  font-family: "Inria Serif", serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin-bottom: 30px;
  color: #101010;
}

/* Hero Image */
.blog-hero-image {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Subtitles (H2 sections) */
.blog-subtitle,
.blog-subtitle1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #0a3d62;
  margin-top: 50px;
  margin-bottom: 18px;
  position: relative;
}

/* Decorative underline */
.blog-subtitle::after,
.blog-subtitle1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  /* background: #1e90ff; */
  border-radius: 2px;
}

/* Paragraphs */
.blog-paragraph,
.blog-paragraph1,
.blog-paragraph2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}




.hero-section {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}

.hero-section p {
  font-family: 'Inter', sans-serif ;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 1rem !important;
}

/* Large Laptops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section p { font-size: 18px; line-height: 28px; }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
  .hero-section { margin-top: 20px; margin-bottom: -30px; }
  .hero-section p { font-size: 16px; line-height: 24px; }
}


/* Responsive */
@media (max-width:767px){
  .desktop-view{ display:none; }
  .mobile-view{ display:flex; }
  .blog-card-container1{ padding:1.5rem .5rem; gap:2rem; }
  .section-title{ margin-top:-4rem!important; margin-bottom:-2rem!important; }
}
@media (min-width:768px){
  .section-title{ font-size:32px; }
}
@media (min-width:1024px){
  .section-title{ font-size:40px; }
}


.section3-container-wrapper{
  width:100%;
  padding:20px;
  margin:0;
}

.section3-container{
  display:flex;
  justify-content:center;
  gap:-1rem;
  max-width:1200px;
  margin:0 auto;
  padding:0 1rem;
}

.section3-box{
  padding:2rem;
  border-radius:12px;
  box-shadow:0 6px 15px rgba(0,0,0,0.26);
  box-sizing:border-box;
}

.left-box{
  background-color:hsl(218,100%,94%);
  width:40%;
  margin-top:20px;
  margin-bottom:40px;
  
}

.left-box h2{
  font-family:"Inria Serif", serif;
  font-size:36px;
  font-weight:700;
  line-height:33px;
  margin:1.5rem 0 1rem;
  color:#000;
}

.left-box ul{
  font-family:'Inter', sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:33px;
  list-style:disc;
  padding-left:1.25rem;
  margin-bottom:1.5rem;
}

.right-box{
  width:50%;
  background:#fff;
}

.right-box h2{
  font-family:'Inter', sans-serif;
  font-size:48px;
  font-weight:600;
  line-height:33px;
  margin:1.5rem 0;
  color:#000;
}

.faq-item{ margin-bottom:1.5rem; }

.faq-item p{
  font-family:'Inter', sans-serif;
  font-size:15px;
  line-height:1.6;
  color:#000;
}

/* Tablet: stack vertically */
@media (max-width:1024px){
  .section3-container{ flex-direction:column; align-items:center; }
  .left-box, .right-box{ width:85%; margin:0; }
  .left-box{ margin-top:20px; margin-bottom:20px; }
}

/* Mobile */
@media (max-width:767px){
  .section3-container{ padding:0 .5rem; }
  .left-box, .right-box{ width:95%; padding:1.5rem; }
  .left-box h2, .right-box h2{ font-size:24px; line-height:1.3; }
  .faq-item p{ font-size:14px; }
}

/* ===== Cards Section ===== */
.section2-wrapper {
  padding: 32px 16px;
  font-family:'Inter', sans-serif !important;
  color: #0b0b0b;
  ;
}

.section2-card-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3-up like your screenshot */
  gap: 36px; 
  justify-content: center; 
  
   
                               /* space between cards */
}

/* Card */
.section2-card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e9eef5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 4px rgba(0,0,0,.06),
    0 14px 28px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
  
}

.section2-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 14px rgba(0,0,0,.08),
    0 22px 38px rgba(0,0,0,.14);
}

/* Image on top */
.section2-card-image {
  display: block;
  width: 100%;
  height: 220px;                 /* adjust if you want taller/shorter header image */
  object-fit: cover;
}

/* Content */
.section2-card-content {
  padding: 28px 26px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 14px;
  flex: 1;                       /* equal heights across the row */
}

/* Typography */
.section2-card-title {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  margin: 6px 0 4px;
  text-align: center;
}

.section2-card-days {
  font-weight: 700;
  font-size: 16px;
  margin: 2px 0 10px;
  text-align: center;
}

.section2-card-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 640px;              /* keeps long text readable like the screenshot */
  margin: 0 auto;
  color: #101010;
}

/* ===== Responsiveness ===== */
@media (max-width: 1200px) {
  .section2-card-container { gap: 28px; }
}

@media (max-width: 992px) {
  .section2-card-container { grid-template-columns: repeat(2, 1fr); }
  .section2-card-image { height: 210px; }
}

@media (max-width: 576px) {
  .section2-card-container { grid-template-columns: 1fr; gap: 22px; }
  .section2-card-content { padding: 22px 18px 28px; }
  .section2-card-image { height: 200px; }
  .section2-card-description { font-size: 15px; line-height: 1.7; }
}

/* Desktop: fixed-width tracks, centered */
.section2-card-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  gap:32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content:center;      /* centers the whole track block */
}



/* Tablet: back to fluid 2 columns */
@media (max-width: 992px){
  .section2-card-container{
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    justify-content: center;
  }
  /* center single leftover on tablet */
  .section2-card-container > .section2-card:nth-last-child(1):nth-child(2n+1){
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 520px;
  }
}

/* Mobile: 1 column */
@media (max-width: 576px){
  .section2-card-container{ grid-template-columns: 1fr; }
}




/*** Navbar ***/
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

/* ✅ Mobile Navbar Fixed */
@media (max-width: 991.98px) {
    .navbar-light {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: var(--bs-white);
        box-shadow: 0 2px 8px rgba(0,0,0,.06);
    }

    body {
        padding-top: 80px; /* adjust to navbar height */
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    /* fix dropdown inside collapsed navbar */
    .navbar .navbar-collapse .dropdown-menu {
        position: static;
        float: none;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/* Limit dropdown height & enable scrolling */
.taxi-dropdown {
  max-height: 300px;      /* adjust the height you want */
  overflow-y: auto;
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.taxi-dropdown::-webkit-scrollbar {
  width: 0;
  background: transparent; 
}

/* Hide scrollbar for Firefox */
.taxi-dropdown {
  scrollbar-width: none;  /* Firefox */
}




/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: url(../img/b1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumbb {
    background: url(../img/b2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumbb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumbbb {
    background: url(../img/b3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumbbb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumbbbb {
    background: url(../img/b4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumbbbb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumbbbbb {
    background: url(../img/b5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumbbbbb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}


.bg-breadcrumbbbbbb {
    background: url(../img/b7.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 300px 0;
}

.bg-breadcrumbbbbbb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: 0;               /* keep it fixed at the bottom */
    left: 0;
    z-index: 3;
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.1); /* optional: adds dark overlay */
    width: 100%;
    height: 100%;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}

/* Search bar container width & centering */
.search-wrap {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Make the search bar comfy on mobile */
@media (max-width: 576px) {
  .search-wrap .input-group-lg .form-control,
  .search-wrap .input-group-lg .input-group-text,
  .search-wrap .input-group-lg .btn {
    font-size: 1rem;
    padding: 0.6rem 0.75rem;
  }
}

/* Optional: subtle focus glow */
.search-wrap .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .15);
}

/* Keep things tidy when there are no results */
.no-results {
  text-align: center;
  font-size: 1rem;
}

/* Responsive for mobile */
@media (max-width: 640px) {
  .col-lg-4.col-md-6 {
    width:100%;
    max-width:380px;
    margin:20px auto 20px;
  }
  .destination-img img {
    height:250px;             /* smaller consistent image height */
  }
  .destination-img {
    min-height:250px;         /* slightly smaller for mobile */
  }
}

/*** Destination End ***/



/* Read More button styled like screenshot */
.btn-hoverr {
  display: block;             /* make it full width */
  width: 100%;
  text-align: center;
  align-items: center;
  padding: 10px 30px;
  background: #0e2f64;           /* same blue */
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;            /* slightly rounded corners */
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-hoverr:hover {
   background: #0e2f64;          /* darker blue on hover */
  color: #fff !important;
}




/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/* Card stretches to fill the column */
.international-item{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.12), 0 10px 24px rgba(0,0,0,.10);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex;                /* column already, keep */
  flex-direction:column;
  height:100%;                 /* important for equal height */
  width:100%;
}
.international-item:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 16px rgba(0,0,0,.14), 0 16px 32px rgba(0,0,0,.12);
}

/* Image same height */
.international-item > img{
  width:100%; height:180px; object-fit:cover; display:block;
}

/* Content takes remaining space */
.international-content{
  background:#fff; padding:10px 10px 10px;
  display:flex; flex-direction:column; flex:1;
}

/* Stack title + text + button, push button to bottom */
.international-info{
  display:flex;
  flex-direction:column;
  flex:1;                      /* let info fill card body */
}
.international-info h5{
  color:#111; font-weight:700; text-align:center; margin:0 0 10px;
  text-transform:none;
 
}
.international-info p{
  color:#444; font-size:14px; line-height:1.4; text-align:center; margin:0 0 15px;
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden;
  
}
.international-info h5.text-white,
.international-info p.text-white { color:#444 !important; }

/* Button pinned to bottom and same level across cards */
.international-info .btn-hover{
  margin-top:auto;             /* <-- pushes button to the bottom */
  display:block; width:100%; text-align:center;
  background:#0e2f64; color:#fff !important; font-weight:600; letter-spacing:.5px;
  border-radius:20px; padding:10px 30px; text-decoration:none; border:none;
  transition:background .2s ease, transform .05s ease;
}
.international-info .btn-hover:hover{ background:#0e2f64; }
.international-info .btn-hover:active{ transform:translateY(1px); }



/* Responsive tweaks */
@media (max-width:576px){
  .international-item > img{ height:170px; }
  .international-info p{ font-size:14px; -webkit-line-clamp:5; }
}


.logo-img {
  height: 400px;
  width: auto;
}

@media (max-width: 768px) {
  h1 {
    font-size: 22px; /* smaller text for mobile */
  }


}
