* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #ffffff;
  color: white;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
}

.logo img {
  height: 90px;
  width: 210px;
  object-fit: contain;
}

/* NAV LINKS */

.navbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.navbar nav a:hover {
  opacity: 0.7;
}

/* BUTTON */

.book-btn {
  background: white;
  color: black;
  border: none;
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  transform: translateY(-2px);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* MOBILE BUTTON HIDE */

.mobile-btn {
  display: none;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .navbar {
    padding: 18px 40px;
  }

  .logo img {
    height: 75px;
    width: 180px;
  }

  .navbar nav {
    gap: 20px;
  }

  .navbar nav a {
    font-size: 15px;
  }

  .book-btn {
    padding: 14px 24px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 65px;
    width: 160px;
  }

  /* HAMBURGER SHOW */

  .menu-toggle {
    display: block;
  }

  /* DESKTOP BUTTON HIDE */

  .desktop-btn {
    display: none;
  }

  /* MOBILE NAV */

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    display: none;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav a {
    font-size: 16px;
  }

  /* MOBILE BUTTON SHOW */

  .mobile-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .logo img {
    height: 55px;
    width: 140px;
  }

  .navbar nav a {
    font-size: 15px;
  }

  .book-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  overflow-x:hidden;
  color:white;
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  padding:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  overflow:hidden;

  /* IMAGE SLIDER */
  animation: bgSlider 20s infinite;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}



/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

/* BACKGROUND IMAGE ANIMATION */
@keyframes bgSlider{

  0%{
    background-image:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
  }

  25%{
    background-image:url('https://images.unsplash.com/photo-1493558103817-58b2924bce98');
  }

  50%{
    background-image:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');
  }

  75%{
    background-image:url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800');
  }

  100%{
    background-image:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
  }
}

/* LEFT SIDE */
.hero-left{
  position:relative;
  z-index:2;
  max-width:600px;
}

.hero-left h1{
  font-size:55px;
  line-height:1.2;
}

.hero-left h1 span{
  color:#ffd700;
}

/* BUTTON */
.explore-btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 28px;
  background:white;
  color:black;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.explore-btn:hover{
  transform:translateY(-3px);
}

/* TAGS */
.tags{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(3, auto);
  gap:12px;
  width:320px;
}

.tags span{
  padding:10px 14px;
  border:1px solid white;
  border-radius:20px;
  text-align:center;
  font-size:14px;
  backdrop-filter:blur(3px);
}

/* CARD */
.hero-card{
  position:relative;
  z-index:2;

  width:520px;
  background:rgba(0,0,0,0.6);

  padding:30px;
  border-radius:20px;
  backdrop-filter:blur(6px);
}

.hero-card h3{
  font-size:30px;
  margin-bottom:15px;
}

.hero-card p{
  line-height:1.7;
  font-size:16px;
}

/* CARD BOTTOM */
.card-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:25px;
}

.clients{
  display:flex;
  align-items:center;
}

.clients img{
  width:40px;
  height:40px;
  border-radius:50%;
  margin-right:-8px;
  border:2px solid white;
}

.clients span{
  margin-left:18px;
  font-size:15px;
}

/* PLAY BUTTON */
.play-btn{
  width:65px;
  height:65px;
  border-radius:50%;
  background:red;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  font-size:22px;
}

/* ========================= */
/* TABLET RESPONSIVE */
/* ========================= */

@media (max-width:992px){

  .hero{
    flex-direction:column;
    justify-content:center;
    gap:40px;
    padding:60px 40px;
    text-align:center;
  }

  .hero-left h1{
    font-size:50px;
  }

  .tags{
    margin:auto;
    margin-top:30px;
  }

  .hero-card{
    width:100%;
    max-width:600px;
  }

}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width:576px){

  .hero{
    padding:40px 20px;
  }

  .hero-left h1{
    font-size:38px;
    margin-top:30px;
  }

  .tags{
    width:100%;
    grid-template-columns:repeat(2, 1fr);
  }

  .tags span{
    font-size:13px;
  }

  .hero-card{
    padding:20px;
    border-radius:15px;
  }

  .hero-card h3{
    font-size:24px;
  }

  .hero-card p{
    font-size:14px;
  }

  .card-bottom{
    flex-direction:column;
    gap:20px;
  }

  .clients{
    flex-wrap:wrap;
    justify-content:center;
  }

  .clients span{
    margin-left:10px;
    font-size:14px;
  }

  .play-btn{
    width:55px;
    height:55px;
    font-size:18px;
  }

}
 

