@font-face {
  font-family: 'Phetsarath';
  src: url('../font/Phetsarath/Phetsarath-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Phetsarath';
  src: url('../fonts/Phetsarath/Phetsarath-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quattrocento';
  src: url('../fonts/Quattrocento/Quattrocento-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quattrocento';
  src: url('../fonts/Quattrocento/Quattrocento-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Travellia';
  src: url('../fonts/travellia/Travellia.otf') format('opentype'),
       url('../fonts/travellia/Travellia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'thetravelista';
  src: url('../fonts/thetravelista/TheTravelista\ -\ Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Bounce animation */
@keyframes bounceCard {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  60%  { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

@keyframes bounceImg {
  0%   { transform: scale(1) translateY(0); }
  30%  { transform: scale(1.05) translateY(-4px); }
  60%  { transform: scale(1.02) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}

:root {
  --nav-bg: rgba(255, 255, 255, 0.15);
  --nav-blur: 10px;
  --highlight-color: #003d9f;
  --hero-bg: url('../img/background/heroBannerBg.png');
  --primary-color: #002d92;
  --accent-color: #ffffff;
  --text-light: #e0e0e0;
  --spacing: 1.5rem;
  --font-heading: 'Phetsarath', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* Global reset */
body {
  font-family: 'Phetsarath', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
 
.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}
 
/* Circle Loader */
.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      #3A7BFF 0deg,
      #70D7FF 270deg,
      rgba(180, 254, 221, 0) 320deg,
      rgba(180, 254, 221, 0) 360deg
    );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
 
.main-content {
  padding: 40px;
}
a{
  text-decoration: none;
  color: unset;
}

/* fonts */
.travelliaFont {
  font-family: 'Travellia', cursive;
}
.poppinsFont {
  font-family: 'Poppins', sans-serif;
}
.quattrocentoFont {
  font-family: 'Quattrocento', serif;
}
.phetsarathFont {
  font-family: 'Phetsarath', sans-serif;
} 
.thetravelistaFont {
  font-family: 'thetravelista', cursive;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding-top: 20px;
}
.navbar.scrolled {
  background: #062289;
  opacity: 0.9;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  backdrop-filter: blur(var(--nav-blur));
  padding: 0 5px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo {
  width: 120px;
  /* height: 40px; */
}

.glass-nav {
  background: var(--nav-bg);
  border-radius: 50px;
  backdrop-filter: blur(var(--nav-blur));
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 10px 20px !important;
  margin-right: 20px;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.25);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), var(--hero-bg) center/cover no-repeat;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
}

.hero-content {
  color: #fff;
  margin-top: 100px;
}

.hero-content .display-1 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 7rem;
}

.banner-small-text {
  font-size: 28px;
  letter-spacing: 1px;
}

.text-highlight {
  color: var(--highlight-color);
  font-weight: 700;
}

.lead {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
  .glass-nav {
    border-radius: 15px;
    text-align: center;
  }

  .nav-link {
    display: block;
    margin: 5px 0;
  }

  .hero-content .display-1 {
    font-size: 3.5rem;
  }

  .hero-content .lead {
    width: 100%;
  }
}

.homeHeroButton {
    margin-top: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    color: #062289;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 20px;
  }

.who-we-are-section {
  background-color: var(--primary-color);
  color: var(--accent-color);
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px 0;
}

.who-we-are-section .section-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #a8c6ff;
  font-size: 1.2rem;
}

.who-we-are-section .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.who-we-are-section .section-text {
  /* font-family: var(--font-body); */
  color: var(--text-light);
  line-height: 1.8;
  font-size: 20px;
}

.image-stack {
  position: relative;
  display: inline-block;
}

.stack-img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.stack-img.img-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  transform: rotate(-4deg);
  z-index: 1;
}

.stack-img.img-2 {
  position: relative;
  top: 80px;
  left: 100px;
  transform: rotate(3deg);
  z-index: 2;
}

.stack-img:hover {
  transform: scale(1.05);
}

.stat {
  font-family: "Quattrocento", serif;
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  color: var(--text-light);
  font-size: 21px;
  margin-bottom: 5px;
}

.map-border-top {
  position: absolute;
  width: 40%;
  left: 0;
  top: -100px;
  z-index: 0;
  opacity: 0.4;
}

.map-border-bottom {
  position: absolute;
  width: 20%;
  top: 20px;
  right: 0px;
  z-index: 0;
  opacity: 0.4;
}
.blue-map-border-top {
  position: absolute;
  width: 40%;
  left: 0;
  top: 40px;
  z-index: -1;
  opacity: 0.8;
}

.blue-map-border-bottom {
  position: absolute;
  width: 30%;
  top: 30px;
  right: 0px;
  z-index: 0;
  opacity: 0.8;
}
.tour-map-border-top {
  position: absolute;
  width: 40%;
  left: -10%;
  bottom: -25%;
  z-index: -1;
  /* opacity: 0.8; */
}

.tour-map-border-bottom {
  position: absolute;
  width: 30%;
  top: -10px;
  right: 0px;
  z-index: -1;
  /* opacity: 0.8; */
}

.styleHead {
  font-family: 'Travellia', cursive;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

/* .tickSymbol {
  position: relative;
  top: -25px;
} */
 .headingTick {
  background-image: url("../img/Vector\ 24.png");
  background-repeat: no-repeat;
  background-position: center ;
 }

/* Responsive Design */
@media (max-width: 768px) {
  .stack-img {
    width: 140px;
  }
  .stack-img.img-1 {
    top: -10px;
    left: 30px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

/* fact-check-section */
.fact-check-section {
  position: relative;
}
.fact-check-section .subTitle {
  color: #062289;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.fact-check-section .subText {
  color: #FF6600;
  font-size: 30px;
  margin: 0;
}
.fact-check-section .arrowImg {
  width: 80px;
  /* margin-top: -10px; */
  position: relative;
  top: -10px;
  left: 100px;
}
.fact-check-section .title {
  font-weight: 700;
  font-size: 70px;
}

.reveal-hover-text {
  position: relative;
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  cursor: pointer;
z-index: 10;
  /* fixed gradient from start to end of text */
  background: linear-gradient(90deg, #FF6600 0%, #062289 100%);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* hide text initially */
  mask-image: radial-gradient(circle 0px at center, rgba(0,0,0,1) 0%, transparent 0%);
  -webkit-mask-image: radial-gradient(circle 0px at center, rgba(0,0,0,1) 0%, transparent 0%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: mask-image 0.15s ease-out;
}

.fact-cards .card{
  margin: 10px;
  border-radius: 15px;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fact-cards .card-text {
  position: relative;
  transition: all 0.3s ease;
}
.fact-cards .card-title{
  color: #ffffff;
  font-size: 24px;
}
.fact-cards .card-body{
  padding: 5px;
}
.fact-cards .content{
  padding: 20px;
}
.fact-cards .fact1{
  background-color: #062289;
  color: #6D8CFB;
}
.fact-cards .fact2{
  background-color: #4165E5;
  color: #B4C4FF;
}
.fact-cards .fact3{
  background-color: #4A00CA;
  color: #6D8CFB;
}
.fact-cards .fact4{
  background-color: #130370;
  color: #95ACFF;
}
/* Default: hide extra text */
.card-text .more-text {
  display: none;
}

/* Hover: show more text */
.fact-card:hover{
  animation: bounceCard 0.5s ease-in-out;

}
.fact-card:hover  .card-text .more-text {
  display: inline;
}

/* Hover: image full width */
.fact-card:hover img {
  width: 100% !important;
  transition: 0.3s ease;
  animation: bounceImg 0.6s ease-in-out;
}

/* Smooth transition */
.fact-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Mobile toggle (active class) */
.fact-card.active .card-text .more-text {
  display: inline;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: white !important; /* keep border white */
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.8) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}


.fact-card img {
  width: 250px;
  border-radius: 30px;
}
.fact-card.active img {
  width: 100% !important;
}
@media (max-width: 992px) {
  .reveal-hover-text {
    font-size: 40px !important;
  }
  .fact-check-section .arrowImg{
    transform: rotate(45deg);
    left: -20px;
    top: 10px;
  }
}
@media (max-width: 768px) {
  .mobileNone{
    display: none;
  }
  .reveal-hover-text {
    font-size: 30px !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
}


/* flag change section */

.banner-section {
  position: relative;
  background: #062289;
  padding: 100px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}

.banner-text {
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
}

/* floating background flags */
/* .floating-flag {
  position: absolute;
  width: 70px;
  transform: rotate(-12deg);
  animation: float 3s ease-in-out infinite;
  opacity: 0.88;
} */

/* positioning exactly like your image */
.flag1 { top: 6%; right:25%; transform: rotate(18deg); }
.flag2 { top: 25%; left: 65%; transform: rotate(-10deg); }
.flag3 { bottom: 10%; right: 28%; transform: rotate(12deg); }

/* main flag near word */
#activeFlag img {
  width: 55px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  transform: rotate(0deg);
}

/* New semicircle arc container for flags */
.flags-arc {
  position: absolute;
  left: 60.5%;
  top: -20%;
  width: 20%;
  height: 160px;
  transform: translateX(75%);
  pointer-events: none; /* allow hover events to pass to banner */
}

.arc-flag {
  position: absolute;
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), opacity 420ms ease, left 420ms ease, top 420ms ease;
  opacity: 0.95;
  pointer-events: auto;
}

.arc-flag.active {
  width: 50px;
  height: 40px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 30px rgba(255,255,255,0.08) inset;
  transform: translate(-50%, -50%) scale(1.05) !important;
}

/* Active flag inside text styling */
.active-flag img {
  width: 62px;
  height: auto;
  vertical-align: -6px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* bounce float animation */
@keyframes float {
  0%   { transform: translateY(0px) rotate(12deg); }
  50%  { transform: translateY(-8px) rotate(14deg); }
  100% { transform: translateY(0px) rotate(12deg); }
}

/* mobile responsive */
/* @media (max-width: 576px) {
  .banner-text { font-size: 22px; }
  .floating-flag { width: 48px; }
  #activeFlag img { width: 40px; }
} */

/* @media (max-width: 768px) {
  .banner-section { padding: 120px 0 80px; }
  .flags-arc { top: 14%; height: 120px; }
  .arc-flag { width: 44px; height: 30px; }
  .arc-flag.active { width: 64px; height: 44px; }
  .banner-text { font-size: 20px; }
  .active-flag img { width: 44px; }
} */

/* @media (max-width: 420px) {
  .banner-section { padding: 100px 0 60px; }
  .flags-arc { height: 100px; top: 12%; }
  .arc-flag { width: 36px; height: 26px; }
  .arc-flag.active { width: 56px; height: 40px; }
  .banner-text { font-size: 18px; }
} */

/* destination  */

.destinations-section .title {
   background: linear-gradient(90deg, 
    #6C87E5 0%, 
    #001975 50%, 
    #001975 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  padding: 50px 0;
}
/* Card base */
.place-card {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
   transition: all 0.5s ease-in-out;
}

/* Light black overlay */
.place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
  transition: 0.35s ease;
}

/* Hover scale */
.place-card:hover{
  background-size: 150%;
  -webkit-transition: all 0.3s ease-in-out;
}
.place-card:hover .place-name {
  transform: scale(1.3);
  transition: 0.3s ease;
}

/* Country name style */
.place-name {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 35px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

/* Alternative: underline first 3 letters manually */
.place-name span {
  text-decoration: underline;
}
/* 062289 */
.discover-btn {
  color: #062289;
  font-weight: lighter;
  border-radius: 30px;
  border: 2px solid #062289;
  background-color: #ffffff;
  padding: 10px 30px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .place-card {
    height: 180px;
  }
  .place-name {
    font-size: 22px;
  }
}



/* Visa process faster section */

.visaProcess-bg {
  background-image: url('../img/background/visaProcessBg.png');
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat;
  min-height: 100vh;             
  display: flex;    
  flex-direction: column;    
  text-align: center;         
  align-items: center;
  justify-content: center;
  color: white;
}
.visaProcess-bg span{
  /* color: #FF6600; */
  font-weight: 800;
}
.visaProcess-bg .content-area{
  width: 70%;
  margin: 0 auto;
}
.visaProcess-bg-button{
  background: transparent;    
  color: #ffffff;             
  border: 1px solid #ffffff; 
  border-radius: 30px;
  padding: 10px 35px;
  cursor: pointer;
}


/* journey section  */
.journey-section {
  width: 90%;
  margin: 120px auto;
  border-radius: 20px;
  /* overflow: hidden; */
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
}

/* Top 2-column layout */
.journey-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  
}

/* LEFT SIDE */
.journey-left {
  background: #062289;
  background-image: url('../img/background/journey-Bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.journey-text {
  /* text-align: left; */
  padding-left: 40px;
  color: white;
}

.journey-text h1 {
  font-size: 64px;
  /* font-weight: 600; */
  /* line-height: 48px; */
}

.journey-text span {
  font-size: 64px;
}

/* RIGHT SIDE */
.journey-right {
  background: #062289;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.logo-box h1 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 10px;
  text-align: center;
}

.logo-box img {
  width: 260px;
  max-width: 90%;
}

/* FEATURES (BOTTOM) */
.features {
  padding: 40px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-item img {
  width: 40px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  line-height: 20px;
}
.journey-map-top{
  position: absolute;
  width: 30%;
  right: 0;
  top: -80px;
  z-index: 1;
  opacity: 0.8;
}
.journey-map-bottom{
  position: absolute;
  width: 25%;
  left: 0;
  bottom: -22%;
  z-index: -1;
  opacity: 0.8;
}
.journey-arrow-pointer{
  position: absolute;
  width: 25%;
  right: 42%;
  top: 5%;
  z-index: 1;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .journey-text h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .journey-wrapper {
    grid-template-columns: 1fr; 
  }

  .journey-text h1 {
    font-size: 32px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    width: 100%;
  }

  .logo-box img {
    width: 200px;
  }
}

/* need instant help */
.instant-help-background{
  background-image: linear-gradient(to right, #062289 , #00135A);
   min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;

}
.need-instant-help-img{
  position: absolute;
  width: 23%;
  left: 7%;
  bottom: 0%;
  /* z-index: -1; */
  /* opacity: 0.8; */
}


/* keep-in-touch  */
.keep-in-touch-total-section{
  background-color: #062289;
  position: relative;
}

.keep-in-touch-left{
  /* width: 90%; */
  /* margin: 0 auto; */
  padding: 80px 80px;
  color: #fff;   
}
.subscribe-transparent {
  width: 100%;
  max-width: 70%;
  display: flex;
  gap: 10px;
}

.subscribe-transparent input {
  flex: 1;
  padding: 8px 15px;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  outline: none;
}

.subscribe-transparent input::placeholder {
  color: #f0f0f0;
}

.subscribe-transparent button {
  padding: 12px 20px;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-transparent button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.keep-in-touch-right{
  background-color: #fff;
  padding: 80px 80px;
}
.Social-icon-row{
  display: flex;
  gap: 25px;
  z-index: 10;
}
.Social-icon-row a{
  cursor: pointer;
}
.keep-in-touch-arrow-map{
  position: absolute;
  width: 25%;
  right: 40%;
  top: -10%;
  z-index: 1;
  opacity: 0.8;

}

/* Mobile responsive */
@media (max-width: 480px) {
  .subscribe-transparent {
    flex-direction: column;
  }

  .subscribe-transparent button {
    width: 100%;
  }
}


/* Footer section  */

.footer {
  background: #001974;
  color: #fff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

/* Logo */
.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

/* Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* List */
.footer-list {
  list-style: none;
  padding: 0;
}

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

.footer-list a {
  color: #e9e9e9;
  font-size: 14px;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social img {
  width: 45px;
  height: 45px;
  padding: 8px;
  cursor: pointer;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.20);
}

.footer-links a {
  margin-left: 25px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* testimonial section */
/* ===========================
   TESTIMONIAL SECTION
=========================== */
.testimonial-section {
  /* background: linear-gradient(180deg, #003d9f 0%, #002d92 100%); */
    background: linear-gradient(135deg, #003d9f 0%, #002d92 50%, #001a4d 100%);

  padding: 100px 0;
}

/* Heading */
.testimonial-heading {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-title {
    font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;

}

.testimonial-subtitle {
    font-family: 'thetravelista', cursive;
  font-size: 48px;
  color: #ffffff;
  font-weight: 400;
  font-style: italic;
  display: block;

}

/* ===========================
   CAROUSEL CONTAINER
=========================== */
.testimonial-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

/* Slide */
.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.4s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   CARD STYLE
=========================== */
.testimonial-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.rating {
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #ffb400;
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.reviewer-location {
  font-size: 14px;
  color: #666;
}

/* ===========================
   BUTTONS (PREV/NEXT)
=========================== */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 10;
}

.carousel-nav svg {
  width: 25px;
  height: 20px;
}

.carousel-nav:hover {
  background: #062289;
  color: #fff;
}

/* Position */
.carousel-nav.prev {
  left: -50px;
}

.carousel-nav.next {
  right: -50px;
}

/* ===========================
   PAGINATION DOTS
=========================== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.indicator-dot.active {
  background: #ff6600;
  transform: scale(1.2);
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .carousel-nav.prev {
    top: 75%;
    left: 5px;
  }

  .carousel-nav.next {
    top: 75%;
    right: 5px;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .review-text {
    font-size: 15px;
  }

  .carousel-nav {
    padding: 9px;
  }
}




/* explore uae */
  .uae-hero {
    height: 100vh;
    width: 100%;
    background: url("../img/background/DUBAI\ MAIN\ IMAGE.png") no-repeat center center/cover;
    position: relative;
  }
  .uaeHeroButton {
    margin-top: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    color: #062289;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 400;
  }
  /* Back Button */
  .top .back-btn{
    position: absolute;
    top: 25px;
    left: 25px;
    transition: 0.2s;
    z-index: 10;
  }

  .back-btn:hover {
    transform: scale(1.1);
    transition: 0.3;
  }

  /* Title Center Left */
  .uae-hero .title-box {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }
  
  .uae-hero .title-box h1 {
    font-weight: lighter;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .uae-hero .title-box h2 {
    font-size: 58px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 1px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .uae-hero .title-box h1 { font-size: 40px; }
    .uae-hero .title-box h2 { font-size: 32px; }
    .uae-hero .title-box { left: 30px; }
  }

  /* why-section */

  .why-section {
    padding: 60px 0;
  }
  .why-section .section-title{
    color: #062289;
    font-weight: 400;
    font-size: 45px;
  }
  .why-section img{
    max-width: 250px;
    margin-bottom: 15px;
  }
  .why-section .section-text {
    font-size: 22px;
    color: #000000;
  }

  /* tour section  */
  .tour-section {
    position: relative;
    padding: 30px 0;
    width: 95%;
    margin: 0 auto;
  }
  .tour-section .section-title{
    color: #062289;
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 40px;
    background-image: url("../img/icons/Vector\ 24.png");
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .tour-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  position: relative;
  margin: 15px 0;
}

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

.tour-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  color: #FF7A00;
  border: 1px solid #ffe0c2;
  align-items: center;
}
.tour-badge img {
  width: 16px;
  margin-right: 6px;  
}

.tour-content {
  padding: 15px;
}

.tour-title {
  font-size: 17px;
  font-weight: bold;
  color: #062289;
  /* min-height: 48px; */
}

.rating {
  font-size: 15px;
  font-weight: 600;
  color: #ff7a00;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.rating img{
  width: 22px;
  margin: 0 3px;
}

.rating span {
  color: #062289;
  margin-left: 5px;
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.price-label {
  margin: 0;
  font-size: 13px;
  color: #062289;
}

.price {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #062289;
}

.uae-cta-section{
  background-color: #062289;
  min-height: 50vh;
  text-align: center;
  padding: 30px 0;
}
.uae-cta-section .title{
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
}
.uae-cta-section button{
  background-color: #1D43CE;
  padding: 15px 50px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  font-weight: 400;
}
.uae-cta2-section{
  background-color: #ffffff;
  min-height: 70vh;
  text-align: center;
  padding: 30px 0;
  background-image: url('../img/background/uae-cta2-bg.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 200px;
  background-position-x: 30px;
}
.uae-cta2-section .title{
  color: #062289;
  font-size: 40px;
  font-weight: 400;
}
.uae-cta2-section button{
  background-color: #ffffff;
  padding: 15px 50px;
  border: 3px solid #062289;
  border-radius: 30px;
  color: #062289;
  font-size: 18px;  
  cursor: pointer;
  font-weight: 400;
}



  /* place-details-section-bg */

  .place-details-section-bg{
    padding: 30px;
    background-color: #062289;
    color: #fff;
    display: flex;
    justify-content: space-around;
  }
  .place-details-section-button{
    background-color: #fff;
    color: #FF6600;
    border-radius: 30px;
    padding: 10px 50px;
  }
  
  .explore .title{
    font-weight: 400;
  }

  /* visa page */

  .visa-hero{
    /* min-height: 100vh; */
    /* max-height: 100vh; */
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
  }
  .top .visa-logo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    opacity: 0.5;
    width: 130px;
  }
  .visa-hero .blueBg {
    background-color: #062289;
    color: #ffffff;
  }

  .visa-destinations .title{
    font-weight: 400;
    font-size: 40px;
    padding: 30px 0;
  }
  .visa-destinations .subTitle{
    font-size: 28px;
    color: #062289;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .visa-cta{
  background-color: #062289;
  min-height: 70vh;
  text-align: center;
  padding: 30px 0;
  background-image: url('../img/need-instant-img.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 200px;
  background-position-x: 30px;
}
.visa-cta .title{
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
}
.visa-cta button{
  background-color: #062289;
  padding: 15px 50px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;  
  cursor: pointer;
  font-weight: 400;
}
.visa-more-hero{
  background-color: #081D53;
  min-height: 100vh;
  width: 100%;
}
.visa-more-hero .title{
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  padding-top: 35px;
}
.visa-more-hero button{
  background-color: transparent;
  padding: 15px 50px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;  
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .visa-hero .blueBg {
    padding: 40px 20px;
  }
  
}

/* =============== BLOG PAGE STYLES =============== */

/* Blog Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, #002d92 0%, #003d9f 100%);
  min-height: 40vh;
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 0;
}

.blog-hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: 0;
}

.blog-hero-section > .container {
  position: relative;
  z-index: 1;
}

.blog-hero-section h1 {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.blog-hero-section .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.6;
}

/* Blog Search Section */
.blog-search-section {
  background-color: #ffffff;
  padding: 50px 20px;
}

/* Search Bar */
.search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.blog-search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f8f9fa;
}

.blog-search-input:focus {
  outline: none;
  border-color: #FF6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
  background-color: #ffffff;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

/* Filter Categories */
.filter-categories {
  gap: 12px;
  padding: 0 10px;
}

.filter-btn {
  padding: 8px 24px;
  border: 2px solid #ddd;
  background-color: #ffffff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.filter-btn:hover {
  border-color: #FF6600;
  color: #FF6600;
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #FF6600;
  border-color: #FF6600;
  color: #ffffff;
}

/* Featured Blog Card */
.featured-blog-card {
  background: linear-gradient(to right, rgba(0, 45, 146, 0.05), rgba(255, 102, 0, 0.05));
  border: 1px solid rgba(0, 45, 146, 0.1);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-blog-card:hover {
  box-shadow: 0 16px 48px rgba(0, 45, 146, 0.15);
  transform: translateY(-2px);
}

.featured-blog-card img {
  border-radius: 8px;
  object-fit: cover;
  height: 350px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-blog-card:hover img {
  transform: scale(1.03);
}

.featured-blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.featured-blog-card h2 {
  color: #002d92;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

.featured-blog-card p {
  line-height: 1.7;
}

/* Blog Card Grid */
.blog-post-item {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-item.show {
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 45, 146, 0.15);
}

/* Blog Image Wrapper */
.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  background-color: #f0f0f0;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.08);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-badge {
  background: rgba(0, 45, 146, 0.8) !important;
}

.visa-badge {
  background: rgba(255, 102, 0, 0.8) !important;
}

.tips-badge {
  background: rgba(76, 175, 80, 0.8) !important;
}

.wellness-badge {
  background: rgba(233, 30, 99, 0.8) !important;
}

.corporate-badge {
  background: rgba(63, 81, 181, 0.8) !important;
}

/* Blog Content */
.blog-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px !important;
}

.blog-meta {
  margin-bottom: 15px;
}

.badge {
  background-color: #FF6600 !important;
  font-size: 12px;
  padding: 6px 12px;
}

.blog-date {
  color: #999;
  font-size: 13px;
  font-weight: 500;
}

.blog-title {
  color: #002d92;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-title {
  color: #FF6600;
}

.blog-excerpt {
  flex-grow: 1;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Blog Footer */
.blog-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.read-time {
  font-size: 12px;
  color: #999;
}

.read-link {
  color: #FF6600;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-link:hover {
  color: #002d92;
  transform: translateX(3px);
}

/* Load More Button */
.btn-primary {
  background-color: #FF6600 !important;
  border-color: #FF6600 !important;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: #002d92 !important;
  border-color: #002d92 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 45, 146, 0.3);
}

.btn-primary.btn-lg {
  padding: 16px 50px;
  font-size: 16px;
}

/* Newsletter Section */
.blog-newsletter-section {
  background: linear-gradient(135deg, rgba(0, 45, 146, 0.05), rgba(255, 102, 0, 0.05));
  border-top: 1px solid rgba(0, 45, 146, 0.1);
  border-bottom: 1px solid rgba(0, 45, 146, 0.1);
  padding: 60px 20px;
}

.blog-newsletter-section h2 {
  color: #002d92;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.blog-newsletter-section p {
  color: #666;
  font-size: 16px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .input-group {
  box-shadow: 0 4px 16px rgba(0, 45, 146, 0.1);
}

.newsletter-form input {
  padding: 14px 20px;
  border: none;
  font-size: 16px;
  border-radius: 30px 0 0 30px;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.newsletter-form button {
  border-radius: 0 30px 30px 0;
  padding: 14px 30px;
  font-weight: 600;
  border: none;
}

/* Blog CTA Section */
.blog-cta-section {
  background: linear-gradient(135deg, #002d92 0%, #003d9f 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.blog-cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  z-index: 0;
}

.blog-cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 102, 0, 0.06);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.blog-cta-section > .container {
  position: relative;
  z-index: 1;
}

.blog-cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.blog-cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 30px;
}

.btn-light {
  background-color: #ffffff !important;
  color: #002d92 !important;
  font-weight: 600;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-light:hover {
  background-color: #FF6600 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-hero-section {
    min-height: 35vh;
    padding: 40px 20px;
  }

  .blog-hero-section h1 {
    font-size: 32px;
  }

  .featured-blog-card {
    padding: 30px;
  }

  .featured-blog-card .row {
    gap: 20px;
  }

  .featured-blog-card img {
    height: 280px;
  }

  .blog-search-section {
    padding: 40px 20px;
  }
}

@media (max-width: 992px) {
  .blog-hero-section {
    min-height: 30vh;
    padding: 30px 20px;
  }

  .blog-hero-section h1 {
    font-size: 28px;
  }

  .blog-search-section {
    padding: 30px 20px;
  }

  .filter-categories {
    justify-content: center;
    flex-wrap: wrap;
  }

  .featured-blog-card {
    padding: 24px;
  }

  .featured-blog-card img {
    height: 250px;
  }

  .featured-blog-card h2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .blog-hero-section {
    min-height: 25vh;
    padding: 25px 15px;
    margin-top: 70px;
  }

  .blog-hero-section h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .blog-hero-section .lead {
    font-size: 16px;
  }

  .featured-blog-card {
    padding: 20px;
    margin: 30px 0;
  }

  .featured-blog-card .row {
    flex-direction: column;
  }

  .featured-blog-card img {
    height: 200px;
    width: 100%;
  }

  .featured-blog-card h2 {
    font-size: 20px;
  }

  .blog-search-input {
    font-size: 14px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 12px;
  }

  .blog-card {
    margin-bottom: 20px;
  }

  .blog-image-wrapper {
    height: 180px;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-excerpt {
    font-size: 13px;
  }

  .blog-newsletter-section {
    padding: 40px 15px;
  }

  .blog-cta-section {
    padding: 50px 15px;
  }

  .blog-cta-section h2 {
    font-size: 22px;
  }

  .blog-cta-section .lead {
    font-size: 15px;
  }

  .btn-light.btn-lg {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .blog-hero-section {
    min-height: 20vh;
    padding: 20px 15px;
    margin-top: 60px;
  }

  .blog-hero-section h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .blog-hero-section .lead {
    font-size: 14px;
  }

  .search-container {
    margin: 0 -15px;
    padding: 0 15px;
  }

  .blog-search-input {
    font-size: 13px;
    padding: 10px 35px 10px 14px;
  }

  .filter-categories {
    gap: 8px;
    margin: -15px -5px;
    padding: 0 5px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .featured-blog-card {
    padding: 16px;
    margin: 20px -15px;
    border-radius: 8px;
  }

  .featured-blog-card h2 {
    font-size: 18px;
    margin: 15px 0;
  }

  .featured-blog-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .featured-blog-card img {
    height: 150px;
    border-radius: 6px;
  }

  .blog-image-wrapper {
    height: 150px;
  }

  .category-badge {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 5px 10px;
  }

  .blog-content {
    padding: 20px !important;
  }

  .blog-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .blog-excerpt {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .blog-footer {
    font-size: 11px;
    padding-top: 10px;
  }

  .blog-newsletter-section {
    padding: 30px 15px;
  }

  .blog-newsletter-section h2 {
    font-size: 20px;
  }

  .blog-newsletter-section p {
    font-size: 14px;
  }

  .newsletter-form input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .newsletter-form button {
    padding: 12px 20px;
    font-size: 13px;
  }

  .blog-cta-section {
    padding: 40px 15px;
  }

  .blog-cta-section h2 {
    font-size: 18px;
  }

  .blog-cta-section .lead {
    font-size: 13px;
  }

  .btn-light.btn-lg {
    padding: 11px 25px;
    font-size: 13px;
  }
}

.place-details-section h1{
  font-family: 'Poppins', sans-serif;
  color: #081D53;
}
.place-details-section span {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;      
  font-style: italic;  
  color: #1241B9;
}
.place-details-section-bg h3{
  font-family: 'Phetsarath', sans-serif;
}
.place-details-section-bg ul li{
  font-family: 'Phetsarath', sans-serif;
  font-weight: 300;    
}
.place-details-section-bg h1{
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 476px) {
  .flags-arc {
    left: 93.5% !important;
    transform: translateX(93%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
  .active-flag{
    padding-left: 70px !important; 
    padding-right: 20px !important;
  }
 }
@media (max-width: 576px) {
  .hero-content .banner-small-text{
    padding-top: 100px;
    text-align: center;
    font-size: 24px;
  }
  .discover-content-area{
    padding-top: 60px;
    text-align: center;

  }
  .who-we-are-section{
    padding-bottom: 20px;
  }
  .journey-map-top{
    z-index: -1;
  }
  .journey-left {
    height: 400px;
  }
  .place-details-section-bg{
    margin-top: 30px;
  }
  .place-details-section-bg{
    margin-top: 30px;
  }
  .place-details-section-bg{
    flex-direction: column;
    
  }
  .place-details-section-bg ul{
    margin-bottom: 30px;    
  }
  .flags-arc {
    left: 87.5% ;
    transform: translateX(90%) ;
    width: 20% ;
    top: -12%;
    height: 130px;
  }
  .banner-text{
    font-size: 18px;
  }
  .arc-flag {
    width: 34px;
    height: 22px;
  }
  .arc-flag.active {
    width: 48px;
    height: 30px;
  }
  .active-flag{
    padding-left: 90px; 
    padding-right: 40px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .hero-content .banner-small-text{
    padding-top: 100px;
    text-align: center;
  }
  .discover-content-area{
    padding-top: 60px;
    text-align: center;
  }
  .who-we-are-section{
    padding-bottom: 20px;
  }
  .journey-map-top{
    z-index: -1;
  }
  .journey-left {
    height: 400px;
  }
  .place-details-section-bg{
    margin-top: 30px;
  }
  .place-details-section-bg{
    flex-direction: column;
    
  }
  .place-details-section-bg ul{
    margin-bottom: 30px;    
  }
  .flags-arc {
    left: 80.5% !important;
    transform: translateX(85%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
  .banner-text{
    font-size: 22px;
  }
  .arc-flag {
    width: 40px;
    height: 28px;
  }
  .arc-flag.active {
    width: 58px;
    height: 38px;
  }
  .active-flag{
    padding-left: 90px; 
    padding-right: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .banner-small-text{
    padding-top: 150px;
  }
  .discover-content-area{
    padding-top: 60px;

  }
  .place-details-section-bg{
    margin-top: 30px;
  }
  .flags-arc {
    left: 73.5% !important;
    transform: translateX(76%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
  .banner-text{
    font-size: 28px;
  }
  .arc-flag {
    width: 46px;
    height: 34px;
    /* padding-left: 40px;
    padding-right: 40px; */
  }
  .active-flag{
    padding-left: 120px; 
    padding-right: 20px;
  }
  .arc-flag.active {
    width: 64px;
    height: 44px;
  }
  .active-flag{
    padding-left: 90px; 
    padding-right: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content .banner-small-text{
    padding-top: 200px;
  }
  .flags-arc {
    left: 74.5%;        
    transform: translateX(60%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
   .active-flag{
    padding-left: 140px;
    padding-right: 110px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content .banner-small-text{
    padding-top: 200px;
  }
  .flags-arc {
    left: 74.5%;        
    transform: translateX(50%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
   .active-flag{
    padding-left: 160px;
    padding-right: 110px;
  }

}
@media (min-width: 1400px) and (max-width: 1800px) {
.flags-arc {
    left: 60.5%;        
    transform: translateX(80%) !important;
    width: 20% !important;
    top: -12%;
    height: 130px;
  }
   .active-flag{
    padding-left: 160px;
    padding-right: 110px;
  }
}

/* Full-width background image section */
.modern-explore-dubai {
  width: 100%;
  padding: 120px 0;
  background: url("../img/background/dubaiBg.jpg")
              center/cover no-repeat;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.modern-explore-dubai::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

/* Glass Card */
.explore-card {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: auto;
  padding: 40px 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease-out forwards;
}

/* Text Styling */
.explore-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.explore-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Button */
.explore-btn {
  background: linear-gradient(90deg, #ff6600, #062289);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-btn:hover {
  opacity: 0.85;
}

/* Fade Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .explore-title {
    font-size: 32px;
  }
  .explore-text {
    font-size: 16px;
  }
}
