*,::before,::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Thin.ttf);
    font-weight: 100;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-ExtraLight.ttf);
    font-weight: 200;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Light.ttf);
    font-weight: 300;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-ExtraBold.ttf);
    font-weight: 800;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Black.ttf);
    font-weight: 900;
}

body {
    font-family: var(--bodyFont);
    font-size: 16px;
}
:root{
    --primaryColor:#004aad;
    --themeColor: #fb7b26;
    --secondaryColor: #000000;
    --textColor:#2e2d2d ;
    --whiteColor: #ffffff;
    --bodyFont: "Poppins"; 
    --iconFont: "Font Awesome 5 Free"; 
}
h1,h2,h3,h4,h5{
    color: var(--secondaryColor);
}
h2{
    font-size: 36px;
    font-weight: 700;
}
h3{
    font-size: 20px;
    font-weight: 700;
}
h4{
    font-size: 18px;
    font-weight: 400;
    color: var(--themeColor);
    line-height: 30px;
}
h5{
    font-size: 16px;
    font-weight: 700;
}
header,section,.headerInner,.headerBottom,footer,.footerTop,.footerBottom{
    width: 100%;
    float: left;
}
p{
    font-size: 16px;
    line-height: 1.75rem;
    font-weight: 400;
    color: var(--textColor);
}
a{
    display: inline-block;
    text-decoration: none;
    color: var(--secondaryColor);
    font-weight: 500;
    font-size: 15px;
}
ul.contentlist li{
    position: relative;
    padding: 5px 0 5px 30px;
    line-height: 30px;
    color: var(--secondaryColor);
    font-size: 16px;
    font-weight: 500;
}
ul.contentlist li:hover{
    color: var(--primaryColor);
}
ul.contentlist li::before{
    position: absolute;
    content: "\f35a";
    top: 6px;
    left: 0;
    font-family: var(--iconFont);
    font-size: 16px;
    font-weight: 900;
    color: var(--primaryColor);
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.contentTitle h2{
  font-size: 2.5rem;
  font-weight: 700;
  margin:  0 0 15px;
}
span.sub-heading{
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #1259b4, #977712);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

section {
    padding: 70px 0;
}
a.creative-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 15px;
  background-color: var(--themeColor);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
a.creative-btn .btn-icon {
  width: 40px;
  height: 40px;
  background-color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
a.creative-btn .btn-text {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--whiteColor);
}
a.creative-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
a.creative-btn .btn-icon::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
}
a.creative-btn .btn-icon i {
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s ease;
}
a.creative-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
a.creative-btn:hover .btn-icon i {
  transform: translateX(5px);
}

header.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: 0.4s ease;
  background-color: var(--whiteColor);
}

header.main-header.scrolled {
  background-color: var(--whiteColor);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

header.main-header .navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--whiteColor);
}
header.main-header .navbar-brand img{
  height: 55px;
}

header.main-header .logo-text span {
  color: var(--themeColor);
}

header.main-header ul.navbar-nav li .nav-link {
  color: var(--secondaryColor);
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  padding: 0;
}
header.main-header .call-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header.main-header .country-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--themeColor);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    
}

header.main-header .call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

header.main-header ul.navbar-nav li .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: var(--themeColor);
  transition: 0.3s;
}