/* Secound sections csss  */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  scroll-behavior: smooth;
  background-color: #fafcff;
}

/* modern travel section with refined spacing & luxury feel */
.services-luxury {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 2.5rem 6rem;
  position: relative;
  background: #ffffff;
}

/* header area */
.service-header {
  text-align: center;
  margin-bottom: 4.5rem;
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.service-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f4fa;
  padding: 0.4rem 1.4rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1e4a6e;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(30, 74, 110, 0.15);
}

.service-header h2 {
  font-size: 3.4rem;
  font-weight: 800;
  background: linear-gradient(125deg, #0b2b38, #1c5d7a, #2c7ea0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.service-header .description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #4a627a;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* service card */
.service-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05),
              0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: cardEntrance 0.7s forwards;
  animation-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

/* stagger delays */
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.13s; }
.service-card:nth-child(3) { animation-delay: 0.21s; }
.service-card:nth-child(4) { animation-delay: 0.29s; }
.service-card:nth-child(5) { animation-delay: 0.37s; }
.service-card:nth-child(6) { animation-delay: 0.45s; }

.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 32px 48px -16px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(44, 126, 160, 0.35);
}

/* ---------- EMOJI CONTAINER ---------- */
.card-emoji {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(145deg, #f0f5fa 0%, #e2edf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6),
              inset 0 0 15px rgba(0,0,0,0.02);
}

/* actual emoji */
.emoji-sphere {
  font-size: 6.5rem;
  display: inline-block;
  filter: drop-shadow(8px 12px 14px rgba(0, 0, 0, 0.2))
          drop-shadow(0px 3px 3px rgba(0,0,0,0.1));
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.5, 1.2);
  transform-style: preserve-3d;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
  animation: floatEmoji 3s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

/* hover effect */
.service-card:hover .emoji-sphere {
  transform: scale(1.13) rotate(2deg) translateY(-5px);
  filter: drop-shadow(12px 18px 20px rgba(0, 0, 0, 0.3));
}

/* floating animation */
@keyframes floatEmoji {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* glossy overlay */
.card-emoji::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%,
              rgba(255,255,245,0.3),
              transparent 70%);
  pointer-events: none;
}

/* card content */
.card-content {
  padding: 1.6rem 1.8rem 2rem;
  background: white;
  position: relative;
}

.service-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #122c3b;
  margin-bottom: 0.65rem;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #54708f;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* underline accent */
.card-accent {
  width: 150px;
  height: 3px;
  background: #2c7da0;
  border-radius: 4px;
  transition: width 0.35s ease, background 0.2s;
}

.service-card:hover .card-accent {
  width: 80px;
  background: #e67e22;
}

/* animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* tablet */
@media (max-width: 780px) {

  .services-luxury {
    padding: 3rem 1.5rem 4rem;
  }

  .service-header h2 {
    font-size: 2.5rem;
  }

  .service-header .description {
    font-size: 1rem;
    padding: 0 0.2rem;
  }

  .card-emoji {
    height: 200px;
  }

  .emoji-sphere {
    font-size: 5rem;
  }

  .card-content {
    padding: 1.3rem 1.4rem 1.6rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }
}

/* mobile */
@media (max-width: 480px) {

  .services-grid {
    gap: 1.5rem;
  }

  .service-header h2 {
    font-size: 2rem;
  }

  .card-emoji {
    height: 180px;
  }

  .emoji-sphere {
    font-size: 4.3rem;
  }

  .card-content {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.92rem;
  }
}

/* background effects */
.services-luxury::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle,
              rgba(44,125,160,0.03) 0%,
              rgba(44,125,160,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(170deg,
              rgba(248, 250, 252, 0) 0%,
              #f9fbfd 100%);
  pointer-events: none;
}

 /* Secound sections csss  */

 /* starts imogies card  */


/* starts imogies card  */

/* ========================= */
/* TRAVEL SECTION */
/* ========================= */

.travel-section {
  padding: 90px 60px;
  width: 100%;
  background: #E93008;
  overflow: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ========================= */
/* ENTRANCE ANIMATION */
/* ========================= */

.left-content,
.center-image,
.right-content {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
}

/* DELAY */
.left-content {
  animation-delay: 0.2s;
}

.center-image {
  animation-delay: 0.6s;
}

.right-content {
  animation-delay: 1s;
}

/* KEYFRAME */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.left-content {
  width: 32%;
}

.left-content h2 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}

.left-content h2 strong {
  font-weight: 700;
}

.left-content span {
  color: #ffd700;
  font-weight: 700;
}

.left-content p {
  color: #d8d8d8;
  margin: 20px 0 30px;
  line-height: 1.7;
  font-size: 16px;
}

.left-content ul {
  list-style: none;
  padding: 0;
}

.left-content ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
  color: white;
  font-size: 16px;
}

