/*

TemplateMo 580 Woox Travel

https://templatemo.com/tm-580-woox-travel

*/
/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  max-width: 100%; /* Ensure body doesn't exceed viewport */
}

a {
	color: #22b3c1;
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #2a2a2a;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #afafaf;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Professional Payment Methods Styling
--------------------------------------------- 
*/
.payment-method.disabled {
  /* opacity: 0.4; */
  cursor: not-allowed;
  position: relative;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

.payment-method.disabled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(200,200,200,0.6) 100%);
  border-radius: 8px;
  z-index: 1;
}

.payment-method.disabled::after {
  /* content: '✕'; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff4444;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method.active {
  background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
  color: #fff;
  border: 2px solid #22b3c1;
  box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.payment-method.active i {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.payment-method.active:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(34, 179, 193, 0.4);
}

.payment-method.disabled:hover {
  /* opacity: 0.3; */
  transform: scale(0.98);
}

/* Enhanced payment method container */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-method {
  position: relative;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  background: #f8f9fa;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.payment-method i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-method {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .payment-method i {
    font-size: 16px;
  }
  
  .payment-method.disabled::after {
    font-size: 14px;
    width: 18px;
    height: 18px;
  }
}

/* 
---------------------------------------------
Professional Footer Styling
--------------------------------------------- 
*/
footer {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  /* padding: 30px 0;
  margin-top: 50px; */
  /* border-top: 3px solid #22b3c1; */
}

footer p {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

footer p a {
  color: #22b3c1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

footer p a:hover {
  color: #ffffff;
  text-decoration: none;
}

footer p a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #22b3c1;
  transition: width 0.3s ease;
}

footer p a:hover::after {
  width: 100%;
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    /* padding: 25px 0;
    margin-top: 30px; */
  }
  
  footer p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  footer {
    /* padding: 20px 0;
    margin-top: 20px; */
  }
  
  footer p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #22b3c1;
  color: #fff;
}

::-moz-selection {
  background: #22b3c1;
  color: #fff;
}

.text-button a {
  font-size: 14px;
  color: #22b3c1;
  font-weight: 500;
  transition: all .3s;
}

.text-button a i {
  margin-left: 5px;
  transition: all .3s;
}

.text-button a:hover i {
  margin-left: 10px;
}

.border-button a  , .about-me-action a{
  font-size: 14px;
  color: #22b3c1;
  background-color: transparent;
  border: 1px solid #22b3c1;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.border-button a:hover , .about-me-action a:hover {
  background-color: #22b3c1 !important;
  color: #fff;
}

.main-button a {
  font-size: 14px;
  color: #fff;
  background-color: #22b3c1;
  border: 1px solid #22b3c1;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: #fff;
  color: #22b3c1;
  border: 1px solid #fff;
}

/* section {
  margin-top: 120px;
} */

.section-heading {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 80px;
  text-align: left;
}

.section-heading h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  text-transform: none !important;
  color: #2a2a2a;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #111;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #22b3c1;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #22b3c1;
  border-radius: 50%;
}