header.main-header ul.navbar-nav li .nav-link:hover::after {
  width: 100%;
}
header.main-header a.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondaryColor);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
header.main-header a.call-btn .icon-wrap {
  width: 32px;
  height: 32px;
  background-color: var(--primaryColor);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

header.main-header a.call-btn i {
  font-size: 13px;
  color: var(--whiteColor);
}

header.main-header .call-btn:hover .icon-wrap {
  background-color: var(--themeColor);
  color: var(--secondaryColor);
}

header.main-header .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px 10px 24px;
  background-color: var(--themeColor);
  color: #111;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
header.main-header .book-btn .arrow-wrap {
  width: 34px;
  height: 34px;
  background-color: #111;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

header.main-header .book-btn i {
  font-size: 13px;
  transition: 0.3s ease;
}

header.main-header .book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

header.main-header .book-btn:hover .arrow-wrap {
  background-color: var(--secondaryColor);
}

header.main-header .book-btn:hover i {
  transform: translateX(4px);
}
header.main-header .navbar-toggler {
  border: none;
  color: var(--whiteColor);
  background-color: var(--themeColor);
  font-size: 24px;
}

section.creative-hero {
  position: relative;
  padding: 170px 0 120px;
  background-color: var(--primaryColor);
  overflow: hidden;
}
section.creative-hero .hero-overlay-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-color: #1976d2;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

section.creative-hero .creative-content {
  position: relative;
  z-index: 2;
  color: var(--whiteColor);
}

section.creative-hero .creative-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--whiteColor);
}

section.creative-hero .creative-content h1 span {
  color: var(--themeColor);
}

section.creative-hero .creative-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 450px;
  color: var(--whiteColor);
}
section.creative-hero .creative-image {
  position: relative;
  z-index: 2;
  display: inline-block;
}
section.creative-hero .creative-image::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1d5c3, #1565c0);
  border-radius: 35px;
  z-index: -1;
  opacity: 0.8;
  transition: 0.4s ease;
}
section.creative-hero .creative-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 35px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35),
      0 10px 25px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}
section.creative-hero .creative-image:hover::before {
  top: 15px;
  left: -15px;
}
section.creative-hero .creative-image:hover img {
  transform: translateY(-10px);
}
section.creative-hero .creative-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 5px;
  background-color: var(--themeColor);
}

section.about-section .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

section.about-section .about-subtitle {
  max-width: 700px;
  margin: auto;
  color: #555;
}
section.about-section .about-box {
  background-color: var(--whiteColor);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

section.about-section .about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

section.about-section .about-box .about-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primaryColor), #1976d2);
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 26px;
}

section.about-section .about-box h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

section.about-section .about-box p {
  font-size: 0.95rem;
  color: #666;
}
section.about-section .about-mission h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

section.about-section .about-mission p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: var(--whiteColor);
  line-height: 1.7;
}

section.about-section .goal-box {
  background: linear-gradient(135deg, var(--primaryColor), #1565c0);
  padding: 40px 40px;
  border-radius: 20px;
  color: var(--whiteColor);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  overflow: hidden;
}
section.about-section .goal-box::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}
section.about-section .goal-badge {
  background-color: var(--themeColor);
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}


section.services-section {
  background-color: #f8f9fb;
}
section.services-section .section-title {
  font-weight: 700;
  font-size: 34px;
}
section.services-section .section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
section.services-section .service-card ul {
    padding-left: 0;
    margin: 10px 0 0 0;
}
section.services-section .service-card ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

section.services-section .service-card ul li::before {
    content: "\f00c"; 
    font-family: var(--iconFont);
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #007BFF; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

section.services-section .service-card ul li:hover::before {
    background-color: var(--themeColor);
    transform: scale(1.2);
}
section.services-section .service-card {
  background-color: var(--whiteColor);
  padding: 25px;
  border-radius: 18px;
  height: 100%;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid #eee;
  overflow: hidden;
}

section.services-section .service-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg,var(--primaryColor),#1976d2);
  bottom: 0;
  left: 0;
  transition: 0.4s;
}

section.services-section .service-card:hover::before {
  width: 100%;
}

section.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


section.services-section .service-card .service-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  background-color: #f1f6ff;
  color: #1976d2;
  transition: all 0.4s ease;
}

section.services-section .service-card .service-icon::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(25,118,210,0.25);
  transition: all 0.4s ease;
}