.left-content ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #ffd700;
}

/* ========================= */
/* CTA BOX */
/* ========================= */

.cta-box {
  margin-top: 35px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 35px;
  border-radius: 60px 20px 60px 20px;
  backdrop-filter: blur(6px);
  transition: 0.4s;
}

.cta-box:hover {
  transform: translateY(-6px);
}

.cta-box h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.cta-box a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

/* ========================= */
/* CENTER IMAGE */
/* ========================= */

.center-image {
  width: 340px;
  height: 480px;
  position: relative;
  flex-shrink: 0;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* BADGE */

.badge {
  position: absolute;
  top: -20px;
  left: -20px;

  background: #111;
  color: white;

  width: 110px;
  height: 110px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 24px;
  font-weight: bold;

  border: 4px solid white;

  animation: float 3s ease-in-out infinite;
}

.badge span {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  margin-top: 5px;
}

/* FLOAT EFFECT */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ========================= */
/* RIGHT CONTENT */
/* ========================= */

.right-content {
  width: 32%;
}

.top-img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  border-radius: 20px 60px 20px 60px;
  margin-bottom: 25px;

  transition: 0.4s;
}

.top-img:hover {
  transform: scale(1.03);
}

.right-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: white;
}

.right-content h2 strong {
  font-weight: 700;
}

.right-content h2 span {
  color: #ffd700;
  font-weight: 300;
}

.right-content p {
  color: #d8d8d8;
  line-height: 1.8;
  font-size: 16px;
}

/* ========================= */
/* TABLET RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

  .travel-section {
    padding: 70px 40px;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .left-content,
  .right-content {
    width: 100%;
  }

  .center-image {
    width: 300px;
    height: 420px;
  }

  .left-content ul li {
    padding-left: 0;
  }

  .left-content ul li::before {
    display: none;
  }

  .top-img {
    max-width: 600px;
    margin: 0 auto 25px;
    display: block;
  }

}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 576px) {

  .travel-section {
    padding: 60px 20px;
  }

  .left-content h2,
  .right-content h2 {
    font-size: 30px;
  }

  .left-content p,
  .right-content p {
    font-size: 14px;
  }

  .center-image {
    width: 240px;
    height: 350px;
  }

  .badge {
    width: 90px;
    height: 90px;
    font-size: 18px;
    left: -10px;
  }

  .badge span {
    font-size: 9px;
  }

  .cta-box {
    padding: 25px;
    border-radius: 40px 15px 40px 15px;
  }

  .cta-box h3 {
    font-size: 20px;
  }

  .top-img {
    height: 180px;
  }

}

/* Logooooooooooooos sectionnnnn  */

body {
  background: #f2f2f2;
  font-family: Arial, sans-serif;
   
  overflow-x: hidden;

}

.brand-section {
  padding: 40px;
  overflow: hidden; /* 👈 important for slider */
}

.brand-container {
  background: linear-gradient(90deg, #000000, #000000);
  border-radius: 40px;
  padding: 55px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;

  /* initial state */
  opacity: 0;
  transform: translateX(-100px);
}

/* animation */
.brand-container.show {
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand-text h2 {
  color: #aaa;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

.brand-text span {
  color: #fff;
  font-weight: 600;
}

.brand-slider {
  flex: 1;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}

.brand-track img {
  height: 40px;
  opacity: 0.7;
  transition: 0.3s;
}

.brand-track img:hover {
  opacity: 1;
}

/* scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .brand-container {
    padding: 40px;
    gap: 25px;
    border-radius: 30px;
  }

  .brand-text h2 {
    font-size: 24px;
  }

  .brand-track {
    gap: 40px;
  }

  .brand-track img {
    height: 32px;
  }
}


/* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {

  .brand-section {
    padding: 20px;
  }

  .brand-container {
    flex-direction: column;        /* 👈 stack layout */
    align-items: flex-start;
    padding: 25px;
    gap: 20px;
    border-radius: 25px;
  }

  .brand-text {
    width: 100%;
  }

  .brand-text h2 {
    font-size: 20px;
  }

  .brand-slider {
    width: 100%;
  }

  .brand-track {
    gap: 30px;
    animation: scroll 15s linear infinite; /* faster for mobile */
  }

  .brand-track img {
    height: 26px;
  }
}

/* End-   Logooooooooooooos sectionnnnn  */

/* start 3 cards */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
} */