/* Background Header Styles */
.background-header {
  background-color: #22b3c1 !important;
  height: 70px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.background-header .main-nav {
  padding: 0px;
  background-color: transparent;
}

.background-header .main-nav .logo img {
  width: 260px;
  max-height: 65px;
  transform: scale(3.5);
  transform-origin: center center;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff;
  opacity: 1;
}

/* Base Header Styles */
.header-area {
  background: linear-gradient(135deg, #324c60 0%, #1a9ba8 100%);
  position: sticky;
  top: 0;
  height: auto;
  min-height: 80px;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-area .main-nav {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 30px;
  height: 100%;
  /* position: relative; */
}

.header-area .container {
  height: 100%;
}

.header-area .row {
  height: 100%;
}

.header-area .col-12 {
  height: 100%;
}

.background-header .main-nav {
  padding: 0px;
  background-color: transparent;
}

/* Logo Responsive Design */
.header-area .main-nav .logo {
  /* flex-basis: 35%; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-width: 200px;
}

.header-area .main-nav .logo img {
  /* width: 280px; */
  height: auto;
  object-fit: contain;
  margin: 0;
  transition: all 0.3s ease;
  max-height: 50px;
  transform: scale(1.3);
  transform-origin: center center;
}

.background-header .main-nav .logo img {
  width: 260px;
    max-height: 50px;
  transform: scale(1.3);
    transform-origin: center center;
  }
  
/* Navigation Responsive Design */
.header-area .main-nav .nav {
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  margin-top: 15px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  list-style: none;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: transparent;
  padding: 8px 15px;
  position: relative;
  border-radius: 18px;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.header-area .main-nav .nav li:hover a {
  opacity: 0.8;
}

.header-area .main-nav .nav li a.active::after {
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  content: '';
  left: 15px;
  top: 2px;
}

.header-area .main-nav .nav li a.active {
  color: #fff !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 8px 15px;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #fff;
  opacity: 1;
}

/* Widgets Container */
.header-widgets {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Menu Trigger */
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: none;
  position: relative;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  margin-left: 15px;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-area .main-nav .menu-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-area .main-nav .menu-trigger.active {
  background: rgba(255, 255, 255, 0.3);
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
  width: 75%;
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .header-area .main-nav {
    padding: 0px 50px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 320px; */
    transform: scale(1.3);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 300px;
    transform: scale(1.3);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav li a {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .header-area .main-nav .logo img {
    /* width: 280px; */
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 260px;
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav li {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .header-area .main-nav .nav li a {
    font-size: 15px;
    padding: 8px 15px;
  }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .header-area .main-nav {
    padding: 0px 20px;
  }
  
  .header-area .main-nav .logo {
    /* flex-basis: 30%; */
    min-width: 180px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 240px; */
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 220px;
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav {
    flex-basis: 70%;
    gap: 8px;
  }
  
  .header-area .main-nav .nav li {
    padding-left: 6px;
    padding-right: 6px;
  }
  
  .header-area .main-nav .nav li a {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .header-widgets {
    gap: 12px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .header-area {
    height: 70px;
  }
  
  .header-area .main-nav {
    padding: 0px 15px;
  }
  
  .header-area .main-nav .logo {
    /* flex-basis: 25%; */
    min-width: 150px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 200px; */
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 180px;
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav {
    flex-basis: 75%;
    gap: 6px;
  }
  
  .header-area .main-nav .nav li {
    padding-left: 4px;
    padding-right: 4px;
  }
  
  .header-area .main-nav .nav li a {
    font-size: 13px;
    padding: 5px 10px;
  }
  
  .header-widgets {
    gap: 10px;
  }
  
  /* Hide some widgets on smaller tablets */
  .time-widget {
    display: none;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .header-area {
    height: 60px;
  }
  
  .header-area .main-nav {
    padding: 0px 10px;
  }
  
  .header-area .main-nav .logo {
    /* flex-basis: 20%; */
    min-width: 120px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 180px; */
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 160px;
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav {
    display: none;
  }
  
  .header-area .main-nav .menu-trigger {
    display: block;
  }
  
  .header-widgets {
    gap: 8px;
  }
  
  /* Keep all widgets visible */
  .weather-widget {
    display: flex;
  }
  
  .time-widget {
    display: flex;
  }
}

/* Mobile Small (under 576px) */
@media (max-width: 575px) {
  .header-area {
    height: 55px;
  }
  
  .header-area .main-nav {
    padding: 0px 8px;
  }
  
  .header-area .main-nav .logo {
    /* flex-basis: 15%; */
    min-width: 100px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 150px; */
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .background-header .main-nav .logo img {
    width: 130px;
    transform: scale(1.2);
    max-height: 50px;
  }
  
  .header-area .main-nav .nav {
    display: none;
  }
  
  .header-area .main-nav .menu-trigger {
    display: block;
    width: 28px;
    height: 35px;
  }
  
  .header-area .main-nav .menu-trigger span,
  .header-area .main-nav .menu-trigger span:before,
  .header-area .main-nav .menu-trigger span:after {
    width: 25px;
  }
  
  .header-widgets {
    gap: 5px;
  }
  
  /* Keep all widgets visible on small screens */
  .weather-widget,
  .time-widget,
  .language-widget {
    display: flex;
  }
}

/* ===== MOBILE MENU STYLES ===== */
@media (max-width: 991px) {
  .header-area .main-nav .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #22b3c1;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .header-area .main-nav .nav.show,
  .header-area .main-nav .nav.active {
    display: flex !important;
  }
  
  .header-area .main-nav .nav li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
  }
  
  .header-area .main-nav .nav li:last-child {
    border-bottom: none;
  }
  
  .header-area .main-nav .nav li a {
    display: block;
    padding: 15px 20px;
    text-align: left;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    opacity: 1;
    transform: translateX(5px);
  }
  
  .header-area .main-nav .nav li a.active::after {
    display: none;
  }
  
  /* Ensure menu trigger is visible and properly positioned */
  .header-area .main-nav .menu-trigger {
    display: block !important;
    position: relative;
    margin-left: 15px;
    z-index: 1001;
  }
}

/* ===== WIDGET RESPONSIVE ADJUSTMENTS ===== */

/* Adjust widget spacing for different screen sizes */
@media (max-width: 1199px) {
  .language-widget,
  .weather-widget,
  .time-widget {
    margin-left: 10px;
    margin-top: 8px;
  }
}

@media (max-width: 991px) {
  .language-widget,
  .weather-widget,
  .time-widget {
    margin-left: 8px;
    margin-top: 6px;
  }
}

@media (max-width: 767px) {
  .language-widget,
  .weather-widget,
  .time-widget {
    margin-left: 5px;
    margin-top: 5px;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
  .header-area .main-nav .nav li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .header-area .main-nav .menu-trigger {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  .header-area .main-nav .logo img,
  .header-area .main-nav .nav li a,
  .header-area .main-nav .menu-trigger span,
  .header-area .main-nav .menu-trigger span:before,
  .header-area .main-nav .menu-trigger span:after {
    transition: none;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .header-area .main-nav .nav li a {
    border: 1px solid #fff;
  }
  
  .header-area .main-nav .menu-trigger span,
  .header-area .main-nav .menu-trigger span:before,
  .header-area .main-nav .menu-trigger span:after {
  background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
}

/* Language Widget Styles */
.language-widget {
  margin-top: 12px;
  margin-left: 20px;
  position: relative;
  z-index: 1001;
}

.language-selector {
  position: relative;
  cursor: pointer;
}

.current-language {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  padding: 12px 18px;
  border-radius: 30px;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(34, 179, 193, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 25px rgba(34, 179, 193, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  height: 52px;
  position: relative;
  overflow: hidden;
}

.current-language::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 179, 193, 0.1), transparent);
  transition: left 0.5s ease;
}

.current-language:hover::before {
  left: 100%;
}

.current-language:hover,
.current-language.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
  border-color: rgba(34, 179, 193, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 179, 193, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #22b3c1;
}

.current-language .flag-icon {
  width: 24px;
  height: 18px;
  margin-right: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.current-language:hover .flag-icon {
  transform: scale(1.05);
}

.current-language span {
  margin-right: 12px;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

.current-language i {
  font-size: 12px;
  transition: transform 0.3s ease;
  opacity: 0.7;
  color: #22b3c1;
}

.language-selector:hover .current-language i,
.language-selector.active .current-language i {
  transform: rotate(180deg);
  opacity: 1;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(34, 179, 193, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 12px;
  border: 1px solid rgba(34, 179, 193, 0.2);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.language-selector:hover .language-dropdown,
.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(34, 179, 193, 0.1);
  position: relative;
  overflow: hidden;
}

.language-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 179, 193, 0.1), transparent);
  transition: left 0.5s ease;
}

.language-option:hover::before {
  left: 100%;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: linear-gradient(135deg, rgba(34, 179, 193, 0.95) 0%, rgba(26, 138, 148, 0.95) 100%);
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
}

.language-option:hover .flag-icon {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-option:hover span {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-option .flag-icon {
  width: 26px;
  height: 20px;
  margin-right: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.language-option span {
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive Design for Language Widget */
@media (max-width: 1200px) {
  .language-widget {
    margin-left: 15px;
  }
  
  .current-language {
    min-width: 110px;
    padding: 10px 16px;
  }
  
  .language-dropdown {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .language-widget {
    margin-left: 12px;
    margin-top: 10px;
  }
  
  .current-language {
    min-width: 100px;
    padding: 8px 14px;
    height: 48px;
    font-size: 13px;
  }
  
  .current-language .flag-icon {
    width: 22px;
    height: 16px;
    margin-right: 10px;
  }
  
  .current-language span {
    margin-right: 10px;
  }
  
  .language-dropdown {
    min-width: 180px;
    right: -10px;
  }
  
  .language-option {
    padding: 14px 18px;
  }
  
  .language-option .flag-icon {
    width: 24px;
    height: 18px;
    margin-right: 12px;
  }
  
  .language-option span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .language-widget {
    margin-left: 8px;
    margin-top: 8px;
  }
  
  .current-language {
    min-width: 90px;
    padding: 6px 12px;
    height: 44px;
    font-size: 12px;
    border-radius: 25px;
  }
  
  .current-language .flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
  }
  
  .current-language span {
    margin-right: 8px;
  }
  
  .current-language i {
    font-size: 11px;
  }
  
  .language-dropdown {
    min-width: 160px;
    right: -15px;
    margin-top: 8px;
    border-radius: 15px;
  }
  
  .language-option {
    padding: 12px 16px;
  }
  
  .language-option .flag-icon {
    width: 22px;
    height: 16px;
    margin-right: 10px;
  }
  
  .language-option span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .language-widget {
    margin-left: 5px;
    margin-top: 5px;
  }
  
  .current-language {
    min-width: 80px;
    padding: 5px 10px;
    height: 40px;
    font-size: 11px;
    border-radius: 20px;
  }
  
  .current-language .flag-icon {
    width: 18px;
    height: 13px;
    margin-right: 6px;
  }
  
  .current-language span {
    margin-right: 6px;
  }
  
  .current-language i {
    font-size: 10px;
  }
  
  .language-dropdown {
    min-width: 140px;
    right: -20px;
    margin-top: 6px;
    border-radius: 12px;
  }
  
  .language-option {
    padding: 10px 14px;
  }
  
  .language-option .flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
  }
  
  .language-option span {
    font-size: 11px;
  }
}

/* Touch Device Specific Styles */
@media (hover: none) and (pointer: coarse) {
  .language-selector {
    touch-action: manipulation;
  }
  
  .current-language {
    min-height: 44px; /* Minimum touch target size */
  }
  
  .language-option {
    min-height: 44px; /* Minimum touch target size */
    padding: 14px 18px;
  }
  
  /* Show dropdown on tap instead of hover */
  .language-dropdown {
    display: none;
  }
  
  .language-selector.active .language-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  
  /* Remove hover effects on touch devices */
  .current-language:hover,
  .language-option:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    transform: none;
  }
  
  .language-option:hover {
    background: linear-gradient(135deg, rgba(34, 179, 193, 0.95) 0%, rgba(26, 138, 148, 0.95) 100%);
    color: #fff;
  }
  
  .language-option:hover span {
    color: #fff;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .current-language .flag-icon,
  .language-option .flag-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .current-language {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(35, 35, 35, 0.95) 100%);
    color: #fff;
    border-color: rgba(34, 179, 193, 0.4);
    box-shadow: 0 6px 25px rgba(34, 179, 193, 0.2), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .current-language:hover,
  .current-language.active {
    background: linear-gradient(135deg, rgba(50, 50, 50, 1) 0%, rgba(40, 40, 40, 1) 100%);
    color: #22b3c1;
  }
  
  .language-dropdown {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.98) 0%, rgba(35, 35, 35, 0.98) 100%);
    border-color: rgba(34, 179, 193, 0.3);
    box-shadow: 0 12px 40px rgba(34, 179, 193, 0.25), 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .language-option {
    border-bottom-color: rgba(34, 179, 193, 0.2);
  }
  
  .language-option span {
    color: #fff;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .current-language,
  .language-dropdown {
    border: 2px solid #22b3c1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  .current-language span,
  .current-language i,
  .language-option span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }
}

/* Weather Widget Styles */
.weather-widget {
  margin-left: 15px;
  margin-top: 12px;
  position: relative;
  z-index: 1001;
}

.weather-info {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(34, 179, 193, 0.95) 0%, rgba(26, 138, 148, 0.95) 100%);
  padding: 12px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 25px rgba(34, 179, 193, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  height: 52px;
  position: relative;
  overflow: hidden;
}

.weather-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.weather-info:hover::before {
  left: 100%;
}

.weather-info:hover {
  background: linear-gradient(135deg, rgba(34, 179, 193, 1) 0%, rgba(26, 138, 148, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 179, 193, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.weather-location {
  display: flex;
  align-items: center;
  margin-right: 14px;
  position: relative;
  z-index: 1;
}

.weather-location i {
  margin-right: 6px;
  font-size: 13px;
  color: #fff;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.weather-location .city {
  font-weight: 600;
  font-size: 13px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.weather-details {
  display: flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.weather-icon {
  margin-right: 8px;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.temperature {
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Time Widget Styles */
.time-widget {
  margin-left: 15px;
  margin-top: 12px;
  position: relative;
  z-index: 1001;
}

.time-info {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
  padding: 12px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 25px rgba(52, 73, 94, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  height: 52px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.time-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.time-info:hover::before {
  left: 100%;
}

.time-info:hover {
  background: linear-gradient(135deg, rgba(52, 73, 94, 1) 0%, rgba(44, 62, 80, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(52, 73, 94, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.time-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.time-zone:last-child {
  margin-bottom: 0;
}

.time-label {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.time-value {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Segoe UI', 'Roboto', monospace;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Responsive Design for Widgets */
@media (max-width: 1200px) {
  .weather-info {
    min-width: 140px;
    padding: 10px 16px;
  }
  
  .time-info {
    min-width: 120px;
    padding: 10px 16px;
  }
}

@media (max-width: 992px) {
  .weather-widget,
  .time-widget {
    margin-left: 10px;
    margin-top: 10px;
  }
  
  .weather-info {
    min-width: 130px;
    padding: 8px 14px;
    height: 48px;
    font-size: 13px;
  }
  
  .time-info {
    min-width: 110px;
    padding: 8px 14px;
    height: 48px;
    font-size: 12px;
  }
  
  .weather-location .city {
    font-size: 12px;
  }
  
  .temperature {
    font-size: 14px;
  }
  
  .time-label {
    font-size: 10px;
  }
  
  .time-value {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .weather-widget,
  .time-widget {
    margin-left: 8px;
    margin-top: 8px;
  }
  
  .weather-info {
    min-width: 120px;
    padding: 6px 12px;
    height: 44px;
    font-size: 12px;
    border-radius: 25px;
  }
  
  .time-info {
    min-width: 100px;
    padding: 6px 12px;
    height: 44px;
    font-size: 11px;
    border-radius: 25px;
  }
  
  .weather-location {
    margin-right: 10px;
  }
  
  .weather-location i {
    font-size: 11px;
    margin-right: 4px;
  }
  
  .weather-location .city {
    font-size: 11px;
  }
  
  .weather-details {
    padding-left: 10px;
  }
  
  .weather-icon {
    font-size: 14px;
    margin-right: 6px;
  }
  
  .temperature {
    font-size: 13px;
  }
  
  .time-label {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  
  .time-value {
    font-size: 11px;
    margin-left: 8px;
  }
}

@media (max-width: 576px) {
  .weather-widget,
  .time-widget {
    margin-left: 5px;
    margin-top: 5px;
  }
  
  .weather-info {
    min-width: 110px;
    padding: 5px 10px;
    height: 40px;
    font-size: 11px;
    border-radius: 20px;
  }
  
  .time-info {
    min-width: 90px;
    padding: 5px 10px;
    height: 40px;
    font-size: 10px;
    border-radius: 20px;
  }
  
  .weather-location {
    margin-right: 8px;
  }
  
  .weather-location i {
    font-size: 10px;
    margin-right: 3px;
  }
  
  .weather-location .city {
    font-size: 10px;
  }
  
  .weather-details {
    padding-left: 8px;
  }
  
  .weather-icon {
    font-size: 12px;
    margin-right: 4px;
  }
  
  .temperature {
    font-size: 12px;
  }
  
  .time-label {
    font-size: 8px;
    letter-spacing: 0.2px;
  }
  
  .time-value {
    font-size: 10px;
    margin-left: 6px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .weather-info {
    background: linear-gradient(135deg, rgba(34, 179, 193, 0.9) 0%, rgba(26, 138, 148, 0.9) 100%);
    box-shadow: 0 6px 25px rgba(34, 179, 193, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .time-info {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    box-shadow: 0 6px 25px rgba(52, 73, 94, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .weather-info,
  .time-info {
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  .weather-location i,
  .weather-icon,
  .temperature,
  .time-label,
  .time-value {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }
}

.header-area.header-sticky {
  min-height: 70px;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area {
    top: 0;
  }
  .header-area .main-nav {
    background-color: transparent;
    border-radius: 0px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 15px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #22b3c1!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #22b3c1;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area.header-sticky .nav {
    margin-top: 85px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #1e1e1e !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #f7f7f7 !important;
    color: #22b3c1!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

#section-1 {
  margin-top: 0px;
  height: 100vh;
  min-height: 700px;
  color: #fff;
  background-color: #222;
  position: relative;
}
#section-1 .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
#section-1 .content-slider input {
  display: none;
}
#section-1 .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}
#section-1 .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}
#section-1 .more-info {
  margin-top: 60px;
  background-color: #fff;
  padding: 30px 60px;
  border-radius: 61px;
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 130px;
  display: inline-block;
}
#section-1 .more-info i {
  color: #22b3c1;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 58px;
  border: 1px solid #22b3c1;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}
#section-1 .more-info h4 {
  text-align: left;
  font-size: 20px;
  color: #22b3c1;
  font-weight: 700;
  line-height: 28px;
}
#section-1 .more-info h4 span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 400;
}
#section-1 .main-button {
  margin-top: 8px;
  text-align: right;
}
#section-1 .main-button a:hover {
  background-color: #22b3c1;
  border-color: #22b3c1;
  color: #fff;
  opacity: 0.8;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper {
  height: 100%;
  box-sizing: border-box;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .main-caption {
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
#section-1 .content-slider .slider .banner .banner-inner-wrapper .learn-more-button a:hover {
  color: #22b3c1;
  border-color: #22b3c1;
  transition: 0.3s;
}
#section-1 .content-slider .slider #top-banner-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/Palmyra.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-2 {
  background: url('../images/banner-02.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-3 {
  background: url('../images/banner-03.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-4 {
  background: url('../images/banner-04.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-5 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-02.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider .slider #top-banner-6 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-01.jpg') no-repeat center center;
  background-size: cover;
}
#section-1 .content-slider nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 10;
  text-align: center;
}
#section-1 .content-slider nav .controls {
  display: block;
  width: 70%;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  color: #fff;
}
#section-1 .content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 19.5%;
  height: 3.1em;
  overflow: hidden;
  margin: 0 1em;
  padding-top: 1em;
  text-align: left;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
  color: #f6eac5;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}
#section-1 .content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #f6eac5;
  z-index: 100;
}
#section-1 .content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  background: #22b3c1;
}
#section-1 .content-slider nav .controls label span.text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  width: 100%;
}
#section-1 .content-slider nav .controls label:hover {
  color: #22b3c1;
}
#section-1 .content-slider #banner1:checked ~ .slider #top-banner-1,
#section-1 .content-slider #banner2:checked ~ .slider #top-banner-2,
#section-1 .content-slider #banner3:checked ~ .slider #top-banner-3,
#section-1 .content-slider #banner4:checked ~ .slider #top-banner-4,
#section-1 .content-slider #banner5:checked ~ .slider #top-banner-5,
#section-1 .content-slider #banner6:checked ~ .slider #top-banner-6 {
  opacity: 1;
  z-index: 1;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1),
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2),
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3),
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4),
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5),
#section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar,
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar,
#section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) .progressbar {
  background: #fff;
}
#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .progressbar-fill,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .progressbar-fill,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .progressbar-fill,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .progressbar-fill,
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .progressbar-fill,
#section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) .progressbar-fill {
  animation: progressBarFill 5s linear;
}
/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}


/* 
---------------------------------------------
Visit Country Style
--------------------------------------------- 
*/

.visit-country {
  margin-top: 120px;
}

.visit-country .side-bar-map {
  margin-left: 30px;
}

.visit-country .item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.visit-country .last-item {
  border-bottom: none;
}

.visit-country .item .image img {
  border-radius: 23px;
}

.visit-country .item .right-content h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.visit-country .item .right-content span {
  font-size: 15px;
  color: #afafaf;
  display: block;
}

.visit-country .item .right-content .main-button {
  position: absolute;
  right: 0;
  top: 0;
}

.visit-country .item .right-content .main-button a:hover {
  background-color: #22b3c1;
  border-color: #22b3c1;
  color: #fff;
  opacity: 0.8;
}

.visit-country .item .right-content p {
  margin: 18px 0px;
}

.visit-country .item .right-content ul {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0px;
}

.visit-country .item .right-content ul li {
  display: inline-block;
  width: 32%;
  color: #afafaf;
  font-size: 14px;
}

.visit-country .item .right-content ul li:nth-child(2) {
  text-align: center;
}

.visit-country .item .right-content ul li:last-child {
  text-align: right;
}

.visit-country .item .right-content ul li i {
  margin-right: 5px;
  font-size: 16px;
}

.visit-country .item .right-content .text-button {
  margin-top: 20px;
}

.visit-country ul.page-numbers {
  text-align: center;
}

.visit-country ul.page-numbers li {
  display: inline-block;
  margin: 0px 5px;
}

.visit-country ul.page-numbers li a {
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 1px solid #22b3c1;
  line-height: 44px;
  color: #22b3c1;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50%;
  transition: all .3s;
}

.visit-country ul.page-numbers li a:hover {
  background-color: #22b3c1;
  color: #fff;
}

.visit-country ul.page-numbers li.active a {
  background-color: #22b3c1;
  color: #fff;
}

.visit-country ul.page-numbers li:first-child a,
.visit-country ul.page-numbers li:last-child a {
  border: none;
}



/* 
---------------------------------------------
Call To Action Style
--------------------------------------------- 
*/
.call-to-action {
  /* margin-top: 120px; */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/footer.png);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center center;
  padding: 75px 0px;
}

.call-to-action h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.call-to-action h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.call-to-action .border-button {
  text-align: right;
  margin-top: 20px;
}

.call-to-action .border-button a {
  color: #fff;
  border-color: #fff
}

.call-to-action .border-button a:hover {
  background-color: #fff;
  color: #22b3c1;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background-color: #2d2d2df2;
  text-align: center;
  padding: 25px 0px;
}

footer p {
  color: #fff;
}

footer p a {
  color: #fff;
  font-weight: 500;
  transition: all .3s;
}

footer p a:hover {
  color: #fff;
  opacity: 0.75;
}



/* 
---------------------------------------------
About Page Style
--------------------------------------------- 
*/

.about-main-content {
  margin-top: 70px;
  background-image: url(../images/about-content-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 130px 0px 200px 0px;
}

.blur-bg {
	width: 100%;
  height: 100%;
  background: url(../images/about-content-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px) brightness(80%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.about-main-content .content {
  border-radius: 23px;
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-main-content .content h2 {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 50px;
  margin-bottom: 25px;
}

.about-main-content .content .line-dec {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 2px;
  background-color: rgba(250,250,250,0.3);
  margin: 20px auto;
}

.about-main-content .content h4 {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
}

.about-main-content .content p {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0px 15%;
}

.about-main-content .content .main-button {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.about-main-content .content .main-button a {
  background-color: #fff;
  color: #22b3c1;
  border-color: #fff;
}

.about-main-content .content .main-button a:hover {
  opacity: 0.9;
}

.cities-town .slider-content {
  min-height: 100%;
  max-height: 100%;
  position: relative;
  margin-top: -70px;
  background-color: #fff;
  border-radius: 23px;
  padding: 60px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
}

.cities-town .slider-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.cities-town .slider-content h2 em {
  font-style: normal;
  color: #22b3c1;
}

.cities-town .slider-content .item .thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.cities-town .slider-content .item .thumb h4 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 20px;
  color: #fff;
}

.cities-town .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.cities-town .owl-nav .owl-next span {
  display: none;
}

.cities-town .owl-nav .owl-next::after {
  font-family: "FontAwesome";
  content: '\f061'; 
  color: #cdcdcd;
  font-size: 20px;
  transition: all .3s;
}

.cities-town .owl-nav .owl-prev span {
  display: none;
}

.cities-town .owl-nav .owl-prev::after {
  font-family: "FontAwesome";
  content: '\f060'; 
  color: #cdcdcd;
  margin-right: 15px;
  font-size: 20px;
  transition: all .3s;
}

.cities-town .owl-nav .owl-prev:hover::after,
.cities-town .owl-nav .owl-next:hover::after {
  color: #22b3c1;
}

.weekly-offers {
  padding-bottom: 120px;
  margin-top: 120px;
  border-bottom: 1px solid #eee;
}

.weekly-offers .container-fluid {
  padding: 0px 80px;
}

.weekly-offers .item {
  margin: 0px 15px;
  position: relative;
  min-height: 420px;
}

.weekly-offers .item .thumb img {
  padding-right: 160px;
  border-radius: 23px;
}

.weekly-offers .item .thumb .text {
  position: absolute;
  background-color: #fff;
  border-radius: 23px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
  padding: 30px;
}

.weekly-offers .item .thumb .text h4 {
  font-size: 20px;
  display: inline-block;
}

.weekly-offers .item .thumb .text h6 {
  display: inline-block;
  float: right;
  text-align: right;
  font-size: 20px;
  color: #22b3c1;
}

.weekly-offers .item .thumb .text h4 span,
.weekly-offers .item .thumb .text h6 span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 400;
}

.weekly-offers .item .thumb .text ul {
  border-top: 1px solid #eee;
  margin-top: 25px;
  padding-top: 25px;
}

.weekly-offers .item .thumb .text ul li {
  color: #afafaf;
  font-size: 14px;
  margin-bottom: 10px;
}

.weekly-offers .item .thumb .text ul li:first-child {
  color: #2a2a2a;
  font-weight: 600;
}

.weekly-offers .item .thumb .text .main-button {
  margin-top: 30px;
}

.weekly-offers .item .thumb .text .main-button a:hover {
  background-color: #22b3c1;
  border-color: #22b3c1;
  color: #fff;
  opacity: 0.85;
}

.weekly-offers .owl-nav {
  text-align: center;
  margin-top: 30px;
}

.weekly-offers .owl-nav .owl-next span {
  display: none;
}

.weekly-offers .owl-nav .owl-next::after {
  font-family: "FontAwesome";
  content: '\f061'; 
  color: #22b3c1;
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid #22b3c1;
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-left: 5px;
}

.weekly-offers .owl-nav .owl-prev span {
  display: none;
}

.weekly-offers .owl-nav .owl-prev::after {
  font-family: "FontAwesome";
  content: '\f060'; 
  color: #22b3c1;
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid #22b3c1;
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-right: 5px;
}

.weekly-offers .owl-nav .owl-prev:hover::after,
.weekly-offers .owl-nav .owl-next:hover::after {
  color: #fff;
  background-color: #22b3c1;
}

.more-about {
  margin-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid #eee;
}

.more-about .left-image {
  margin-right: 60px;
}

.more-about .section-heading {
  margin-bottom: 40px;
}

.more-about .info-item {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.more-about .info-item h4 {
  font-size: 20px;
}

.more-about .info-item span {
  color: #22b3c1;
  font-size: 15px;
}

.more-about .main-button {
  margin-top: 30px;
}

.more-about .main-button a:hover {
  background-color: #22b3c1;
  border-color: #22b3c1;
  color: #fff;
  opacity: 0.85;
}

.best-locations {
  margin-top: 120px;
}

body #user-button {
  z-index: 1000;
  bottom: 1rem !important;
  right: 1rem !important;
  color: var(--user-button-text);
  transition: 1s 0s ease-out;
  -webkit-animation: slide 3s ease-out forwards;
          animation: slide 3s ease-out forwards;
}
@-webkit-keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
@keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
body #user-button .u-card {
  border-radius: 100%;
  box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow), inset 0 0 1rem -0.75rem var(--user-button-shadow);
}
body #user-button .u-main {
  cursor: pointer;
  --user-button-background:var(--user-button-main, #EC87C0);
}
body #user-button .u-main img {
  height: 100%;
  width: 100%;
}
body #user-button .u-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  transition: 0s 4s;
}
body #user-button .u-icons {
  position: relative;
  z-index: 950;
  transform: translate(-50%, -50%);
  background: var(--user-button-circle);
  box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
  border-radius: 100%;
  transition: 0.25s;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /*&:before {
     z-index:-1;
     position:absolute;
     top:0; right:0; bottom:0; left:0;
     content:'';

     backdrop-filter: blur(10px);
  }*/
}
body #user-button .u-icons a {
  color: inherit;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
body #user-button .u-icons a div {
  padding: 0.5rem;
  transition: 0s;
}
body #user-button .u-icons a[href="https://twitter.com/Osorpenke"] {
  position: relative;
}
body #user-button .u-icons a[href="https://twitter.com/Osorpenke"]:before {
  content: "Middle Click";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  white-space: pre;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in;
  background: #fffc;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
body #user-button .u-icons a[href="https://twitter.com/Osorpenke"].show:before {
  opacity: 1;
  transition: 0.25s ease-out;
}
body #user-button .u-icons a[href="https://twitter.com/Osorpenke"] div {
  color: #1da1f2;
}
body #user-button .u-icons a[href="https://codepen.io/z-"] div {
  background: black;
  color: white;
}
body #user-button .u-icons a.u-random div {
  position: relative;
  top: -1px;
  -webkit-animation: diespin 2s linear infinite;
          animation: diespin 2s linear infinite;
}
@-webkit-keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body #user-button .u-icons a.u-random:not(:hover) div {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
body #user-button .u-icons > * {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--singlecolour);
  border-radius: 100%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.25s -0.05s;
}
body #user-button .u-icons > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body #user-button .u-icons > *:hover, body #user-button .u-icons > *:focus-within {
  background: var(--hcolour);
}
body #user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
  left: 25%;
  top: 25%;
}
body #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}
body #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}
body #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}
body #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}
body #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3), body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}
body #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}
body #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}
body #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}
body #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4), body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}
body #user-button:hover .u-icons, body #user-button:focus-within .u-icons {
  width: 300% !important;
  height: 300% !important;
}

@media (prefers-color-scheme: dark) {
  body:not(.light) {
    background: #232223;
    color: white;
  }
}
body .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}
body .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: calc(100% - 0px);
  height: 400px;
}
@media screen and (max-width: 718px) {
  body .options {
    min-width: 520px;
  }
  body .options .option:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 638px) {
  body .options {
    min-width: 440px;
  }
  body .options .option:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 558px) {
  body .options {
    min-width: 360px;
  }
  body .options .option:nth-child(3) {
    display: block;
    border-radius: 15px !important;
  }
  body .options .option {
    border-radius: 15px !important;
  }
}
@media screen and (max-width: 478px) {
  body .options {
    min-width: 280px;
  }
  body .options .option:nth-child(2) {
    display: block;
    border-radius: 15px !important;
  }
}
body .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 0px 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
body .options .option {
  --defaultBackground:#22b3c1;
}
body .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
  /*&:active {
     transform:scale(0.9);
  }*/
}
body .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
body .options .option.active .label {
  bottom: 20px;
  left: 20px;
}
body .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
body .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}
body .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
body .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
body .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
body .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
body .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
body .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
body .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
body .options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
body .options .option .label .info .main {
  font-size: 20px;
  font-weight: 700;
}
body .options .option .label .info .sub {
  font-size: 14px;
  font-weight: 500;
  transition-delay: 0.1s;
}

.best-locations .main-button {
  margin-top: 60px;
}

.best-locations .main-button a:hover {
  background-color: #22b3c1;
  color: #fff;
  border-color: #22b3c1;
  opacity: 0.85;
}




/* 
---------------------------------------------
Deals Page Style
--------------------------------------------- 
*/

.page-heading {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/footer.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 260px 0px 190px 0px;
  text-align: center;
}

.page-heading h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.page-heading h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.page-heading .border-button a {
  border-color: #fff;
  color: #fff;
}

.page-heading .border-button a:hover {
  border-color: #22b3c1;
}

.search-form #search-form {
  background-color: #22b3c1;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
  padding: 35px 60px;
}

.search-form #search-form h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.search-form #search-form select {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #fff;
  border-radius: 0px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  width: 100%;
  cursor: pointer;
}

.search-form #search-form option {
  background-color: #1ea0ad;
}

.search-form #search-form button {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 8px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.search-form #search-form button:hover {
  background-color: #fff;
  color: #22b3c1;
}

#journeyTitle {
  color: #ffffff;
}

.amazing-deals {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 80px 0;
  margin-top: 0;
  position: relative;
  margin-top: 120px;
}

.amazing-deals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.amazing-deals .container {
  position: relative;
  z-index: 2;
}

.amazing-deals .section-heading {
  margin-bottom: 60px;
}

.amazing-deals .section-heading h4 {
  color: #22b3c1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amazing-deals .section-heading h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.amazing-deals .section-heading p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.amazing-deals .item .image {
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
  overflow: hidden;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.amazing-deals .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.amazing-deals .item:hover .image img {
  transform: scale(1.05);
}

.amazing-deals .item {
  background-color: white;
  border-radius: 23px;
  padding-right: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: stretch;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.amazing-deals .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amazing-deals .item span.info {
  color: #22b3c1;
  font-size: 15px;
  margin-bottom: 20px;
  display: block;
}

.amazing-deals .item h4 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 25px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.amazing-deals .item i {
  color: #777;
  margin-right: 5px;
}

.amazing-deals .item span.list {
  font-size: 15px;
  color: #afafaf;
  font-weight: 500;
}

.amazing-deals .item .content {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.amazing-deals .item p {
  padding-top: 25px;
  margin-top: 10px;
  border-top: 1px solid #ddd;
  margin-bottom: 30px;
  flex-grow: 1;
  line-height: 1.6;
}

.amazing-deals ul.page-numbers {
  text-align: center;
  margin-top: 30px;
}

.amazing-deals ul.page-numbers li {
  display: inline-block;
  margin: 0px 5px;
}

.amazing-deals ul.page-numbers li a {
  display: inline-block;
  width: 46px;
  height: 46px;
  border: 1px solid #22b3c1;
  line-height: 44px;
  color: #22b3c1;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50%;
  transition: all .3s;
}

.amazing-deals ul.page-numbers li.active a,
.amazing-deals ul.page-numbers li a:hover {
  background-color: #22b3c1;
  color: #fff;
}

.amazing-deals ul.page-numbers li:first-child a,
.amazing-deals ul.page-numbers li:last-child a {
  border: none;
}


/* 
---------------------------------------------
Reservation Page Style
--------------------------------------------- 
*/

.second-page-heading {
  background-image: url(../images/heading-bg-02.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 260px 0px 190px 0px;
  text-align: center;
}

.second-page-heading h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 25px;
}

.second-page-heading h4::after {
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: rgba(250, 250, 250, 0.3);
  content: '';
  left: 50%;
  bottom: 0;
  transform: translateX(-50px);
}

.second-page-heading h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.second-page-heading p {
  padding: 0px 15%;
  color: #fff;
  margin-bottom: 30px;
}

.second-page-heading .main-button a {
  border-color: #fff;
  color: #22b3c1;
  background-color: #fff;
}

.second-page-heading .main-button a:hover {
  border-color: #22b3c1;
  background-color: #22b3c1;
  color: #fff;
}

.reservation-info {
  margin-top: -99px;
}

.more-info .info-item {
  background-color: #fff;
  border-radius: 23px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
  text-align: center;
  padding: 30px;
}

.more-info .info-item i {
  background-color: #f0f0f0;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  border-radius: 50px;
  color: #22b3c1;
  font-size: 20px;
  margin-bottom: 20px;
}

.more-info .info-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.more-info .info-item a {
  font-size: 15px;
  color: #22b3c1;
}

.reservation-form {
  margin: 120px 0px;
}

.reservation-form #map {
  margin-bottom: -6px;
}

.reservation-form #reservation-form h4 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.reservation-form #reservation-form h4 em {
  font-style: normal;
  color: #22b3c1;
}

.reservation-form #reservation-form {
  padding: 60px 120px;
  background-color: #f9f9f9;
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
}

.reservation-form #reservation-form label {
  font-size: 15px;
  color: #afafaf;
}

.reservation-form #reservation-form input,
.reservation-form #reservation-form select {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border-radius: 23px;
  border: 1px solid #e0e0e0;
  padding: 0px 20px;
  cursor: pointer;
  margin-bottom: 30px;
}

.reservation-form #reservation-form input.date {
  color: #aaa;
}

.reservation-form #reservation-form button {
  font-size: 14px;
  color: #fff;
  background-color: #22b3c1;
  border: 1px solid #22b3c1;
  padding: 12px 30px;
  width: 100%;
  text-align: center;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.reservation-form #reservation-form button:hover {
  opacity: 0.8;
}



/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 575px) {

}


@media (max-width: 767px) {
  #section-1 .content-slider .slider .banner .banner-inner-wrapper {
    padding-top: 120px;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h2 {
    font-size: 15px;
  }
  #section-1 .content-slider .slider .banner .banner-inner-wrapper h1 {
    font-size: 36px;
  }
  #section-1 .more-info {
    padding: 30px;
    margin-top: 30px !important;
    border-radius: 23px;
    bottom: 110px;
    width: 95%;
    left: 2.5%;
  }
  #section-1 .more-info i {
    width: 36px;
    height: 36px;
    line-height: 34px;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 8px;
  }
  .visit-country .item .right-content .main-button a {
    font-size: 14px;
    padding: 12px 15px;
  }
  .main-button a {
    text-align: center;
  }
  #section-1 .more-info h4 {
    font-size: 14px !important;
  }
  #section-1 .content-slider nav .controls label { 
    width: 7% !important;
  }
  .visit-country .item .right-content ul li {
    width: 30%;
  }
  .visit-country .item .right-content h4 {
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  #section-1 .more-info {
    margin-top: 60px;
  }
  #section-1 .more-info h4 span {
    font-size: 15px;
  }
  #section-1 .more-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #section-1 .main-button {
    text-align: left;
  }
  #section-1 .content-slider nav .controls label {
    width: 15%;
  }
  .visit-country .item .right-content ul li {
    width: 30% !important;
  }
  .visit-country .item .right-content {
    position: relative;
  }
  
  .visit-country .side-bar-map {
    margin-left: 0px;
    margin-top: 60px;
  }
  .call-to-action h2,
  .call-to-action h4 {
    text-align: center;
  }
  .call-to-action .border-button {
    text-align: center;
    margin-top: 30px;
  }
  .about-main-content .content p {
    padding: 0px 5%;
  }
  .weekly-offers .container-fluid {
    padding: 0px;
  }
  .more-about .left-image {
    margin-right: 0px;
    margin-bottom: 60px;
  }
  .search-form #search-form h4 {
    margin-bottom: 15px;
  }
  .search-form #search-form select {
    margin-bottom: 30px;
  }
  .amazing-deals {
    padding: 60px 0;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 28px;
  }
  
  .amazing-deals .section-heading h4 {
    font-size: 16px;
  }
  
  .amazing-deals .item .image {
    border-top-right-radius: 23px;
    border-bottom-left-radius: 0px;
    height: 350px;
  }
  .amazing-deals .item {
    padding-right: 0px;
    min-height: 350px;
  }
  .amazing-deals .item .content {
    padding: 30px !important;
  }
  .more-info .info-item {
    margin-bottom: 30px;
  }
  .reservation-form #reservation-form {
    padding: 45px 30px;
  }
}