section.services-section .service-card:hover .service-icon {
  background: linear-gradient(135deg,var(--primaryColor),#1976d2);
  color: var(--whiteColor);
  transform: rotate(8deg) scale(1.08);
}

section.services-section .service-card:hover .service-icon::after {
  transform: rotate(25deg);
  border-color: rgba(25,118,210,0.6);
}
section.services-section .service-card h5 {
  font-weight: 600;
  margin: 20px 0;
}
section.why-section {
  background-color: var(--whiteColor);
}

section.why-section .why-title {
  font-weight: 700;
  font-size: 34px;
}

section.why-section .why-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

section.why-section .why-card {
  background-color: var(--whiteColor);
  padding: 40px 30px;
  border-radius: 18px;
  position: relative;
  height: 100%;
  border: 1px solid #f0f0f0;
  transition: 0.35s ease;
  overflow: hidden;
}
section.why-section .why-card .why-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(25,118,210,0.07);
}

section.why-section .why-card .why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,var(--primaryColor),#1976d2);
  color: var(--whiteColor);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

section.why-section  .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  border-color: #e3ecff;
}

section.why-section  .why-card:hover .why-icon {
  transform: rotate(8deg);
}

section.why-section .why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

section.why-section  .why-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

section.cta-layer-advanced-section {
  padding: 80px 0;
  background-color: var(--whiteColor);
  position: relative;
  overflow: visible;
}

section.cta-layer-advanced-section .cta-layer-advanced-box {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 30px;
}
section.cta-layer-advanced-section .cta-layer-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 105%;
  height: 120%;
  background-color: #e3f2fd;
  border-radius: 30px;
  transform: rotate(-2deg);
  z-index: 1;
  box-shadow: 0 25px 60px rgba(0, 123, 255, 0.1);
  overflow: hidden;
}
section.cta-layer-advanced-section .cta-layer-bg::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  border: 2px dashed rgba(13,71,161,0.15);
  border-radius: 50%;
  top: -60%;
  left: -50%;
  transform: rotate(15deg);
}
section.cta-layer-advanced-section .cta-layer-content {
  position: relative;
  z-index: 2;
  background-color: var(--whiteColor);
  border-radius: 25px;
  padding: 50px 60px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

section.cta-layer-advanced-section .cta-layer-content:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

section.cta-layer-advanced-section .cta-layer-content h3 {
  font-size: 28px;
  color: var(--primaryColor);
  font-weight: 700;
  margin-bottom: 12px;
}

section.cta-layer-advanced-section .cta-layer-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.6;
}
section.cta-layer-advanced-section a.cta-layer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,var(--primaryColor),#1976d2); /* blue button */
  color: var(--whiteColor);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

section.cta-layer-advanced-section a.cta-layer-btn i {
  transition: 0.3s;
}

section.cta-layer-advanced-section a.cta-layer-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(13,71,161,0.3);
}

section.cta-layer-advanced-section a.cta-layer-btn:hover i {
  transform: translateX(4px);
}

section.cta-layer-advanced-section .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #1976d2;
  border-radius: 50%;
  z-index: 3;
  animation: floatDots 6s infinite alternate;
}

section.cta-layer-advanced-section .dot1 { 
  top: 10%; 
  left: 5%; 
}
section.cta-layer-advanced-section .dot2 { 
  bottom: 15%; 
  right: 10%; 
}
section.cta-layer-advanced-section .dot3 { 
  top: 40%; 
  right: -5%; 
}

ection.dream-destination{
padding:80px 0;
background-color:#f6f8fb;
}

section.dream-destination .destination-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

section.dream-destination .destination-grid .destination-card{
    background-color:var(--whiteColor);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.4s;
}

section.dream-destination .destination-grid .destination-img{
    overflow:hidden;
    transition:.4s;
}
section.dream-destination .destination-grid .destination-content{
    padding:18px;
    text-align:center;
}

section.dream-destination .destination-grid .destination-content h3{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:#222;
}

section.dream-destination .destination-grid .destination-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