body {
  background: #f5f5f5;
  
  overflow-x: hidden;
 
}

.destination {
  padding: 60px 20px;
  text-align: center;
}

.heading {
  margin-bottom: 40px;
  width: 100vw;
  display: flex;
  justify-content:center ;
}

.heading h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.heading span {
  color: #888;
  font-weight: 300;
}

.btn {
  margin-top: 15px;
  padding: 10px 30px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-right: -50px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  height: 500px;
  width: 350px;
}

.card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s;
}

/* Overlay FULL hidden initially */
.overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  
  opacity: 0;
  transform: translateY(30%);
  transition: 0.4s;
}

.overlay h3 {
  font-size: 22px;
}

.overlay p {
  font-size: 14px;
  margin: 5px 0 10px;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.book-btn {
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #000;
  color: #fff;
}

/* Hover */
.card:hover img {
  transform: scale(1.1);
}

.card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tap support */
.card.active .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 300px;
  }
}

/* IMAGE BEFORE TITLE */
.title-img {
  width: 120px;   /* button ke approx size */
  height: 40px;
  object-fit: cover;
  border-radius: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

/* BUTTON INLINE WITH TEXT */
.heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.heading .btn {
  margin-left: 10px;
  vertical-align: middle;
}
/* End 3 cards */

 /* <!-- statrs- changing section  --> */

body{
      font-family:'Poppins', sans-serif;
      background:#f5f5f5;
    }

    .primary {
        width: 100vw;
        height: 330px;
    }

    .travel-section{
      position:relative;
      width: 100%;
      min-height:50%;
      display:flex;
      align-items:center;
      padding:80px 6%;
      overflow:hidden;

      
    }

    /* BACKGROUND SLIDER */
.bg-slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  opacity:0;
  transition:opacity 1.5s ease-in-out;

  /* FIXED BACKGROUND EFFECT */
  background-attachment:fixed;
}

/* YOUR 3 IMAGES */
.slide:nth-child(1){
  background-image:url('image/showcase2.jpg');
}

.slide:nth-child(2){
  background-image:url('image/showcase3.jpg');
}

.slide:nth-child(3){
  background-image:url('image/showcase.jpg');
}

.slide.active{
  opacity:1;
}


/* MOBILE FIX */
@media(max-width:768px){

  .slide{
    background-attachment:scroll;
  }

}

    /* Dark Overlay */
    .travel-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.15);
      z-index:1;
    }

    .offer-card{
      position:relative;
      z-index:2;
      max-width:760px;
       min-height:320px;
       height:auto;
      background:#1f1f1f;
      color:#fff;
      padding:15px;
      border-radius:28px;
      backdrop-filter:blur(3px);

      /* Entrance Animation */
      animation:slideUp 1s ease forwards;
      opacity:0;
      transform:translateY(80px);
    }

    @keyframes slideUp{
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    .offer-card h1{
      font-size:58px;
      line-height:1.1;
      font-weight:700;
      margin-bottom:25px;
      letter-spacing:-1px;
    }

    .offer-card h1 span{
      font-weight:300;
    }

    .offer-card p{
      font-size:18px;
      line-height:1.8;
      color:#d8d8d8;
      margin-bottom:35px;
    }

    .offer-bottom{
      display:flex;
      align-items:center;
      gap:30px;
      flex-wrap:wrap;
    }

    .offer-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#fff;
      color:#111;
      padding:18px 38px;
      border-radius:60px;
      text-decoration:none;
      font-size:17px;
      font-weight:600;
      transition:0.4s ease;
    }

    .offer-btn:hover{
      background:#ffb703;
      transform:translateY(-3px);
    }

    .discount-text{
      font-size:26px;
      font-weight:700;
      color:#fff;
    }

    .discount-text span{
      font-weight:300;
    }

    /* Tablet Responsive */
    @media(max-width:992px){

      .travel-section{
        min-height:85vh;
        padding:70px 5%;
      }

      .offer-card{
        max-width:100%;
        padding:35px;
      }

      .offer-card h1{
        font-size:42px;
      }

      .offer-card p{
        font-size:16px;
      }

      .discount-text{
        font-size:22px;
      }
    }

    /* Mobile Responsive */
    @media(max-width:768px){

      .travel-section{
        align-items:flex-end;
        padding: 40px 0px 50px 0px;
        background-attachment:scroll;
      }

      .offer-card{
        width:100%;
        padding:28px 22px;
        border-radius:22px;
      }

      .offer-card h1{
        font-size:32px;
        line-height:1.2;
      }

      .offer-card p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:25px;
      }

      .offer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
      }

      .offer-btn{
        width:100%;
        text-align:center;
        padding:16px 20px;
        font-size:15px;
      }

      .discount-text{
        font-size:20px;
      }
    }


    .slide.active{
  opacity:1;
  animation:cinematicZoom 12s linear forwards;
}