@media (max-width: 1200px) {
  #section-1 .more-info h4 span {
    font-size: 12px;
  }
  #section-1 .more-info h4 {
    font-size: 15px;
  }
  .weekly-offers .container-fluid {
    padding: 0px;
  }
}

/* Page Sidebar Positioning Options */
.page-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 60px;
  background: rgba(34, 179, 193, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px 0 0 15px;
  padding: 20px 0;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* .page-sidebar:hover {
  width: 280px;
  background: rgba(34, 179, 193, 0.98);
} */

.sidebar-widgets {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.sidebar-widget {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.widget-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-left: 10px;
}

.widget-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.widget-tooltip {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  z-index: 1000;
  display: none;
}

.page-sidebar:hover .widget-tooltip {
  display: block;
}

.widget-tooltip h4 {
  margin: 0 0 15px 0;
  color: #22b3c1;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.widget-tooltip::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/* Payment Methods Widget */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-method:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.payment-method i {
  margin-right: 10px;
  font-size: 16px;
  color: #22b3c1;
}

/* Social Media Widget */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #e9ecef;
  transform: translateX(5px);
  color: #22b3c1;
  text-decoration: none;
}

.social-link i {
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.social-link span {
  font-size: 14px;
  font-weight: 500;
}

/* Social Media Icons Colors */
.social-link[title="Facebook"]:hover i {
  color: #1877f2;
}

.social-link[title="Twitter"]:hover i {
  color: #1da1f2;
}

.social-link[title="Instagram"]:hover i {
  color: #e4405f;
}

.social-link[title="X"]:hover i {
  color: #000000;
}

.social-link[title="WhatsApp"]:hover i {
  color: #25D366;
}

.social-link[title="Email"]:hover i {
  color: #EA4335;
}

.social-link[title="LinkedIn"]:hover i {
  color: #0077b5;
}

.social-link[title="YouTube"]:hover i {
  color: #ff0000;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
  .page-sidebar {
    position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 45px !important;
  background: rgba(34, 179, 193, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px 0 0 15px;
  padding: 20px 0;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }
  
  /* .page-sidebar:hover {
    width: 60px;
  } */
  
  .widget-tooltip {
    position: fixed;
    bottom: 90px;
    right: 20px;
    top: auto;
    transform: none;
    min-width: 250px;
  }
  
  .widget-tooltip::before {
    right: 50%;
    top: 100%;
    transform: translateX(50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: none;
  }
}

/* News Ticker Styles */
.news-ticker-section {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  overflow: hidden; /* Prevent horizontal scrolling */
  width: 100%;
}

.news-ticker-wrapper {
  display: flex;
  padding: 0 10px;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden; /* Prevent horizontal scrolling */
}

.news-ticker-icon {
  background-color: #22b3c1;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-ticker-icon i {
  font-size: 24px;
}

.news-ticker-content {
  flex-grow: 1;
  overflow: hidden;
  max-width: calc(100% - 70px); /* Account for icon width */
}

.news-ticker {
  position: relative;
  width: 100%;
  overflow: hidden; /* Prevent horizontal scrolling */
}

.news-ticker-inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: news-ticker 50s linear infinite;
  max-width: 100%;
}

.news-item {
  display: inline-block;
  padding: 0 30px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.news-item::after {
  content: '•';
  position: absolute;
  right: 10px;
  color: #22b3c1;
}

.news-item {
  color: #22b3c1;
}

.news-item:last-child::after {
  display: none;
}

@keyframes news-ticker {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

/* Pause animation on hover */
.news-ticker:hover .news-ticker-inner {
  animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .news-ticker-section {
    padding: 8px 0;
    overflow: hidden;
  }
  
  .news-ticker-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
    overflow: hidden;
  }

  .news-ticker-icon {
    margin-right: 0;
    margin-bottom: 8px;
    align-self: flex-start;
    width: 40px;
    height: 40px;
  }
  
  .news-ticker-icon i {
    font-size: 18px;
  }

  .news-ticker-content {
    max-width: 100%;
    overflow: hidden;
  }
  
  .news-ticker {
    overflow: hidden;
  }

  .news-item {
    font-size: 13px;
    padding: 0 12px;
  }
  
  .news-ticker-inner {
    animation: news-ticker 25s linear infinite; /* Much faster on mobile */
  }
}

@media (max-width: 576px) {
  .news-ticker-section {
    padding: 6px 0;
  }
  
  .news-ticker-wrapper {
    padding: 0 10px;
  }
  
  .news-ticker-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }
  
  .news-ticker-icon i {
    font-size: 16px;
  }

  .news-item {
    font-size: 12px;
    padding: 0 10px;
  }
  
  .news-ticker-inner {
    animation: news-ticker 20s linear infinite; /* Even faster on small screens */
  }
}

/* Floating Contact Button Styles */
.floating-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #22b3c1;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}

.floating-contact-btn:hover {
  background-color: #1ca3b1;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-contact-btn i {
  font-size: 24px;
}

.contact-options {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-contact-btn.active .contact-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin: 5px 0;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background-color: #f0f0f0;
  color: #22b3c1;
}

.contact-option i {
  margin-right: 12px;
  font-size: 20px;
}

.contact-option span {
  font-weight: 500;
}

/* WhatsApp specific color */
.contact-option.whatsapp {
  color: #25d366;
}

.contact-option.whatsapp:hover {
  background-color: #25d36620;
}

/* Email specific color */
.contact-option.email {
  color: #22b3c1;
}

.contact-option.email:hover {
  background-color: #22b3c120;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-contact-btn {
    width: 50px;
    height: 50px;
  }

  .floating-contact-btn i {
    font-size: 20px;
  }

  .contact-options {
    width: 220px;
    right: -20px;
  }
}

#section-1 .content-slider nav .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

#section-1 .content-slider nav .controls label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#section-1 .content-slider nav .controls label .progressbar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 5px;
  overflow: hidden;
}

#section-1 .content-slider nav .controls label .progressbar-fill {
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 5s linear;
}