section.dream-destination .destination-grid .destination-card:hover img{
    transform:scale(1.1);
}
section.dream-destination .destination-grid .destination-card img{
    width:100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition:.4s;
}

section.dream-destination .destination-grid .price-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin:12px 0 0;
    padding:6px 14px;
    background:linear-gradient(45deg,#0d47a1,#1976d2);
    color:var(--whiteColor);
    font-size:13px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:.3s;
}
section.dream-destination .destination-grid .price-tag a{
    color: var(--whiteColor);
}

section.dream-destination .destination-grid .price-tag i{
    font-size:14px;
}

section.dream-destination .destination-grid .destination-card:hover .price-tag{
    background:linear-gradient(45deg, #ff812e, #f7a166);
    color:var(--whiteColor);
}

section.terms-section,
section.privacy-section{
	padding:120px 0 70px;
	background-color: rgb(211 230 255 / 17%);
}

section.terms-section h1,
section.privacy-section h1{
	font-size:30px;
	font-weight:700;
	color:var(--primaryColor);
	margin:0 0 30px;
	position:relative;
    padding:0 0 15px;
}

section.terms-section h1:after,
section.privacy-section h1:after{
	content:"";
	width:80px;
	height:4px;
	background:linear-gradient(90deg,var(--primaryColor),var(--themeColor));
	position:absolute;
	left:0;
	bottom:0;
	border-radius:3px;
}

section.terms-section h2,
section.privacy-section h2{
	font-size:20px;
	font-weight:600;
	color:#1a1a1a;
	margin:40px 0 15px;
	position:relative;
	padding-left:18px;
}

section.terms-section h2:before,
section.privacy-section h2:before{
	content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 5px;
    height: 20px;
    background-color: var(--primaryColor);
    border-radius: 3px;
}
section.terms-section h3,
section.privacy-section h3{
	font-size:18px;
	font-weight:600;
	color:#333;
	margin-top:25px;
	margin-bottom:10px;
}

section.terms-section p,
section.privacy-section p{
	font-size:16px;
	line-height:1.8;
	color:#555;
	margin:0 0 18px;
}

section.terms-section ul,
section.privacy-section ul{
	margin:15px 0;
	padding-left:0;
}
section.terms-section ul li,
section.privacy-section ul li{
	position:relative;
	padding-left:32px;
	margin-bottom:12px;
	font-size:16px;
	color:#444;
	line-height:1.7;
}

section.terms-section ul li:before,
section.privacy-section ul li:before{
	content:"";
	position:absolute;
	left:0;
	top:8px;
	width:10px;
	height:10px;
	background-color: var(--themeColor);
	border-radius:50%;
	box-shadow:0 0 0 3px rgba(13,71,161,0.15);
}


footer.footer-travel .footer-bottom{
	border-top:1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

footer.footer-travel .footer-bottom .footer-bottom-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}

footer.footer-travel .footer-bottom .footer-bottom p{
	margin:0;
	color:#ccc;
	font-size:14px;
}

footer.footer-travel .footer-bottom .footer-legal a{
	color:#fff;
	margin-left:20px;
	font-size:14px;
	position:relative;
}

footer.footer-travel .footer-bottom .footer-legal a:after{
	content:"";
	position:absolute;
	left:0;
	bottom:-3px;
	width:0;
	height:2px;
	background-color:var(--themeColor);
	transition:0.3s;
}

footer.footer-travel .footer-bottom .footer-legal a:hover:after{
	width:100%;
}

footer.footer-travel .footer-bottom .footer-legal a:hover{
	color: var(--themeColor);
}


@keyframes floatDots {
  0% { transform: translateY(0) translateX(0); opacity: 0.7; }
  50% { transform: translateY(-8px) translateX(4px); opacity: 1; }
  100% { transform: translateY(0) translateX(0); opacity: 0.7; }
}

footer.footer-travel {
  background: linear-gradient(135deg, #004aad, #00bfff);
  color: var(--whiteColor);
  position: relative;
}
footer.footer-travel .footer-content{
  padding: 60px 0;
}
footer.footer-travel a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: 0.3s;
}
footer.footer-travel  a:hover {
  color: var(--themeColor);
}
footer.footer-travel .footer-box h5 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 25px;
  padding: 0 0 10px;
  color: #fff;
}
footer.footer-travel .footer-box h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), #ffcc00);
  border-radius: 2px;
}
footer.footer-travel .footer-box h5::before {
  content: "";
  position: absolute;
  left: 55px;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: var(--themeColor);
  border-radius: 50%;
}