@keyframes cinematicZoom{

  0%{
    transform:scale(1);
  }

  100%{
    transform:scale(1.04);
  }

}
 
 /* <!-- end - changing section  --> */

/* <!-- Start footer  -->  */

/* <!-- fOOOTER  --> */

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    .footer-wrapper {
      background: linear-gradient(135deg, #E64925, #E64925);
      color: #fff;
      overflow: hidden;
    }

    /* CTA SECTION */

    .footer-cta {
      border-bottom: 1px solid rgba(239, 235, 235, 0.15);
      padding: 35px 7%;
      /* margin-top: 300px; */
      background-color: #001540;
    }

    .footer-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .cta-left {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .cta-left i {
      font-size: 55px;
      color: #fff;
    }

    .cta-text h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .cta-text p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
    }

    .cta-btn a {
      background: #f4f4f4;
      color: #000;
      padding: 22px 48px;
      border-radius: 4px;
      font-size: 20px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      transition: 0.3s ease;
    }

    .cta-btn a:hover {
      background: #f2bb52;
      transform: translateY(-2px);
    }

    /* MAIN FOOTER */

    .footer-main {
      padding: 60px 7% 40px;
      margin-top: 0px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
      gap: 60px;
    }

    .footer-logo h2 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: #d9a441;
    }

    .footer-logo p {
      font-size: 16px;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.82);
      margin-top: 22px;
      max-width: 320px;
    }

    .social-icons {
      display: flex;
      gap: 14px;
      margin-top: 15px;
      
    }

    .social-icons a {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      background: #dddbd8;
      border-color: #898989;
      color: #000;
    }

    .footer-column h3 {
      font-size: 28px;
      margin-bottom: 28px;
      font-weight: 700;
    }

    .footer-links li {
      margin-bottom: 18px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      transition: 0.3s ease;
    }

    .footer-links a:hover {
      color: #d9a441;
      padding-left: 5px;
    }

    .contact-info li {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }

    .contact-info i {
      color: #d9a441;
      font-size: 20px;
      margin-top: 4px;
      min-width: 20px;
    }

    .contact-info span {
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.7;
    }

    /* BOTTOM */

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding: 22px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 16px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
    }

    .footer-bottom-links a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 16px;
      transition: 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #d9a441;
    }

    /* RESPONSIVE */

    @media (max-width: 1200px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-text h2 {
        font-size: 34px;
      }
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-left {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-text h2 {
        font-size: 20px;
      }

      .cta-text p {
        font-size: 17px;
      }

      .cta-btn a {
        padding: 18px 35px;
        font-size: 18px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* <!-- END fOOOTER  --> */
 /* <!-- Start Project showcase  -->  */

/* ===============================
           SECTION-SPECIFIC STYLES
           All class names have "23" suffix to avoid conflicts
        =============================== */
        
        /* container for the three cards — no global bleed */
        .cards-container23 {
            max-width: 1300px;
            width: 100%;
            margin-top: 300px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            justify-self: center;
            gap: 2rem;
            box-sizing: border-box;
            padding: 50px 0px 50px 0px;
        }

        /* each modern card — clean, subtle shadow, smooth corners */
        .trip-card23 {
            flex: 1 1 300px;
            max-width: 400px;
            background: #FFFFFF;
            border-radius: 28px;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(0px);
            font-family: 'Inter', sans-serif;
        }

        .trip-card23:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 36px -14px rgba(0, 0, 0, 0.35);
        }

        /* image container: ensures consistent ratio & modern aesthetics */
        .card-image23 {
            width: 100%;
            height: 220px;
            background-color: #f0f0f0;
            overflow: hidden;
            position: relative;
        }

        .card-image23 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .trip-card23:hover .card-image23 img {
            transform: scale(1.03);
        }

        /* content area */
        .card-content23 {
            padding: 1.5rem 1.5rem 1.8rem;
            background: #FFFFFF;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* accent color used for titles, badges, and icons */
        .accent-text23 {
            color: #E64925;
            font-weight: 600;
        }

        .trip-location23 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            margin-bottom: 0.65rem;
            color: #E64925;
            font-weight: 600;
        }

        .trip-location23 i {
            font-size: 0.8rem;
            color: #E64925;
        }

        .trip-title23 {
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 0.65rem;
            color: #282828;
            letter-spacing: -0.3px;
        }

        .trip-description23 {
            font-size: 0.92rem;
            line-height: 1.45;
            color: #4b4b4b;
            margin-bottom: 1.4rem;
            font-weight: 400;
            flex: 1;
        }

        /* success badge with accent background & white text */
        .success-badge23 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #E64925;
            color: white;
            padding: 0.4rem 1.1rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            width: fit-content;
            margin-top: 0.5rem;
            transition: background 0.2s;
        }

        .success-badge23 i {
            font-size: 0.8rem;
        }

        .trip-card23:hover .success-badge23 {
            background-color: #c93b18;
        }

        /* subtle divider optional */
        .meta-line23 {
            margin-top: 0.75rem;
            font-size: 0.7rem;
            color: #9e9e9e;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* responsive tweaks - all prefixed with body scope but only applied within this component */
        @media (max-width: 820px) {
            .cards-container23 {
                gap: 1.5rem;
            }
            .trip-title23 {
                font-size: 1.45rem;
            }
        }

        @media (max-width: 480px) {
            /* no direct body styling to avoid global conflicts, only component adjustments */
            .card-content23 {
                padding: 1.2rem;
            }
        }

        /* additional safety: all box-sizing reset only for this component's children */
        .cards-container23,
        .cards-container23 *,
        .trip-card23,
        .card-image23,
        .card-content23,
        .trip-location23,
        .success-badge23,
        .meta-line23 {
            box-sizing: border-box;
        }

        /* ensure that images inside card-image23 are responsive and don't inherit global quirks */
        .card-image23 img {
            max-width: 100%;
            vertical-align: middle;
        }

        /* override possible global anchor or text decoration issues within cards */
        .trip-card23 a,
        .trip-card23 a:hover,
        .trip-card23 a:focus {
            text-decoration: none;
        }
 
 /* <!-- end Project showcase  -->  */

 /* <!-- start testimonial  -->  */
/* =========================
   TESTIMONIAL SECTION 13
========================= */

.testimonial-section13{
  padding: 100px 7%;
  background: #0b0f19;
  overflow: hidden;
}

.testimonial-header13{
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-badge13{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: #7dd3fc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.testimonial-header13 h2{
  color: #fff;
  font-size: 52px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.testimonial-header13 p{
  color: #b6bcc8;
  font-size: 17px;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

.testimonial-container13{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.testimonial-card13{
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 40px 30px;
  transition: 0.4s ease;
  overflow: hidden;
}

.testimonial-card13::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg,#00d2ff,#3a7bd5);
  border-radius: 50%;
  top: -70px;
  right: -70px;
  opacity: 0.08;
}

.testimonial-card13:hover{
  transform: translateY(-12px);
  border-color: rgba(125,211,252,0.4);
}

.active13{
  background: linear-gradient(
    135deg,
    rgba(0,210,255,0.12),
    rgba(58,123,213,0.12)
  );
  border-color: rgba(125,211,252,0.35);
  transform: translateY(-10px);
}

.quote-icon13{
  font-size: 80px;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 20px;
  font-family: serif;
}

.testimonial-text13{
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.testimonial-user13{
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user13 img{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.12);
}

.testimonial-user13 h4{
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-user13 span{
  color: #9ca3af;
  font-size: 14px;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 991px){

  .testimonial-container13{
    grid-template-columns: repeat(2,1fr);
  }

  .testimonial-header13 h2{
    font-size: 40px;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

  .testimonial-section13{
    padding: 80px 20px;
  }

  .testimonial-container13{
    grid-template-columns: 1fr;
  }

  .testimonial-header13 h2{
    font-size: 32px;
  }

  .testimonial-header13 p{
    font-size: 15px;
  }

  .testimonial-card13{
    padding: 30px 22px;
  }

}


 /* <!-- end testimonial  -->  */
 /* FOOTER LOGO IMAGE */
.footer-logo-img{
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  object-fit: contain;
}