#section-1 .content-slider nav .controls label .text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}

#section-1 .content-slider #banner1:checked ~ nav label:nth-of-type(1) .text,
#section-1 .content-slider #banner2:checked ~ nav label:nth-of-type(2) .text,
#section-1 .content-slider #banner3:checked ~ nav label:nth-of-type(3) .text,
#section-1 .content-slider #banner4:checked ~ nav label:nth-of-type(4) .text,
#section-1 .content-slider #banner5:checked ~ nav label:nth-of-type(5) .text,
#section-1 .content-slider #banner6:checked ~ nav label:nth-of-type(6) .text {
  color: #fff;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .amazing-deals {
    padding: 60px 0;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 24px;
  }
  
  .amazing-deals .section-heading h4 {
    font-size: 14px;
  }
  
  .amazing-deals .section-heading p {
    font-size: 14px;
  }
  
  #section-1 .content-slider nav .controls {
    max-width: 90%;
    bottom: 10px;
  }
  
  #section-1 .content-slider nav .controls label {
    margin: 0 3px;
  }
  
  #section-1 .content-slider nav .controls label .text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .amazing-deals {
    padding: 40px 0;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 20px;
  }
  
  .amazing-deals .section-heading h4 {
    font-size: 12px;
  }
  
  .amazing-deals .section-heading p {
    font-size: 13px;
  }
  
  .header-area .main-nav .logo img {
    /* width: 150px; */
    max-height: 40px;
    transform: scale(1.5);
    transform-origin: center center;
  }
  
  .background-header .main-nav .logo img {
    width: 130px;
    max-height: 35px;
    transform: scale(1.5);
    transform-origin: center center;
  }
  
  #section-1 .content-slider nav .controls {
    max-width: 95%;
    bottom: 5px;
  }
  
  #section-1 .content-slider nav .controls label {
    margin: 0 2px;
  }
  
  #section-1 .content-slider nav .controls label .progressbar {
    height: 3px;
  }
  
  #section-1 .content-slider nav .controls label .text {
    font-size: 8px;
  }
  
  .amazing-deals .item .image {
    height: 250px;
  }
  
  .amazing-deals .item {
    min-height: 250px;
  }
  
  .amazing-deals .item .content {
    padding: 15px !important;
  }
  
  .amazing-deals .item h4 {
    font-size: 16px;
  }
  
  .amazing-deals .item p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .amazing-deals .item .main-button a {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .search-form #search-form {
    padding: 20px 15px;
  }
  
  .search-form #search-form h4 {
    font-size: 16px;
  }
  
  .page-heading h2 {
    font-size: 32px;
  }
  
  .page-heading h4 {
    font-size: 16px;
  }
}

/* 
---------------------------------------------
About Me Section Style
--------------------------------------------- 
*/

.about-me-section {
  margin-top: 120px;
  padding: 80px 0;
  background:linear-gradient(135deg, #c3cfe2 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.about-me-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2322b3c1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.about-me-section .section-heading {
  margin-bottom: 60px;
}

.about-me-section .section-heading h4 {
  color: #22b3c1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.news-section .section-heading h4 {
  color: #22b3c1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-me-section .section-heading h2 {
  color: #2a2a2a;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-me-section .line-dec {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #22b3c1, #1a9ba8);
  margin: 0 auto;
  border-radius: 2px;
}

/* Image Styling */
.about-me-image {
  position: relative;
  padding: 20px;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 10px;
}

.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.image-wrapper:hover .main-image {
  transform: scale(1.02);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34, 179, 193, 0.3);
  animation: pulse 2s infinite;
}

.experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Floating Card */
.floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #22b3c1;
  font-size: 18px;
}