footer.footer-travel .footer-links li {
  margin-bottom: 10px;
}

footer.footer-travel  .footer-contact li {
  margin-bottom: 10px;
}

footer.footer-travel  .footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  text-align: center;
}

 footer.footer-travel .footer-social a:hover {
  background-color: var(--themeColor);
  color: var(--whiteColor);
}
footer.footer-travel .footer-box .footer-text-logo {
  font-size: 25px;
  font-weight: 800;
  color: var(--whiteColor);
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
footer.footer-travel .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-travel .footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--whiteColor);
  transition: 0.3s ease;
}

footer.footer-travel .footer-contact li i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: var(--whiteColor);
  color: var(--themeColor);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
  transition: 0.3s ease;
}

footer.footer-travel .footer-contact li:hover {
  color: #fff;
  transform: translateX(5px);
}

footer.footer-travel .footer-contact li:hover i {
  background-color: var(--themeColor);
  color: var(--whiteColor);
}
footer.footer-travel .footer-contact li a {
  text-decoration: none;
  transition: 0.3s ease;
}
footer.footer-travel .footer-contact li a:hover {
  color: var(--themeColor);
}
.footer-text-logo .logo-highlight {
  color: var(--themeColor);
}

.footer-box .footer-text-logo .logo-dot {
  color: #ff4d00;
  font-weight: 900;
}

footer.footer-travel .footer-box p{
  color: var(--whiteColor);
  font-size: 15px;
  line-height: 28px;
}
footer.footer-travel .footer-bottom p{
  color: var(--whiteColor);
  font-size: 14px;
  margin: 0;
}
footer.footer-travel .footer-bottom p a{
  color:var(--whiteColor);
  font-size: 14px;
}

@keyframes floatPlane {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(-10deg); }
}

@media (max-width: 991px) {
 section.creative-hero .hero-overlay-shape{
    display: none;
  }
   section.creative-hero{
    text-align: center;
    padding: 140px 0 120px;
  }

  section.creative-hero .creative-content p {
    margin: auto;
    font-size: 16px;
  }

   section.creative-hero .creative-image {
    margin-top: 40px;
  }
  
     a.creative-btn{
         margin: 20px 0 0;
     }
     
     footer.footer-travel .footer-box h5{
         margin: 20px 0;
     }
     
     header.main-header .header-btns{
         flex-wrap: wrap;
         gap: 15px;
     }
     header.main-header ul.navbar-nav{
         text-align: left !important;
     }
     header.main-header ul.navbar-nav li .nav-link{
         padding: 8px 0;
     }
     section.dream-destination .destination-grid{
        grid-template-columns: repeat(2, 1fr);
     }
}

@media (max-width:767px){
  section.cta-layer-advanced-section .cta-layer-content .cta-layer-content { 
    padding: 35px 25px; 
  }
  section.cta-layer-advanced-section .cta-layer-content .cta-layer-content h3 { 
    font-size: 22px; 
  }
  section.cta-layer-advanced-section .dot {
     display: none;
     }
     .contentTitle h2{
         font-size: 25px;
     }
     section.creative-hero .creative-content h1{
         font-size: 35px;
     }
     section.dream-destination .destination-grid{
        grid-template-columns: 1fr;
     }
     section.dream-destination .destination-grid .destination-card img{
         height: 240px;
     }
}