.floating-card span {
  color: #2a2a2a;
  font-weight: 600;
  font-size: 14px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Content Styling */
.about-me-content {
  padding: 40px 0;
}

.about-me-content h3 {
  color: #2a2a2a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.about-me-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #22b3c1, #1a9ba8);
  border-radius: 2px;
}

.about-me-content .lead {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-me-content .lead strong {
  color: #22b3c1;
  font-weight: 600;
}

/* Expertise Areas */
.expertise-areas {
  margin: 40px 0;
}

.expertise-areas h4 {
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.expertise-item {
  background: white;
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #22b3c1;
}

.expertise-item i {
  color: #22b3c1;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.expertise-item span {
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Personal Info */
.personal-info {
  margin: 40px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-item i {
  color: #22b3c1;
  font-size: 24px;
  margin-right: 20px;
  margin-top: 5px;
  flex-shrink: 0;
}

.info-item h5 {
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-buttons .main-button {
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.cta-buttons .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34, 179, 193, 0.4);
  color: white;
}

.cta-buttons .border-button {
  border: 2px solid #22b3c1;
  color: #22b3c1;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: white;
}

.cta-buttons .border-button:hover {
  background: #22b3c1;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34, 179, 193, 0.3);
}

/* Responsive Design for About Me Section */
@media (max-width: 992px) {
  .about-me-section {
    padding: 60px 0;
  }
  
  .about-me-section .section-heading h2 {
    font-size: 36px;
  }
  
  .about-me-content h3 {
    font-size: 28px;
  }
  
  .main-image {
    height: 400px;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-me-section {
    padding: 40px 0;
  }
  
  .about-me-section .section-heading h2 {
    font-size: 30px;
  }
  
  .about-me-section .section-heading h4 {
    font-size: 16px;
  }
  
  .about-me-content h3 {
    font-size: 24px;
  }
  
  .about-me-content .lead {
    font-size: 16px;
  }
  
  .main-image {
    height: 350px;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
    padding: 15px;
    top: 20px;
    right: 20px;
  }
  
  .experience-badge .years {
    font-size: 20px;
  }
  
  .experience-badge .text {
    font-size: 9px;
  }
  
  .floating-card {
    padding: 12px 16px;
    bottom: 20px;
    left: 20px;
  }
  
  .floating-card span {
    font-size: 12px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .expertise-item {
    padding: 15px 10px;
  }
  
  .info-item {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .info-item i {
    font-size: 20px;
    margin-right: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .main-button,
  .cta-buttons .border-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-me-section {
    padding: 30px 0;
  }
  
  .about-me-section .section-heading h2 {
    font-size: 26px;
  }
  
  .about-me-section .section-heading h4 {
    font-size: 14px;
  }
  
  .about-me-content h3 {
    font-size: 22px;
  }
  
  .about-me-content .lead {
    font-size: 15px;
  }
  
  .main-image {
    height: 300px;
  }
  
  .experience-badge {
    width: 70px;
    height: 70px;
    padding: 12px;
    top: 15px;
    right: 15px;
  }
  
  .experience-badge .years {
    font-size: 18px;
  }
  
  .experience-badge .text {
    font-size: 8px;
  }
  
  .floating-card {
    padding: 10px 14px;
    bottom: 15px;
    left: 15px;
  }
  
  .floating-card span {
    font-size: 11px;
  }
  
  .expertise-areas h4 {
    font-size: 18px;
  }
  
  .expertise-item {
    padding: 12px 8px;
  }
  
  .expertise-item i {
    font-size: 20px;
  }
  
  .expertise-item span {
    font-size: 12px;
  }
  
  .info-item h5 {
    font-size: 14px;
  }
  
  .info-item p {
    font-size: 12px;
  }
}
.travel-tips-section {        
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.travel-tips-section .section-heading h3 {
  color: #22b3c1;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.tips-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tip-item {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
  background-color: rgba(30, 144, 255, 0.1);
  color: #22b3c1 ;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.tip-item:hover .tip-icon {
  background-color: rgba(30, 144, 255, 0.2);
}

.tip-content h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.tip-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .travel-tips-section {
    padding: 15px;
  }

  .tip-item {
    flex-direction: column;
    text-align: center;
  }

  .tip-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* 
---------------------------------------------
FAQs Section Style
--------------------------------------------- 
*/

.faqs-section {
  /* margin-top: 120px; */
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.faqs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2322b3c1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.faqs-section .section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.faqs-section .section-heading h2 {
  color: #2a2a2a;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faqs-section .section-heading p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.category-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.category-btn:hover {
  border-color: #22b3c1;
  color: #22b3c1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.2);
}

.category-btn.active {
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  border-color: #22b3c1;
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.3);
}

/* FAQ Container */
.faq-container {
  position: relative;
  z-index: 2;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.contact-section h3 {
  color: #ffffff;
}

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

/* FAQ Animation Improvements */
.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  will-change: transform;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #22b3c1;
}

.faq-item.active {
  border-color: #22b3c1;
  box-shadow: 0 10px 30px rgba(34, 179, 193, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-question h4 {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 20px;
}

.faq-question i {
  color: #22b3c1;
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  will-change: transform;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease;
  background: white;
  opacity: 0;
  transform: translateY(-10px);
  will-change: max-height, padding, opacity, transform;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px 30px;
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  transition: opacity 0.3s ease;
}

/* Contact Section */
.contact-section {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(34, 179, 193, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.contact-icon i {
  font-size: 32px;
  color: white;
}

.contact-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.contact-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-buttons .main-button {
  background: white;
  color: #22b3c1;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-buttons .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #22b3c1;
}

.contact-buttons .border-button {
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-buttons .border-button:hover {
  background: white;
  color: #22b3c1;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-buttons .border-button i {
  font-size: 16px;
}

/* Responsive Design for FAQs Section */
@media (max-width: 992px) {
  .faqs-section {
    padding: 60px 0;
  }
  
  .faqs-section .section-heading h2 {
    font-size: 36px;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
  
  .contact-card {
    padding: 40px 30px;
  }
  
  .contact-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 40px 0;
  }
  
  .faqs-section .section-heading h2 {
    font-size: 30px;
  }
  
  .faqs-section .section-heading p {
    font-size: 16px;
  }
  
  .faq-categories {
    gap: 10px;
  }
  
  .category-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .faq-question {
    padding: 20px 25px;
  }
  
  .faq-question h4 {
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 25px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-card h3 {
    font-size: 22px;
  }
  
  .contact-card p {
    font-size: 14px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .main-button,
  .contact-buttons .border-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faqs-section {
    padding: 30px 0;
  }
  
  .faqs-section .section-heading h2 {
    font-size: 26px;
  }
  
  .faqs-section .section-heading p {
    font-size: 14px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question h4 {
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
  
  .contact-card {
    padding: 25px 15px;
  }
  
  .contact-card h3 {
    font-size: 20px;
  }
  
  .contact-card p {
    font-size: 13px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 24px;
  }
}

/* 
---------------------------------------------
Client Reviews Section Style
--------------------------------------------- 
*/

.client-reviews-section {
  margin-top: 120px;
  padding: 80px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  position: relative;
  overflow: hidden;
}

.client-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="review-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2322b3c1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23review-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.client-reviews-section .section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

#galleryModal .modal-header h3 {
  color: #ffffff !important;
}


.gallery-section {
  background: linear-gradient(#ececec59, #ecf0f1a1), url(../images/gallary_background.png);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
}

.client-reviews-section .section-heading h4 ,.visa-services-section .section-heading h4 , .gallery-section .section-heading h4  {
  color: #22b3c1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-section .section-heading h4 , .gallery-section .section-heading p{
  color: #ffffff !important;
}

.client-reviews-section .section-heading h2 {
  color: #2a2a2a;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.client-reviews-section .section-heading p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Reviews Container */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

/* Review Item */
.review-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: #22b3c1;
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #22b3c1;
}

/* Review Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #22b3c1;
  box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-details .country {
  color: #22b3c1;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

.client-details .job {
  color: #666;
  font-size: 13px;
  font-style: italic;
}

/* Rating */
.rating {
  text-align: right;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.stars i {
  color: #ffd700;
  font-size: 16px;
}

.rating-text {
  color: #22b3c1;
  font-weight: 600;
  font-size: 14px;
}

/* Review Content */
.review-content {
  margin-bottom: 20px;
}

.review-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.review-date {
  color: #999;
  font-size: 13px;
}

/* Reviews Pagination */
.reviews-pagination {
  margin: 50px 0;
  position: relative;
  z-index: 2;
}

.reviews-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reviews-pagination .page-item {
  margin: 0;
}

.reviews-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid #e9ecef;
  background: white;
  color: #666;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.reviews-pagination .page-link:hover {
  border-color: #22b3c1;
  color: #22b3c1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.2);
}

.reviews-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  border-color: #22b3c1;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.reviews-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  color: #ccc;
  border-color: #e9ecef;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reviews-pagination .page-link i {
  font-size: 12px;
}

/* Add Review Section - New Design */
.add-review-section {
  margin: 50px 0;
  position: relative;
  z-index: 2;
}

.add-review-card {
  background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(34, 179, 193, 0.3);
  position: relative;
  overflow: hidden;
}

.add-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="add-review-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23add-review-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.add-review-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.add-review-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
}

.add-review-icon i {
  font-size: 32px;
  color: white;
}

.add-review-text {
  flex: 1;
  margin-right: 30px;
}

.add-review-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.add-review-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  color: white;
}

.add-review-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.add-review-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.add-review-btn i {
  font-size: 14px;
}

/* Review Modal */
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.review-modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f8f9fa;
  color: #22b3c1;
}

.modal-body {
  padding: 20px 30px 30px;
}

.modal-body p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  text-align: center;
}

/* Review Form Styles for Modal */
.review-form {
  position: relative;
  z-index: 2;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #2a2a2a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  background: white;
  color: #2a2a2a;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22b3c1;
  box-shadow: 0 0 0 3px rgba(34, 179, 193, 0.1);
}

.form-group input[type="file"] {
  padding: 10px 15px;
  background: #f8f9fa;
  border: 2px dashed #22b3c1;
  cursor: pointer;
}

.form-group input[type="file"]:hover {
  background: #e9ecef;
  border-color: #1a9ba8;
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: #22b3c1;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
  background: #1a9ba8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/* Rating Input */
.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  cursor: pointer;
  font-size: 24px;
  color: #ddd;
  transition: all 0.3s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
  color: #ffd700;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-review-btn {
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34, 179, 193, 0.4);
}

.submit-review-btn i {
  font-size: 14px;
}
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

/* Rating Input */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: center;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  cursor: pointer;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
  color: #ffd700;
  transform: scale(1.1);
}

/* Form Actions */
.form-actions {
  margin-top: 30px;
}

.submit-review-btn {
  background: white;
  color: #22b3c1;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.submit-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-review-btn i {
  font-size: 14px;
}

/* Responsive Design for Client Reviews */
@media (max-width: 992px) {
  .client-reviews-section {
    padding: 60px 0;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 36px;
  }
  
  .reviews-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .review-item {
    padding: 25px;
  }
  
  .add-review-card {
    padding: 40px 30px;
  }
  
  .add-review-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .client-reviews-section {
    padding: 40px 0;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 30px;
  }
  
  .client-reviews-section .section-heading p {
    font-size: 16px;
  }
  
  .reviews-filter {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-item {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .rating {
    text-align: left;
  }
  
  .client-photo {
    width: 50px;
    height: 50px;
  }
  
  .client-details h4 {
    font-size: 16px;
  }
  
  .add-review-card {
    padding: 30px 20px;
  }
  
  .add-review-card h3 {
    font-size: 22px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .rating-input {
    justify-content: flex-start;
  }
  
  .rating-input label {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .client-reviews-section {
    padding: 30px 0;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 26px;
  }
  
  .client-reviews-section .section-heading p {
    font-size: 14px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .review-item {
    padding: 15px;
  }
  
  .review-item::before {
    font-size: 60px;
    top: 15px;
    right: 20px;
  }
  
  .client-photo {
    width: 45px;
    height: 45px;
  }
  
  .client-details h4 {
    font-size: 15px;
  }
  
  .client-details .country,
  .client-details .job {
    font-size: 12px;
  }
  
  .review-content p {
    font-size: 14px;
  }
  
  .add-review-card {
    padding: 25px 15px;
  }
  
  .add-review-card h3 {
    font-size: 20px;
  }
  
  .add-review-card p {
    font-size: 14px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .rating-input label {
    font-size: 18px;
  }
  
  .submit-review-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Responsive Pagination */
@media (max-width: 768px) {
  .reviews-pagination .page-link {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  
  .reviews-pagination .pagination {
    gap: 3px;
  }
}

/* Responsive Add Review Section */
@media (max-width: 768px) {
  .add-review-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .add-review-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .add-review-text {
    margin-right: 0;
  }
  
  .add-review-text h3 {
    font-size: 24px;
  }
  
  .add-review-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .add-review-card {
    padding: 25px 20px;
  }
  
  .add-review-icon {
    width: 60px;
    height: 60px;
  }
  
  .add-review-icon i {
    font-size: 24px;
  }
  
  .add-review-text h3 {
    font-size: 20px;
  }
  
  .add-review-text p {
    font-size: 14px;
  }
  
  .add-review-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 20px auto;
  }
  
  .modal-header {
    padding: 20px 25px 15px;
  }
  
  .modal-header h3 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 15px 25px 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group {
    width: 100%;
  }
}

/* Visa Services Section */
.visa-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #c3cfe2 0%, #f5f7fa 100%);
  position: relative;
}

.visa-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="visa-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2322b3c1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23visa-pattern)"/></svg>');
  pointer-events: none;
}

/* Visa Cards */
.visa-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.visa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(34, 179, 193, 0.2);
  border-color: #22b3c1;
}

.visa-card.featured {
  border-color: #22b3c1;
  background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
  color: white;
}

.visa-card.featured .visa-card-body h3,
.visa-card.featured .visa-detail-item .label,
.visa-card.featured .visa-detail-item .value {
  color: white;
}

.visa-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.visa-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.visa-card.featured .visa-icon {
  background: rgba(255, 255, 255, 0.2);
}

.visa-badge {
  background: #ff6b6b;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.visa-card.featured .visa-badge {
  background: rgba(255, 255, 255, 0.2);
}

.visa-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}

/* Visa Details */
.visa-details {
  margin-bottom: 25px;
}

.visa-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.visa-detail-item:last-child {
  border-bottom: none;
}

.visa-detail-item i {
  width: 30px;
  color: #22b3c1;
  font-size: 16px;
  margin-right: 15px;
}

.featured .visa-detail-item i {
  width: 30px;
  color: white;
  font-size: 16px;
  margin-right: 15px;
}

.visa-detail-item div {
  flex: 1;
}

.visa-detail-item .label {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.visa-detail-item .value {
  display: block;
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 600;
}



/* Visa Pagination */
.visa-pagination {
  margin-top: 50px;
}

.visa-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.visa-pagination .page-item {
  margin: 0 5px;
}

.visa-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visa-pagination .page-link:hover {
  background: #22b3c1;
  border-color: #22b3c1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.visa-pagination .page-item.active .page-link {
  background: #22b3c1;
  border-color: #22b3c1;
  color: white;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.visa-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  border-color: #e9ecef;
  color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.visa-pagination .page-item.disabled .page-link:hover {
  background: #f8f9fa;
  border-color: #e9ecef;
  color: #ccc;
  transform: none;
  box-shadow: none;
}

/* Visa Requirements Section */
.visa-requirements-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
  color: white;
}

.visa-requirements-section .section-heading h2,
.visa-requirements-section .section-heading h4 {
  color: white;
}

.requirement-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.requirement-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.requirement-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

.requirement-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.requirement-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.requirement-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.requirement-list li:last-child {
  border-bottom: none;
}

/* Responsive Visa Page */
@media (max-width: 992px) {
  .visa-services-section,
  .visa-requirements-section {
    padding: 80px 0;
  }
  
  .visa-card {
    padding: 25px;
  }
  
  .requirement-card {
    padding: 25px;
  }
  
  .visa-pagination {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .visa-services-section,
  .visa-requirements-section {
    padding: 60px 0;
  }
  
  .visa-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .visa-card-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .visa-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .visa-card-body h3 {
    font-size: 20px;
  }
  
  .visa-detail-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .visa-detail-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .requirement-card {
    padding: 20px;
  }
  
  .requirement-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .requirement-card h3 {
    font-size: 18px;
  }
  
  .visa-pagination {
    margin-top: 30px;
  }
  
  .visa-pagination .page-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .visa-services-section,
  .visa-requirements-section {
    padding: 40px 0;
  }
  
  .visa-card {
    padding: 15px;
  }
  
  .visa-card-body h3 {
    font-size: 18px;
  }
  
  .visa-detail-item .label {
    font-size: 11px;
  }
  
  .visa-detail-item .value {
    font-size: 14px;
  }
  
  .requirement-card {
    padding: 15px;
  }
  
  .requirement-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .requirement-card h3 {
    font-size: 16px;
  }
  
  .requirement-card p {
    font-size: 14px;
  }
  
  .requirement-list li {
    font-size: 13px;
  }
  
  .visa-pagination {
    margin-top: 25px;
  }
  
  .visa-pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .visa-pagination .pagination {
    gap: 5px;
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 20px auto;
  }
  
  .modal-header {
    padding: 20px 25px 15px;
  }
  
  .modal-header h3 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 15px 25px 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 10px auto;
  }
  
  .modal-header {
    padding: 15px 20px 10px;
  }
  
  .modal-header h3 {
    font-size: 18px;
  }
  
  .modal-body {
    padding: 10px 20px 20px;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%); */
}


/* .gallery-section {
  padding: 100px 0;
  background: url('../images/syria.png'), linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* Album Categories */
.album-categories {
  margin-bottom: 50px;
}

.album-category-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.album-category-btn:hover,
.album-category-btn.active {
  background: #22b3c1;
  border-color: #22b3c1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.album-category-btn i {
  font-size: 16px;
}

/* Album Cards */
.album-card {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.album-cover {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 179, 193, 0.9), rgba(26, 155, 168, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-info h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.album-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.image-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.view-album-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  width: 100%;
  justify-content: center;
}

.view-album-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.gallery-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 1000px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-modal .modal-header {
  background: linear-gradient(135deg, #22b3c1, #1a9ba8);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-modal .modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.gallery-modal .modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.gallery-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.gallery-modal .modal-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Image Navigation */
.image-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.nav-btn {
  background: #22b3c1;
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.nav-btn:hover {
  background: #1a9ba8;
  transform: scale(1.1);
}

.nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.main-image-container {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#mainImage {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#imageCounter {
  font-weight: 600;
  font-size: 14px;
}

#imageTitle {
  font-size: 16px;
  font-weight: 500;
}

/* Thumbnail Container */
.thumbnail-container {
  margin-top: 20px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #22b3c1 #f0f0f0;
}

.thumbnails::-webkit-scrollbar {
  height: 8px;
}

.thumbnails::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: #22b3c1;
  border-radius: 4px;
}

.thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover {
  transform: scale(1.05);
  border-color: #22b3c1;
}

.thumbnail.active {
  border-color: #22b3c1;
  box-shadow: 0 0 0 2px white, 0 0 0 5px #22b3c1;
}

/* Video Indicator Styles */
 .video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  pointer-events: none;
}

.thumbnail {
  position: relative;
}

/* Video Player Styles */
#mainVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; 
}
.media-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
  margin-top: 15px;
}

#mediaDuration {
  background: rgba(34, 179, 193, 0.1);
  color: #22b3c1;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
} 

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-section {
    padding: 80px 0;
  }
  
  .album-cover {
    height: 240px;
  }
  
  .album-info h3 {
    font-size: 20px;
  }
  
  .gallery-modal .modal-content {
    width: 95%;
  }
  
  .gallery-modal .modal-body {
    padding: 20px;
  }
  
  #mainImage {
    height: 300px;
  }
  
  .gallery-pagination {
    margin-top: 40px;
  }
  
  .gallery-pagination .pagination {
    padding: 12px 20px;
  }
  
  .gallery-pagination .page-link {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .album-categories {
    margin-bottom: 30px;
  }
  
  .album-category-btn {
    padding: 10px 20px;
    font-size: 13px;
    margin: 0 5px 10px;
  }
  
  .album-cover {
    height: 200px;
  }
  
  .album-overlay {
    padding: 20px;
  }
  
  .album-info h3 {
    font-size: 18px;
  }
  
  .album-info p {
    font-size: 13px;
  }
  
  .view-album-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .image-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  #mainImage {
    height: 250px;
  }
  
  .image-info {
    padding: 15px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .thumbnails {
    gap: 8px;
  }
  
  .thumbnail {
    width: 70px;
    height: 50px;
  }
  
  .gallery-pagination {
    margin-top: 30px;
  }
  
  .gallery-pagination .pagination {
    padding: 10px 15px;
    gap: 3px;
  }
  
  .gallery-pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 0;
  }
  
  .album-category-btn {
    padding: 8px 15px;
    font-size: 12px;
    margin: 0 3px 8px;
  }
  
  .album-cover {
    height: 180px;
  }
  
  .album-overlay {
    padding: 15px;
  }
  
  .album-info h3 {
    font-size: 16px;
  }
  
  .album-info p {
    font-size: 12px;
  }
  
  .view-album-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .gallery-modal .modal-header {
    padding: 20px;
  }
  
  .gallery-modal .modal-header h3 {
    font-size: 20px;
  }
  
  .gallery-modal .modal-close {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .gallery-modal .modal-body {
    padding: 15px;
  }
  
  #mainImage {
    height: 200px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .thumbnail {
    width: 60px;
    height: 45px;
  }
  
  .gallery-pagination {
    margin-top: 25px;
  }
  
  .gallery-pagination .pagination {
    padding: 8px 12px;
    gap: 2px;
  }
  
  .gallery-pagination .page-link {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
}

/* Gallery Pagination */
.gallery-pagination {
  margin-top: 50px;
  text-align: center;
}

.gallery-pagination .pagination {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-pagination .page-item {
  list-style: none;
}

.gallery-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-pagination .page-link:hover {
  background: rgba(34, 179, 193, 0.1);
  color: #22b3c1;
  border-color: #22b3c1;
  transform: translateY(-2px);
}

.gallery-pagination .page-item.active .page-link {
  background: #22b3c1;
  color: white;
  border-color: #22b3c1;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.gallery-pagination .page-item.disabled .page-link {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-pagination .page-link i {
  font-size: 12px;
}

/* Responsive Design */

/* ===========================================
   News Section Styles
   =========================================== */

/* News Index Sidebar */
.news-index-sidebar {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
  max-width: 100%;
  overflow: hidden;
}

.index-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #22b3c1;
}

.index-header h4 {
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.index-header h4 i {
  color: #22b3c1;
}

.index-header p {
  color: #666;
  font-size: 11px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.index-list {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.index-list::-webkit-scrollbar {
  width: 3px;
}

.index-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.index-list::-webkit-scrollbar-thumb {
  background: #22b3c1;
  border-radius: 10px;
}

.index-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 3px;
  width: 100%;
  box-sizing: border-box;
}

.index-item:last-child {
  border-bottom: none;
}

.index-item:hover {
  background: rgba(34, 179, 193, 0.05);
  padding: 12px 8px;
  margin: 0 -8px;
  transform: translateX(3px);
}

.index-item.active {
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  padding: 12px 8px;
  margin: 0 -8px;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.index-number {
  background: #22b3c1;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.index-item.active .index-number {
  background: white;
  color: #22b3c1;
  transform: scale(1.1);
}

.index-content {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
}

.index-content h5 {
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.index-item.active .index-content h5 {
  color: white;
}

.index-date {
  color: #888;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.index-item.active .index-date {
  color: rgba(255, 255, 255, 0.8);
}

/* Updated News Section Styles */
.news-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-section .section-heading {
  margin-bottom: 60px;
}

.news-section .section-heading h2 {
  font-size: 36px;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.news-section .section-heading p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Updated News Cards */
.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
  max-width: 100%;
  box-sizing: border-box;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card.highlighted {
  animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 15px 40px rgba(34, 179, 193, 0.4);
    transform: translateY(-5px);
  }
  100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  min-width: 50px;
  font-size: 12px;
}

.news-date .day {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.8;
}

.news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-content h3 {
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-title {
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}

.news-title:hover {
  color: #22b3c1;
}

.news-excerpt {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  font-size: 11px;
  color: #888;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-meta i {
  color: #22b3c1;
}

.read-more-btn {
  color: #22b3c1;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-btn:hover {
  color: #1a8a94;
  transform: translateX(3px);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(2px);
}

/* News Pagination */
.news-pagination {
  margin-top: 50px;
  text-align: center;
}

.news-pagination .pagination {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-pagination .page-item {
  list-style: none;
}

.news-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.news-pagination .page-link:hover {
  background: rgba(34, 179, 193, 0.1);
  color: #22b3c1;
  border-color: #22b3c1;
  transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
  background: #22b3c1;
  color: white;
  border-color: #22b3c1;
  box-shadow: 0 5px 15px rgba(34, 179, 193, 0.3);
}

.news-pagination .page-item.disabled .page-link {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.news-pagination .page-link i {
  font-size: 12px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/cta-bg.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-content h3 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .main-button {
  border-radius: 0 25px 25px 0;
  padding: 15px 30px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .main-button a {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive Design for News Section */
@media (max-width: 991px) {
  .news-section .section-heading h2 {
    font-size: 28px;
  }
  
  .news-content {
    padding: 15px;
  }
  
  .news-title {
    font-size: 15px;
  }
  
  .newsletter-content h3 {
    font-size: 28px;
  }
  
  .news-index-sidebar {
    margin-bottom: 30px;
    position: static;
    max-width: 100%;
  }
  
  .index-list {
    max-height: 400px;
  }
  
  .index-item {
    padding: 10px 0;
  }
  
  .index-number {
    width: 25px;
    height: 25px;
    font-size: 11px;
    margin-right: 8px;
  }
  
  .index-content h5 {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 60px 0;
  }
  
  .news-section .section-heading h2 {
    font-size: 24px;
  }
  
  .news-image {
    height: 180px;
  }
  
  .news-content {
    padding: 15px;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-content h3 {
    font-size: 24px;
  }
  
  .newsletter-form .row {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input,
  .newsletter-form .main-button {
    border-radius: 25px;
  }
  
  .index-item {
    padding: 10px 0;
  }
  
  .index-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
    margin-right: 8px;
  }
  
  .index-content h5 {
    font-size: 11px;
  }
  
  .index-header h4 {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .news-section .section-heading h2 {
    font-size: 20px;
  }
  
  .news-card {
    margin-bottom: 25px;
  }
  
  .news-image {
    height: 160px;
  }
  
  .news-date {
    padding: 6px;
    min-width: 45px;
  }
  
  .news-date .day {
    font-size: 14px;
  }
  
  .news-date .month {
    font-size: 9px;
  }
  
  .news-content {
    padding: 12px;
  }
  
  .news-title {
    font-size: 14px;
  }
  
  .news-excerpt {
    font-size: 12px;
  }
  
  .index-header h4 {
    font-size: 13px;
  }
  
  .index-item {
    padding: 8px 0;
  }
  
  .index-number {
    width: 22px;
    height: 22px;
    font-size: 9px;
    margin-right: 6px;
  }
  
  .index-content h5 {
    font-size: 10px;
  }
  
  .index-date {
    font-size: 9px;
  }
}

/* View All News Button */
.view-all-news {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.view-all-news .main-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(34, 179, 193, 0.3);
}

.view-all-news .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.4);
  color: white;
  text-decoration: none;
}

.view-all-news .main-button i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-all-news .main-button:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .view-all-news {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .view-all-news .main-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* View All Visa Services Button */
.view-all-visa {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.view-all-visa .main-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(34, 179, 193, 0.3);
}

.view-all-visa .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.4);
  color: white;
  text-decoration: none;
}

.view-all-visa .main-button i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-all-visa .main-button:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .view-all-visa {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .view-all-visa .main-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Journey Modal Styles */
.journey-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.journey-modal.active {
  opacity: 1;
  visibility: visible;
}

.journey-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.journey-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.journey-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.journey-modal .modal-header {
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journey-modal .modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.journey-modal .modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.journey-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.journey-modal .modal-body {
  padding: 30px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

/* Journey Overview */
.journey-overview {
  margin-bottom: 40px;
}

.journey-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.journey-info-grid .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #22b3c1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-info-grid .info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 179, 193, 0.2);
}

.journey-info-grid .info-item i {
  font-size: 24px;
  color: #22b3c1;
  width: 40px;
  text-align: center;
}

.journey-info-grid .info-item .label {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.journey-info-grid .info-item .value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
}

.journey-description {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #22b3c1;
}

.journey-description h4 {
  color: #2a2a2a;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.journey-description p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Journey Itinerary */
.journey-itinerary {
  margin-bottom: 40px;
}

.journey-itinerary h4 {
  color: #2a2a2a;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.itinerary-timeline {
  position: relative;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #22b3c1, #1a8a94);
  border-radius: 2px;
}

.itinerary-day {
  position: relative;
  margin-bottom: 30px;
  padding-left: 80px;
}

.itinerary-day:last-child {
  margin-bottom: 0;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #22b3c1;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #22b3c1;
  z-index: 2;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.day-number {
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}

.day-header h5 {
  margin: 0;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
}

.day-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.day-image {
  overflow: hidden;
  border-radius: 10px;
}

.day-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.day-content:hover .day-image img {
  transform: scale(1.05);
}

.day-description p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Journey Actions */
.journey-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.journey-actions .main-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(34, 179, 193, 0.3);
}

.journey-actions .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.4);
  color: white;
  text-decoration: none;
}

.journey-actions .border-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: #22b3c1;
  border: 2px solid #22b3c1;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.journey-actions .border-button:hover {
  background: #22b3c1;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .journey-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .journey-modal .modal-header {
    padding: 20px;
  }
  
  .journey-modal .modal-header h3 {
    font-size: 20px;
  }
  
  .journey-modal .modal-body {
    padding: 20px;
  }
  
  .journey-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .journey-info-grid .info-item {
    padding: 15px;
  }
  
  .day-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .day-image img {
    height: 150px;
  }
  
  .journey-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .journey-actions .main-button,
  .journey-actions .border-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .journey-modal .modal-content {
    width: 98%;
  }
  
  .journey-modal .modal-header {
    padding: 15px;
  }
  
  .journey-modal .modal-header h3 {
    font-size: 18px;
  }
  
  .journey-modal .modal-body {
    padding: 15px;
  }
  
  .itinerary-day {
    padding-left: 60px;
  }
  
  .itinerary-timeline::before {
    left: 20px;
  }
  
  .itinerary-day::before {
    left: 10px;
    width: 16px;
    height: 16px;
  }
  
  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .day-content {
    padding: 15px;
  }
  
  .day-image img {
    height: 120px;
  }
}

/* View All Tours Button */
.view-all-tours {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.view-all-tours .main-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #22b3c1 0%, #1a8a94 100%);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(34, 179, 193, 0.3);
}

.view-all-tours .main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 179, 193, 0.4);
  color: white;
  text-decoration: none;
}

.view-all-tours .main-button i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-all-tours .main-button:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .view-all-tours {
    margin-top: 30px;
    padding-top: 20px;
  }
  
  .view-all-tours .main-button {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .view-all-tours .main-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .view-all-visa .main-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .news-section {
    padding: 40px 0;
  }
  
  .news-section .section-heading h2 {
    font-size: 18px;
  }
  
  .news-section .section-heading h4 {
    font-size: 14px;
  }
  
  .news-card {
    margin-bottom: 20px;
  }
  
  .news-image {
    height: 140px;
  }
  
  .news-content {
    padding: 10px;
  }
  
  .news-title {
    font-size: 13px;
  }
  
  .news-excerpt {
    font-size: 11px;
  }
  
  .read-more-btn {
    font-size: 12px;
  }
  
  .view-all-news .main-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Enhanced Responsive Design for Professional Layout */
@media (max-width: 1200px) {
  .about-me-section .row {
    align-items: center;
  }
  
  .amazing-deals .item {
    margin-bottom: 30px;
  }
  
  .gallery-section .album-card {
    margin-bottom: 30px;
  }
  
  .client-reviews-section .review-item {
    margin-bottom: 30px;
  }
  
  .news-section .news-card {
    margin-bottom: 30px;
  }
  
  .visa-services-section .visa-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .about-me-section .about-me-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-me-section .about-me-content .lead {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 32px;
  }
  
  .amazing-deals .item .content h4 {
    font-size: 20px;
  }
  
  .gallery-section .section-heading h2 {
    font-size: 32px;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 32px;
  }
  
  .news-section .section-heading h2 {
    font-size: 32px;
  }
  
  .visa-services-section .section-heading h2 {
    font-size: 32px;
  }
  
  .section-heading h4 {
    font-size: 16px;
  }
  
  .section-heading p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-me-section {
    padding: 60px 0;
  }
  
  .about-me-section .about-me-content h3 {
    font-size: 24px;
    text-align: center;
  }
  
  .about-me-section .about-me-content .lead {
    font-size: 15px;
    text-align: center;
  }
  
  .about-me-section .personal-info {
    margin: 30px 0;
  }
  
  .about-me-section .expertise-areas {
    margin-top: 30px;
  }
  
  .about-me-section .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .amazing-deals {
    padding: 60px 0;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 28px;
  }
  
  .amazing-deals .item {
    margin-bottom: 30px;
  }
  
  .amazing-deals .item .content {
    padding: 20px;
  }
  
  .amazing-deals .item .content h4 {
    font-size: 18px;
  }
  
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-section .section-heading h2 {
    font-size: 28px;
  }
  
  .client-reviews-section {
    padding: 60px 0;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 28px;
  }
  
  .news-section {
    padding: 60px 0;
  }
  
  .news-section .section-heading h2 {
    font-size: 28px;
  }
  
  .visa-services-section {
    padding: 60px 0;
  }
  
  .visa-services-section .section-heading h2 {
    font-size: 28px;
  }
  
  .section-heading h4 {
    font-size: 14px;
  }
  
  .section-heading p {
    font-size: 15px;
  }
  
  .news-ticker-section {
    padding: 15px 0;
  }
  
  .news-ticker-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .news-ticker-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .about-me-section {
    padding: 40px 0;
  }
  
  .about-me-section .about-me-content h3 {
    font-size: 22px;
  }
  
  .about-me-section .about-me-content .lead {
    font-size: 14px;
  }
  
  .about-me-section .expertise-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about-me-section .expertise-item {
    padding: 10px;
  }
  
  .about-me-section .expertise-item i {
    font-size: 18px;
  }
  
  .about-me-section .expertise-item span {
    font-size: 12px;
  }
  
  .amazing-deals {
    padding: 40px 0;
  }
  
  .amazing-deals .section-heading h2 {
    font-size: 24px;
  }
  
  .amazing-deals .item .content {
    padding: 15px;
  }
  
  .amazing-deals .item .content h4 {
    font-size: 16px;
  }
  
  .amazing-deals .item .content p {
    font-size: 13px;
  }
  
  .gallery-section {
    padding: 40px 0;
  }
  
  .gallery-section .section-heading h2 {
    font-size: 24px;
  }
  
  .client-reviews-section {
    padding: 40px 0;
  }
  
  .client-reviews-section .section-heading h2 {
    font-size: 24px;
  }
  
  .news-section {
    padding: 40px 0;
  }
  
  .news-section .section-heading h2 {
    font-size: 24px;
  }
  
  .visa-services-section {
    padding: 40px 0;
  }
  
  .visa-services-section .section-heading h2 {
    font-size: 24px;
  }
  
  .section-heading h4 {
    font-size: 12px;
  }
  
  .section-heading p {
    font-size: 14px;
  }
  
  .news-ticker-section {
    padding: 10px 0;
  }
  
  .news-ticker-inner {
    animation: news-ticker 25s linear infinite;
  }
  
  .news-item {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  .header-area .main-nav .nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
  }
  
  .header-area .main-nav .nav li a {
    color: #333;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background: #22b3c1;
    color: #ffffff;
  }
}

/* Enhanced Section Spacing for Professional Flow */
.about-me-section {
  margin-top: 0;
  padding: 80px 0;
}

.amazing-deals {
  margin-top: 0;
  padding: 80px 0;
}

.gallery-section {
  margin-top: 0;
  padding: 80px 0;
}

.client-reviews-section {
  margin-top: 0;
  padding: 80px 0;
}

.news-section {
  margin-top: 0;
  padding: 80px 0;
}

.visa-services-section {
  margin-top: 0;
  padding: 80px 0;
}

/* Enhanced Visual Hierarchy */
.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 15px;
}

.section-heading .line-dec {
  margin: 20px auto 0;
}

/* Enhanced Card Spacing */
.album-card,
.review-item,
.news-card,
.visa-card,
.amazing-deals .item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.album-card:hover,
.review-item:hover,
.news-card:hover,
.visa-card:hover,
.amazing-deals .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Standardized Pagination Styles for All Sections */
.tour-pagination,
.gallery-pagination,
.reviews-pagination,
.news-pagination,
.visa-pagination {
  margin-top: 40px;
  text-align: center;
}

.tour-pagination .pagination,
.gallery-pagination .pagination,
.reviews-pagination .pagination,
.news-pagination .pagination,
.visa-pagination .pagination {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.tour-pagination .page-item,
.gallery-pagination .page-item,
.reviews-pagination .page-item,
.news-pagination .page-item,
.visa-pagination .page-item {
  margin: 0;
  list-style: none;
}

.tour-pagination .page-link,
.gallery-pagination .page-link,
.reviews-pagination .page-link,
.news-pagination .page-link,
.visa-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tour-pagination .page-link:hover,
.gallery-pagination .page-link:hover,
.reviews-pagination .page-link:hover,
.news-pagination .page-link:hover,
.visa-pagination .page-link:hover {
  background: #22b3c1;
  color: #ffffff;
  border-color: #22b3c1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 179, 193, 0.3);
}

.tour-pagination .page-item.active .page-link,
.gallery-pagination .page-item.active .page-link,
.reviews-pagination .page-item.active .page-link,
.news-pagination .page-item.active .page-link,
.visa-pagination .page-item.active .page-link {
  background: #22b3c1;
  color: #ffffff;
  border-color: #22b3c1;
  box-shadow: 0 4px 12px rgba(34, 179, 193, 0.3);
}

.tour-pagination .page-item.disabled .page-link,
.gallery-pagination .page-item.disabled .page-link,
.reviews-pagination .page-item.disabled .page-link,
.news-pagination .page-item.disabled .page-link,
.visa-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
  opacity: 0.6;
}

.tour-pagination .page-item.disabled .page-link:hover,
.gallery-pagination .page-item.disabled .page-link:hover,
.reviews-pagination .page-item.disabled .page-link:hover,
.news-pagination .page-item.disabled .page-link:hover,
.visa-pagination .page-item.disabled .page-link:hover {
  background: #f8f9fa;
  color: #adb5bd;
  transform: none;
  box-shadow: none;
}

.tour-pagination .page-link i,
.gallery-pagination .page-link i,
.reviews-pagination .page-link i,
.news-pagination .page-link i,
.visa-pagination .page-link i {
  font-size: 12px;
  font-weight: 600;
}

/* Responsive Pagination */
@media (max-width: 768px) {
  .tour-pagination,
  .gallery-pagination,
  .reviews-pagination,
  .news-pagination,
  .visa-pagination {
    margin-top: 30px;
  }
  
  .tour-pagination .pagination,
  .gallery-pagination .pagination,
  .reviews-pagination .pagination,
  .news-pagination .pagination,
  .visa-pagination .pagination {
    padding: 6px 12px;
    gap: 3px;
  }
  
  .tour-pagination .page-link,
  .gallery-pagination .page-link,
  .reviews-pagination .page-link,
  .news-pagination .page-link,
  .visa-pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tour-pagination .page-link,
  .gallery-pagination .page-link,
  .reviews-pagination .page-link,
  .news-pagination .page-link,
  .visa-pagination .page-link {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* Professional Text Styling for Dark Sections */
.client-reviews-section .section-heading h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client-reviews-section .section-heading p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Card Styling for Professional Look */
.client-reviews-section .review-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.client-reviews-section .review-item:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* 
---------------------------------------------
Tourist Shape Background Animations
--------------------------------------------- 
*/

/* ===== ABOUT ME SECTION - TOURIST SHAPES ===== */

.about-me-section {
  position: relative;
  overflow: hidden;
}

.about-me-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Airplane shape */
    radial-gradient(circle at 10% 20%, rgba(34, 179, 193, 0.1) 0%, transparent 8%),
    radial-gradient(circle at 15% 18%, rgba(34, 179, 193, 0.08) 0%, transparent 6%),
    radial-gradient(circle at 20% 16%, rgba(34, 179, 193, 0.06) 0%, transparent 4%),
    /* Landmark shapes */
    radial-gradient(ellipse at 85% 30%, rgba(26, 138, 148, 0.08) 0%, transparent 15%),
    radial-gradient(ellipse at 90% 35%, rgba(26, 138, 148, 0.06) 0%, transparent 12%),
    /* Compass shape */
    radial-gradient(circle at 20% 80%, rgba(34, 179, 193, 0.07) 0%, transparent 10%),
    radial-gradient(circle at 25% 85%, rgba(34, 179, 193, 0.05) 0%, transparent 8%),
    /* Map pin shapes */
    radial-gradient(circle at 75% 70%, rgba(26, 138, 148, 0.06) 0%, transparent 6%),
    radial-gradient(circle at 80% 75%, rgba(26, 138, 148, 0.04) 0%, transparent 4%);
  animation: tourist-shapes-float 25s ease-in-out infinite;
  z-index: 1;
}

.about-me-section .container {
  position: relative;
  z-index: 2;
}

@keyframes tourist-shapes-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translate(-15px, -10px) rotate(2deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(10px, -20px) rotate(-1deg);
    opacity: 0.7;
  }
  75% {
    transform: translate(-8px, 15px) rotate(1deg);
    opacity: 0.9;
  }
}

/* ===== TOUR EXPERIENCES SECTION - TOURIST SHAPES ===== */

.amazing-deals {
  position: relative;
  overflow: hidden;
}

.amazing-deals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Mountain shapes */
    radial-gradient(ellipse at 15% 25%, rgba(34, 179, 193, 0.08) 0%, transparent 20%),
    radial-gradient(ellipse at 20% 30%, rgba(34, 179, 193, 0.06) 0%, transparent 18%),
    radial-gradient(ellipse at 25% 35%, rgba(34, 179, 193, 0.04) 0%, transparent 16%),
    /* Camera shape */
    radial-gradient(circle at 80% 20%, rgba(26, 138, 148, 0.07) 0%, transparent 8%),
    radial-gradient(circle at 85% 22%, rgba(26, 138, 148, 0.05) 0%, transparent 6%),
    /* Suitcase shapes */
    radial-gradient(ellipse at 25% 75%, rgba(34, 179, 193, 0.06) 0%, transparent 12%),
    radial-gradient(ellipse at 30% 80%, rgba(34, 179, 193, 0.04) 0%, transparent 10%),
    /* Passport shape */
    radial-gradient(ellipse at 75% 65%, rgba(26, 138, 148, 0.05) 0%, transparent 10%),
    radial-gradient(ellipse at 80% 70%, rgba(26, 138, 148, 0.03) 0%, transparent 8%),
    /* Globe shape */
    radial-gradient(circle at 50% 50%, rgba(34, 179, 193, 0.03) 0%, transparent 25%);
  animation: travel-shapes-rotate 30s ease-in-out infinite;
  z-index: 1;
}

.amazing-deals .container {
  position: relative;
  z-index: 2;
}

@keyframes travel-shapes-rotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: rotate(120deg) scale(1.05);
    opacity: 0.7;
  }
  66% {
    transform: rotate(240deg) scale(0.95);
    opacity: 0.6;
  }
}

/* ===== ADDITIONAL TOURIST SHAPE ELEMENTS ===== */

/* Floating tourist icons */
.tourist-shape {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(34, 179, 193, 0.1);
  border-radius: 50%;
  animation: float-around 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.tourist-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(34, 179, 193, 0.2);
  border-radius: 50%;
}

.tourist-shape:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.tourist-shape:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 5s;
}

.tourist-shape:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 10s;
}

.tourist-shape:nth-child(4) {
  bottom: 20%;
  right: 10%;
  animation-delay: 15s;
}

@keyframes float-around {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-15px, -30px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(25px, -10px) rotate(270deg);
    opacity: 0.7;
  }
}

/* ===== RESPONSIVE TOURIST SHAPES ===== */

@media (max-width: 768px) {
  .about-me-section::before,
  .amazing-deals::before {
    opacity: 0.3;
    animation-duration: 40s;
  }
  
  .tourist-shape {
    display: none;
  }
}

/* ===== ACCESSIBILITY FOR TOURIST SHAPES ===== */

@media (prefers-reduced-motion: reduce) {
  .about-me-section::before,
  .amazing-deals::before {
    animation: none;
    opacity: 0.2;
  }
  
  .tourist-shape {
    animation: none;
    opacity: 0.1;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

.about-me-section,
.amazing-deals {
  will-change: background;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .about-me-section,
  .amazing-deals {
    will-change: auto;
  }
}

/* ===== STICKY WRAPPER NAVIGATION ===== */

.sticky-wrapper {
  position: sticky;
  top:  75px;
  z-index: 999;
  margin-top: 20px;
  transition: box-shadow 0.3s ease;
}

/* Enhanced sticky effect */
.sticky-wrapper.sticky-active {
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper .navbar {
  background: linear-gradient(135deg, #117d87 0%, #1a9ba8 100%) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* border-radius: 20px; */
  margin: 0 20px;
}

.sticky-wrapper .navbar {
  background: linear-gradient(135deg, #117d87 0%, #1a9ba8 100%) !important;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* border-radius: 0 0 20px 20px; */
}

.sticky-wrapper .navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  transition: all 0.3s ease;
}

.sticky-wrapper .navbar-brand:hover {
  color: #fff;
  transform: translateY(-2px);
}

.sticky-wrapper .navbar-brand .logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.sticky-wrapper .navbar-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-wrapper .navbar-brand small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* Navigation Links */
.sticky-wrapper .navbar-nav {
  gap: 10px;
}

.sticky-wrapper .nav-item , .nav li {
  position: relative;
}

.sticky-wrapper .nav-link , .nav li a{
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 20px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.sticky-wrapper .nav-link::before  , .nav li a::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.sticky-wrapper .nav-link:hover::before , .nav li a:hover::before{
  left: 100%;
}

.sticky-wrapper .nav-link:hover , .nav li a:hover{
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff !important;
}

.sticky-wrapper .nav-link.active  ,.nav li a.active{
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #fff !important;
  /* transform: translateY(-2px); */
}

.sticky-wrapper .nav-link.active::after , .nav li a.active::after{
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Dropdown Styling */
.sticky-wrapper .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  margin-top: 10px;
  min-width: 200px;
}

.sticky-wrapper .dropdown-item {
  color: #333;
  font-weight: 500;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.sticky-wrapper .dropdown-item:hover {
  background: rgba(34, 179, 193, 0.1);
  color: #22b3c1;
  transform: translateX(5px);
}

/* Custom Button */
.sticky-wrapper .custom-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 25px !important;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.sticky-wrapper .custom-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.sticky-wrapper .custom-btn:hover::before {
  left: 100%;
}

.sticky-wrapper .custom-btn:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}

/* Navbar Toggler - Matching Menu Trigger Style */
.sticky-wrapper .navbar-toggler {
  cursor: pointer;
  display: none;
  position: relative;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  margin-left: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.sticky-wrapper .navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sticky-wrapper .navbar-toggler.collapsed {
  background: rgba(255, 255, 255, 0.3);
}

.sticky-wrapper .navbar-toggler span,
.sticky-wrapper .navbar-toggler span:before,
.sticky-wrapper .navbar-toggler span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.sticky-wrapper .navbar-toggler span:before,
.sticky-wrapper .navbar-toggler span:after {
  content: "";
  width: 75%;
}

.sticky-wrapper .navbar-toggler span {
  top: 16px;
}

.sticky-wrapper .navbar-toggler span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.sticky-wrapper .navbar-toggler span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.sticky-wrapper .navbar-toggler.collapsed span,
.sticky-wrapper .navbar-toggler.collapsed span:before,
.sticky-wrapper .navbar-toggler.collapsed span:after {
  background-color: transparent;
  width: 100%;
}

.sticky-wrapper .navbar-toggler.collapsed span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.sticky-wrapper .navbar-toggler.collapsed span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.sticky-wrapper .navbar-toggler-icon {
  display: none;
}

.sticky-wrapper .navbar-collapse {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border-radius: 0 0 15px 15px;
  margin-top: 10px;
}

/* Desktop navbar-collapse */
@media (min-width: 992px) {
  .sticky-wrapper .navbar-collapse {
    display: block !important;
    max-height: none;
    opacity: 1;
    /* background: transparent; */
    backdrop-filter: none;
    border-radius: 0;
    margin-top: 0;
  }
}

/* Mobile navbar-collapse */
@media (max-width: 991px) {
  .sticky-wrapper .navbar-collapse {
    display: none !important;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    /* background: rgba(255, 255, 255, 0.95); */
  }

  .sticky-wrapper .navbar-collapse.show {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
}

/* Desktop navbar styles */
@media (min-width: 992px) {
  .sticky-wrapper .navbar-nav {
    flex-direction: row;
    padding: 0;
    gap: 0;
  }

  .sticky-wrapper .navbar-nav .nav-item , .nav li {
    margin: 0;
  }

  .sticky-wrapper .navbar-nav .nav-link , .nav li a{
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px;
    /* border-radius: 6px; */
    transition: all 0.3s ease;
    text-align: center;
    /* color: #fff !important; */
  }

  .sticky-wrapper .navbar-nav .nav-link:hover , .nav li a:hover{
    /* background: rgba(255, 255, 255, 0.1); */
    transform: translateY(-2px);
  }

  .sticky-wrapper .navbar-nav .nav-link.active , .nav li a.active{
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }
}

/* Mobile navbar styles */
@media (max-width: 991px) {
  .sticky-wrapper .navbar-nav {
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
  }

  .sticky-wrapper .navbar-nav .nav-item , .nav li {
    margin: 0;
  }

  .sticky-wrapper .navbar-nav .nav-link , .nav li a{
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    /* border-radius: 8px; */
    transition: all 0.3s ease;
    text-align: center;
    /* color: #333 !important; */
  }

  .sticky-wrapper .navbar-nav .nav-link:hover , .nav li a:hover{
    /* background: rgba(34, 179, 193, 0.1); */
    /* color: #22b3c1 !important; */
    transform: translateX(5px);
  }

  .sticky-wrapper .navbar-nav .nav-link.active , .nav li a.active{
    background: linear-gradient(135deg, #22b3c1 0%, #1a9ba8 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(34, 179, 193, 0.3);
    font-weight: 600;
  }
}

/* Responsive Design for Sticky Wrapper */
@media (min-width: 992px) {
  .sticky-wrapper .navbar-toggler {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .sticky-wrapper .navbar-toggler {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  
  .sticky-wrapper .navbar {
    position: relative;
  }
}

@media (max-width: 1199px) {
  .sticky-wrapper .navbar-brand {
    font-size: 20px;
  }
  
  .sticky-wrapper .navbar-brand .logo {
    height: 40px;
  }
  
  .sticky-wrapper .nav-link , .nav li a{
    font-size: 13px;
    padding: 10px 16px !important;
  }
  
  .sticky-wrapper .custom-btn {
    padding: 10px 20px !important;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .sticky-wrapper .navbar {
    padding: 10px 0;
  }
  
  .sticky-wrapper .navbar-brand {
    font-size: 18px;
  }
  
  .sticky-wrapper .navbar-brand .logo {
    height: 35px;
  }
  
  .sticky-wrapper .navbar-brand small {
    font-size: 10px;
  }
  
  .sticky-wrapper .nav-link , .nav li a{
    font-size: 12px;
    padding: 8px 14px !important;
  }
  
  .sticky-wrapper .custom-btn {
    padding: 8px 16px !important;
    font-size: 12px;
  }
  
  .sticky-wrapper .navbar-nav {
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .sticky-wrapper .navbar {
    padding: 8px 0;
    /* border-radius: 0 0 15px 15px; */
  }
  
  .sticky-wrapper .navbar-brand {
    font-size: 16px;
  }
  
  .sticky-wrapper .navbar-brand .logo {
    height: 30px;
  }
  
  .sticky-wrapper .navbar-brand small {
    font-size: 9px;
  }
  
  .sticky-wrapper .nav-link , .nav li a{
    font-size: 11px;
    padding: 6px 12px !important;
  }
  
  .sticky-wrapper .custom-btn {
    padding: 6px 12px !important;
    font-size: 11px;
  }
  
  .sticky-wrapper .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    margin-top: 5px;
  }
  
  .sticky-wrapper .dropdown-item {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .sticky-wrapper .navbar {
    padding: 6px 0;
  }
  
  .sticky-wrapper .navbar-brand {
    font-size: 14px;
  }
  
  .sticky-wrapper .navbar-brand .logo {
    height: 25px;
  }
  
  .sticky-wrapper .navbar-brand small {
    font-size: 8px;
  }
  
  .sticky-wrapper .nav-link , .nav li a{
    font-size: 10px;
    padding: 5px 10px !important;
  }
  
  .sticky-wrapper .custom-btn {
    padding: 5px 10px !important;
    font-size: 10px;
  }
  
  .sticky-wrapper .navbar-toggler {
    padding: 6px 10px;
  }
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .social-links i , .contact-options i , .weather-info i {
  margin-left: 12px;
}


  
/* Widget positioning for RTL */
[dir="rtl"] .header-widgets {
  margin: 0px;
}

[dir="rtl"] .language-widget {
  margin-left: 0;
  margin-right: 20px;
}

[dir="rtl"] .weather-widget {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .time-widget {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .current-language {
  flex-direction: row-reverse;
}

[dir="rtl"] .current-language span {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .current-language i {
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .language-dropdown {
  right: 0;
  left: auto;
}

[dir="rtl"] .language-option span {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .language-option .flag-icon {
  margin-left: 10px;
  margin-right: 10px;
}

[dir="rtl"] .header-area .main-nav .nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-area .main-nav .nav li {
  margin-left: 0;
  margin-right: 20px;
}

[dir="rtl"] .header-area .main-nav .nav li:last-child {
  margin-right: 0;
}

[dir="rtl"] .header-area .main-nav .logo {
  margin-right: 0;
  margin-left: 20px;
}

[dir="rtl"] .header-area .main-nav .menu-trigger {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .section-heading {
  text-align: center;
}

[dir="rtl"] .section-heading h2,
[dir="rtl"] .section-heading h4,
[dir="rtl"] .section-heading p {
  text-align: center;
}

/* Keep titles centered in Arabic */
[dir="rtl"] .page-heading h2,
[dir="rtl"] .page-heading h4,
[dir="rtl"] .page-heading p {
  text-align: center;
}

[dir="rtl"] .second-page-heading h2,
[dir="rtl"] .second-page-heading h4,
[dir="rtl"] .second-page-heading p {
  text-align: center;
}

/* Tour experience images border fix for RTL */
[dir="rtl"] .amazing-deals .item .image {
  overflow: hidden;
}

[dir="rtl"] #faq-content {
  justify-content: end;
}

[dir="rtl"] .amazing-deals .container .row:first-child {
  justify-content: end;
}

[dir="rtl"] .amazing-deals .item .image img {
  border-radius: 8px;
}

[dir="rtl"] .about-me-content {
  text-align: right;
}

[dir="rtl"] .about-me-content h3,
[dir="rtl"] .about-me-content .lead,
[dir="rtl"] .about-me-content p {
  text-align: right;
}

[dir="rtl"] .about-me-content h3::after {
  right: 0;
}

[dir="rtl"] .expertise-grid {
  direction: rtl;
}

[dir="rtl"] .personal-info {
  text-align: right;
}

[dir="rtl"] .info-item {
  text-align: right;
}

[dir="rtl"] .info-item i {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .cta-buttons {
  text-align: right;
}

[dir="rtl"] .cta-buttons .main-button,
[dir="rtl"] .cta-buttons .border-button {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .cta-buttons .main-button:last-child,
[dir="rtl"] .cta-buttons .border-button:last-child {
  margin-right: 0;
}

[dir="rtl"] .amazing-deals .item {
  text-align: right;
}

[dir="rtl"] .amazing-deals .item h4,
[dir="rtl"] .amazing-deals .item p {
  text-align: right;
}

[dir="rtl"] .amazing-deals .item .main-button {
  text-align: right;
}

[dir="rtl"] .gallery-section .album-card {
  text-align: right;
}

[dir="rtl"] .gallery-section .album-info h3,
[dir="rtl"] .gallery-section .album-info p {
  text-align: right;
}

[dir="rtl"] .client-reviews-section .review-item {
  text-align: right;
}

[dir="rtl"] .client-reviews-section .review-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .client-reviews-section .client-info {
  flex-direction: row-reverse;
}

[dir="rtl"] .client-reviews-section .client-photo {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .client-reviews-section .rating {
  text-align: left;
}

[dir="rtl"] .client-reviews-section .review-content p {
  text-align: right;
}

[dir="rtl"] .client-reviews-section .review-footer {
  text-align: right;
}

[dir="rtl"] .news-section .news-card {
  text-align: right;
}

[dir="rtl"] .news-section .news-content h3,
[dir="rtl"] .news-section .news-content p {
  text-align: right;
}

[dir="rtl"] .news-section .news-meta {
  text-align: right;
}

[dir="rtl"] .news-section .read-more-btn {
  text-align: right;
}

[dir="rtl"] .visa-services-section .visa-card {
  text-align: right;
}

[dir="rtl"] .visa-services-section .visa-card-body h3 {
  text-align: right;
}


[dir="rtl"] .visa-services-section .visa-detail-item i {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .visa-services-section .visa-detail-item .label {
  text-align: right;
}

[dir="rtl"] .visa-services-section .visa-detail-item .value {
  text-align: right;
}

[dir="rtl"] .time-value {
  margin-right: 10px;
}

[dir="rtl"] .thumbnails {
  flex-direction: row-reverse;
  justify-content: end;
}

[dir="rtl"] .faqs-section .section-heading {
  text-align: right;
}

[dir="rtl"] .faqs-section .section-heading h2,
[dir="rtl"] .faqs-section .section-heading p {
  text-align: right;
}

[dir="rtl"] .faqs-section .faq-item {
  text-align: right;
}

[dir="rtl"] .faqs-section .faq-question {
  text-align: right;
}

[dir="rtl"] .faqs-section .faq-question h4 {
  text-align: right;
}

[dir="rtl"] .faqs-section .faq-question i {
  margin-left: 0;
  margin-right: 10px;
}

[dir="rtl"] .faqs-section .faq-answer p {
  text-align: center;
}

/* FAQs page centering for Arabic */
[dir="rtl"] .faqs-section .section-heading {
  text-align: center;
}

[dir="rtl"] .faqs-section .section-heading h2,
[dir="rtl"] .faqs-section .section-heading p {
  text-align: center;
}

[dir="rtl"] .faqs-section .faq-item {
  text-align: center;
}

[dir="rtl"] .faqs-section .faq-question {
  text-align: center;
}

[dir="rtl"] .faqs-section .faq-question h4 {
  text-align: center;
}

[dir="rtl"] .contact-section {
  text-align: right;
}

[dir="rtl"] .contact-section h3,
[dir="rtl"] .contact-section p {
  text-align: right;
}

[dir="rtl"] .contact-buttons {
  text-align: right;
}

[dir="rtl"] .contact-buttons .main-button,
[dir="rtl"] .contact-buttons .border-button {
  margin-left: 0;
  margin-right: 15px;
}

[dir="rtl"] .contact-buttons .main-button:last-child,
[dir="rtl"] .contact-buttons .border-button:last-child {
  margin-right: 0;
}

[dir="rtl"] .call-to-action {
  text-align: right;
}

[dir="rtl"] .call-to-action h2,
[dir="rtl"] .call-to-action h4 {
  text-align: right;
}

[dir="rtl"] .call-to-action .border-button {
  text-align: right;
}

[dir="rtl"] footer {
  text-align: center;
}

[dir="rtl"] footer p {
  text-align: center;
}

/* Review Modal RTL Support */
[dir="rtl"] .modal-content {
  text-align: right;
}

[dir="rtl"] .modal-header h3 {
  text-align: right;
}

[dir="rtl"] .modal-body {
  text-align: right;
}

[dir="rtl"] .form-group label {
  text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
  text-align: right;
}

[dir="rtl"] .form-group input::placeholder,
[dir="rtl"] .form-group textarea::placeholder {
  text-align: right;
}

[dir="rtl"] .form-actions {
  text-align: right;
}

[dir="rtl"] .submit-review-btn {
  margin-left: 0;
  margin-right: auto;
}

/* Language Loading Indicator */
.language-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.language-loading.active {
  opacity: 1;
  visibility: visible;
}

.language-loading-content {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #22b3c1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.language-loading-text {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.language-loading-text i {
  margin-left: 8px;
  color: #22b3c1;
}

[dir="rtl"] .language-loading-text i {
  margin-left: 0;
  margin-right: 8px;
}

/* Language switching button loading state */
.language-switching .current-language {
  opacity: 0.7;
  pointer-events: none;
}

.language-switching .current-language i {
  animation: spin 1s linear infinite;
}

[dir="rtl"] .amazing-deals .item {
  padding-right:0px !important ;
}

[dir="rtl"] .weather-location {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 14px;
}

[dir="rtl"] .weather-details {
  border-left: 0px;
}

[dir="rtl"] .header-area .main-nav  {
  justify-content: space-between !important;
}

/* Responsive RTL adjustments */
@media (max-width: 768px) {
  [dir="rtl"] .language-widget {
    margin-right: 10px;
  }
  
  [dir="rtl"] .header-area .main-nav .nav li {
    margin-right: 10px;
  }
  
  [dir="rtl"] .header-area .main-nav .logo {
    margin-left: 10px;
  }
  
  [dir="rtl"] .header-area .main-nav .menu-trigger {
    margin-right: 10px;
  } 

}

/* ===== MOBILE WIDGETS ROW STYLES ===== */

/* Mobile Widgets Row Container */
.mobile-widgets-row {
  background: linear-gradient(135deg, #324c60 0%, #1a9ba8 100%);
  /* border-bottom: 1px solid #dee2e6; */
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-widgets-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Mobile Widget Base Styles */
.mobile-widget {
  flex: 1;
  /* min-width: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Weather Widget */
.weather-widget-mobile .weather-info {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(34, 179, 193, 0.95) 0%, rgba(26, 138, 148, 0.95) 100%);
  border-radius: 20px;
  padding: 8px 12px;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(34, 179, 193, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-widget-mobile .weather-location {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.weather-widget-mobile .weather-location i {
  color: #fff;
  font-size: 12px;
  margin-right: 4px;
}

.weather-widget-mobile .weather-location .city {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-widget-mobile .weather-details {
  display: flex;
  align-items: center;
}

.weather-widget-mobile .weather-icon {
  color: #fff;
  font-size: 14px;
  margin-right: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.weather-widget-mobile .temperature {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Time Widget */
.time-widget-mobile .time-info {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
  border-radius: 20px;
  padding: 8px 12px;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(52, 73, 94, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-widget-mobile .time-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.time-widget-mobile .time-zone:last-child {
  margin-bottom: 0;
}

.time-widget-mobile .time-label {
  color: #ecf0f1;
  font-size: 10px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.time-widget-mobile .time-value {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Language Widget */
.language-widget-mobile {
  position: relative;
  z-index: 1001;
}

.language-widget-mobile .language-selector {
  position: relative;
  cursor: pointer;
}

.language-widget-mobile .current-language {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(35, 35, 35, 0.95) 100%);
  border-radius: 20px;
  padding: 8px 12px;
  min-width: 80px;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.language-widget-mobile .current-language:hover {
  transform: translateY(-1px);
}

.language-widget-mobile .flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  margin-right: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-widget-mobile .current-language span {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-right: 4px;
}

.language-widget-mobile .current-language i {
  color: #fff;
  font-size: 10px;
  transition: transform 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.language-widget-mobile .language-selector.active .current-language i {
  transform: rotate(180deg);
}

.language-widget-mobile .language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e9ecef;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
  margin-top: 5px;
}

.language-widget-mobile .language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-widget-mobile .language-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}

.language-widget-mobile .language-option:last-child {
  border-bottom: none;
}

.language-widget-mobile .language-option:hover {
  background-color: #f8f9fa;
}

.language-widget-mobile .language-option .flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  margin-right: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-widget-mobile .language-option span {
  color: #2a2a2a;
  font-size: 12px;
  font-weight: 500;
}

/* Responsive adjustments for mobile widgets */
@media (max-width: 576px) {
  .mobile-widgets-container {
    gap: 6px;
  }
  
  .weather-widget-mobile .weather-info {
    min-width: 100px;
    padding: 6px 10px;
  }
  
  .weather-widget-mobile .weather-location .city {
    font-size: 10px;
  }
  
  .weather-widget-mobile .temperature {
    font-size: 11px;
  }
  
  .time-widget-mobile .time-info {
    min-width: 90px;
    padding: 6px 10px;
  }
  
  .time-widget-mobile .time-label {
    font-size: 9px;
  }
  
  .time-widget-mobile .time-value {
    font-size: 10px;
  }
  
  .language-widget-mobile .current-language {
    min-width: 70px;
    padding: 6px 10px;
  }
  
  .language-widget-mobile .current-language span {
    font-size: 10px;
  }
  
  .language-widget-mobile .flag-icon {
    width: 14px;
    height: 10px;
    margin-right: 4px;
  }
}

@media (max-width: 480px) {
  .mobile-widgets-container {
    flex-direction: row;
    gap: 8px;
  }
  
  .mobile-widget {
    width: 100%;
    justify-content: center;
  }
  
  .weather-widget-mobile .weather-info,
  .time-widget-mobile .time-info,
  .language-widget-mobile .current-language {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* Hide desktop widgets on mobile */
@media (max-width: 991px) {
  .header-widgets {
    display: none !important;
  }
}

/* Show mobile widgets only on mobile */
@media (min-width: 992px) {
  .mobile-widgets-row {
    display: none !important;
  }
}

/* RTL Support for Mobile Widgets */
[dir="rtl"] .mobile-widgets-container {
  direction: rtl;
}

[dir="rtl"] .weather-widget-mobile .weather-location {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .weather-widget-mobile .weather-location i {
  margin-right: 0;
  margin-left: 4px;
}

[dir="rtl"] .weather-widget-mobile .weather-icon {
  margin-right: 0;
  margin-left: 4px;
}

[dir="rtl"] .language-widget-mobile .flag-icon {
  margin-right: 0;
  margin-left: 6px;
}

[dir="rtl"] .language-widget-mobile .current-language span {
  margin-right: 0;
  margin-left: 4px;
}

[dir="rtl"] .language-widget-mobile .language-option .flag-icon {
  margin-right: 0;
  margin-left: 8px;
}

[dir="rtl"] .language-widget-mobile .language-dropdown {
  left: auto;
  right: 0;
}

/* RTL responsive adjustments for mobile widgets */
@media (max-width: 576px) {
  [dir="rtl"] .weather-widget-mobile .weather-location {
    margin-left: 4px;
  }
  
  [dir="rtl"] .language-widget-mobile .flag-icon {
    margin-left: 4px;
  }
}










