/* =========================
     HERO SECTION
========================= */

.travel-hero{
  width:100%;
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:120px 7% 80px;

  background:
  url('https://images.unsplash.com/photo-1502920917128-1aa500764cbd?q=80&w=2070&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  color:#fff;
}

.hero-tag{
  display:inline-block;
  padding:10px 20px;
  border-radius:50px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  backdrop-filter:blur(10px);
  margin-bottom:25px;
  font-size:14px;
  letter-spacing:1px;
}

.hero-content h1{
  font-size:75px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:700;
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#eee;
  max-width:700px;
  margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

.hero-btn{
  padding:16px 34px;
  border-radius:60px;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  transition:0.4s ease;
}

.primary-btn{
  background:linear-gradient(135deg,#ff6b00,#ff934b);
  color:#fff;
  box-shadow:0 10px 30px rgba(255,107,0,0.4);
}

.primary-btn:hover{
  transform:translateY(-4px);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
}

.secondary-btn:hover{
  background:#fff;
  color:#111;
}

/* SEARCH BOX */

.hero-search{
  width:100%;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;

  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);

  padding:25px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.15);
}

.search-box{
  flex:1;
  min-width:180px;
}

.search-box label{
  display:block;
  font-size:14px;
  margin-bottom:10px;
  color:#ddd;
}

.search-box input{
  width:100%;
  border:none;
  outline:none;
  padding:14px 16px;
  border-radius:12px;
  font-size:15px;
  background:#fff;
}

.search-btn{
  padding:16px 35px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#ff6b00,#ff934b);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.4s;
}

.search-btn:hover{
  transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content h1{
    font-size:55px;
  }

}

@media(max-width:768px){

  .travel-hero{
    padding-top:140px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-search{
    padding:20px;
  }

}

@media(max-width:500px){

  .hero-content h1{
    font-size:34px;
  }

  .hero-btn{
    width:100%;
    text-align:center;
  }

  .search-btn{
    width:100%;
  }

}



/* =========================
     DESTINATIONS SECTION
========================= */

.destinations-section{
  width:100%;
  padding:120px 7%;
  background:#f8fafc;
}

.section-head{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:70px;
}

.section-tag{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:#fff1e8;
  color:#ff6b00;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.section-head h2{
  font-size:55px;
  line-height:1.2;
  color:#111;
  margin-bottom:20px;
}

.section-head p{
  font-size:17px;
  line-height:1.8;
  color:#666;
}

/* GRID */

.destination-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:25px;
}

/* CARDS */

.destination-card{
  position:relative;
  overflow:hidden;
  border-radius:35px;
  min-height:420px;
  cursor:pointer;
  grid-column:span 4;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.large-card{
  grid-column:span 8;
  min-height:500px;
}

.wide-card{
  grid-column:span 8;
}

.destination-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.destination-card:hover img{
  transform:scale(1.12);
}

.card-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.2),
    transparent
  );
}

.card-content{
  position:absolute;
  inset:0;
  padding:35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  z-index:2;
  color:#fff;
}

.card-top{
  position:absolute;
  top:30px;
  left:30px;
  right:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card-top span{
  background:rgba(255,255,255,0.15);
  padding:10px 18px;
  border-radius:50px;
  backdrop-filter:blur(10px);
  font-size:13px;
}

.rating{
  background:#fff;
  color:#111;
  padding:10px 14px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
}

.card-content h3{
  font-size:42px;
  margin-bottom:12px;
}

.card-content p{
  font-size:15px;
  line-height:1.7;
  color:#eee;
  max-width:500px;
  margin-bottom:25px;
}

.card-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card-bottom h4{
  font-size:28px;
  margin-bottom:5px;
}

.card-bottom span{
  font-size:14px;
  color:#ddd;
}

.card-bottom a{
  width:65px;
  height:65px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:18px;
  color:#fff;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  transition:0.4s ease;
}

.destination-card:hover .card-bottom a{
  background:#ff6b00;
  transform:rotate(-45deg);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .destination-card,
  .large-card,
  .wide-card{
    grid-column:span 12;
  }

}

@media(max-width:768px){

  .section-head h2{
    font-size:38px;
  }

  .destination-card{
    min-height:380px;
  }

  .large-card{
    min-height:450px;
  }

  .card-content{
    padding:25px;
  }

  .card-content h3{
    font-size:32px;
  }

}

@media(max-width:500px){

  .section-head h2{
    font-size:30px;
  }

  .card-top{
    top:20px;
    left:20px;
    right:20px;
  }

  .card-content h3{
    font-size:28px;
  }

  .card-bottom{
    gap:20px;
  }

}


/* =========================
     LUXURY PACKAGES
========================= */

.luxury-packages{
  width:100%;
  padding:120px 7%;
  position:relative;
  background:#0b1120;
  overflow:hidden;
}

/* GLOW EFFECT */

.package-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
}

.blur-1{
  width:300px;
  height:300px;
  background:#ff6b00;
  top:-80px;
  left:-80px;
  opacity:0.25;
}

.blur-2{
  width:350px;
  height:350px;
  background:#2563eb;
  bottom:-100px;
  right:-100px;
  opacity:0.25;
}

/* HEADER */

.package-heading{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:850px;
  margin:auto;
  margin-bottom:80px;
}

.package-tag{
  display:inline-block;
  padding:12px 24px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:#ff934b;
  font-size:14px;
  margin-bottom:25px;
  backdrop-filter:blur(10px);
}

.package-heading h2{
  font-size:58px;
  line-height:1.2;
  color:#fff;
  margin-bottom:25px;
}

.package-heading p{
  color:#cbd5e1;
  font-size:17px;
  line-height:1.8;
}

/* MAIN WRAPPER */

.package-wrapper{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:35px;
  align-items:start;
}

/* FEATURED PACKAGE */

.featured-package{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  min-height:760px;
  box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.featured-package img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

.featured-package:hover img{
  transform:scale(1.08);
}

.featured-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.4),
    transparent
  );
}

.featured-content{
  position:absolute;
  inset:0;
  z-index:2;
  padding:45px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
}

.featured-top{
  position:absolute;
  top:40px;
  left:40px;
  right:40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.featured-badge{
  padding:12px 22px;
  border-radius:50px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.12);
}

.featured-rating{
  background:#fff;
  color:#111;
  padding:12px 18px;
  border-radius:50px;
  font-weight:600;
}

.featured-content h3{
  font-size:58px;
  margin-bottom:20px;
}

.featured-content p{
  color:#e2e8f0;
  line-height:1.8;
  font-size:16px;
  max-width:650px;
  margin-bottom:35px;
}

/* FEATURES */

.package-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:40px;
}

.feature-item{
  padding:18px 22px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  font-size:15px;
}

/* BOTTOM */

.featured-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.package-price h4{
  font-size:42px;
  margin-bottom:8px;
}

.package-price span{
  color:#cbd5e1;
}

.book-package-btn{
  padding:18px 38px;
  border-radius:60px;
  text-decoration:none;
  background:linear-gradient(135deg,#ff6b00,#ff934b);
  color:#fff;
  font-weight:600;
  transition:0.4s ease;
  box-shadow:0 10px 35px rgba(255,107,0,0.4);
}

.book-package-btn:hover{
  transform:translateY(-5px);
}

/* SIDE CARDS */

.side-packages{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.mini-package-card{
  display:flex;
  gap:20px;
  padding:22px;
  border-radius:30px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  transition:0.4s ease;
}

.mini-package-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.1);
}

.mini-img{
  width:160px;
  min-width:160px;
  height:170px;
  border-radius:22px;
  overflow:hidden;
}

.mini-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.mini-content{
  width:100%;
  color:#fff;
}

.mini-content span{
  color:#ff934b;
  font-size:14px;
}

.mini-content h3{
  font-size:28px;
  margin:10px 0;
}

.mini-content p{
  color:#cbd5e1;
  line-height:1.7;
  font-size:14px;
  margin-bottom:22px;
}

.mini-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mini-bottom h4{
  font-size:24px;
  margin-bottom:5px;
}

.mini-bottom small{
  color:#cbd5e1;
}

.mini-bottom a{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#ff6b00;
  color:#fff;
  font-size:22px;
  transition:0.4s ease;
}

.mini-bottom a:hover{
  transform:rotate(-45deg);
}

/* RESPONSIVE */

@media(max-width:1200px){

  .package-wrapper{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .package-heading h2{
    font-size:38px;
  }

  .featured-content{
    padding:28px;
  }

  .featured-content h3{
    font-size:38px;
  }

  .package-features{
    grid-template-columns:1fr;
  }

  .mini-package-card{
    flex-direction:column;
  }

  .mini-img{
    width:100%;
    height:220px;
  }

}

@media(max-width:500px){

  .featured-content h3{
    font-size:30px;
  }

  .package-price h4{
    font-size:30px;
  }

}




/* =========================
     TRUSTED BRANDS
========================= */

.trusted-section{
  width:100%;
  padding:110px 7%;
  background:#ffffff;
  overflow:hidden;
}

/* TOP */

.trusted-top{
  max-width:850px;
  margin:auto;
  text-align:center;
  margin-bottom:70px;
}

.trusted-tag{
  display:inline-block;
  padding:12px 24px;
  border-radius:50px;
  background:#fff2e8;
  color:#ff6b00;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.trusted-top h2{
  font-size:58px;
  line-height:1.2;
  color:#111827;
  margin-bottom:25px;
}

.trusted-top p{
  font-size:17px;
  line-height:1.9;
  color:#64748b;
}

/* LOGO SLIDER */

.logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
  margin-bottom:80px;
}

.logo-slider::before,
.logo-slider::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:2;
}

.logo-slider::before{
  left:0;
  background:linear-gradient(to right,#fff,transparent);
}

.logo-slider::after{
  right:0;
  background:linear-gradient(to left,#fff,transparent);
}

.logo-track{
  display:flex;
  width:max-content;
  animation:scrollLogo 28s linear infinite;
  gap:25px;
}

.logo-card{
  min-width:240px;
  height:110px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#111827;
  background:#f8fafc;
  border:1px solid #eef2f7;
  transition:0.4s ease;
}

.logo-card:hover{
  transform:translateY(-8px);
  background:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  color:#ff6b00;
}

/* ANIMATION */

@keyframes scrollLogo{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* STATS */

.trusted-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.stat-box{
  padding:45px 20px;
  border-radius:30px;
  text-align:center;
  background:#f8fafc;
  border:1px solid #eef2f7;
  transition:0.4s ease;
}

.stat-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  background:#fff;
}

.stat-box h3{
  font-size:48px;
  color:#ff6b00;
  margin-bottom:12px;
}

.stat-box p{
  font-size:16px;
  color:#64748b;
}

/* RESPONSIVE */

@media(max-width:992px){

  .trusted-stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .trusted-top h2{
    font-size:40px;
  }

  .logo-card{
    min-width:180px;
    height:90px;
    font-size:20px;
  }

}

@media(max-width:500px){

  .trusted-top h2{
    font-size:32px;
  }

  .trusted-stats{
    grid-template-columns:1fr;
  }

}


/* =========================================
            CINEMATIC STORY
========================================= */

.cinematic-story{
  position:relative;
  width:100%;
  min-height:130vh;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:120px 7%;
}

/* VIDEO */

.story-bg-video{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

/* DARK OVERLAY */

.story-dark-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.85)
  );
}

/* GRADIENT BLOBS */

.story-gradient{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  z-index:1;
}

.story-gradient.one{
  width:350px;
  height:350px;
  background:#ff6b00;
  top:-100px;
  left:-80px;
  opacity:0.25;
}

.story-gradient.two{
  width:400px;
  height:400px;
  background:#2563eb;
  bottom:-120px;
  right:-120px;
  opacity:0.25;
}

/* MAIN CONTAINER */

.story-container{
  position:relative;
  z-index:5;
  width:100%;
}

/* TOP */

.story-top{
  text-align:center;
  max-width:950px;
  margin:auto;
  margin-bottom:90px;
}

.story-label{
  display:inline-block;

  padding:14px 26px;

  border-radius:60px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(14px);

  color:#ff934b;

  font-size:14px;
  letter-spacing:2px;

  margin-bottom:30px;
}

.story-top h1{
  font-size:95px;
  line-height:1.05;
  color:#fff;
  margin-bottom:30px;
}

.story-top p{
  font-size:20px;
  line-height:1.9;
  color:#e2e8f0;
  max-width:850px;
  margin:auto;
}

/* CENTER */

.story-center{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  margin-bottom:100px;
  flex-wrap:wrap;
}

/* GLASS CARDS */

.glass-story-card{
  width:360px;

  padding:40px;

  border-radius:35px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(18px);

  transition:0.5s ease;
}

.glass-story-card:hover{
  transform:translateY(-12px);
  background:rgba(255,255,255,0.12);
}

.glass-story-card span{
  color:#ff934b;
  font-size:14px;
  letter-spacing:1px;
}

.glass-story-card h3{
  font-size:36px;
  line-height:1.3;
  color:#fff;
  margin:18px 0;
}

.glass-story-card p{
  color:#e2e8f0;
  line-height:1.9;
}

/* PLAY BUTTON */

.big-play-button{
  position:relative;

  width:170px;
  height:170px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.12);

  border:1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(20px);

  cursor:pointer;
}

.big-play-button span{
  color:#fff;
  font-size:60px;
  position:relative;
  z-index:5;
}

/* RINGS */

.play-ring{
  position:absolute;

  width:100%;
  height:100%;

  border-radius:50%;
  border:2px solid rgba(255,255,255,0.3);

  animation:ringAnimation 3s linear infinite;
}

.second-ring{
  animation-delay:1.5s;
}

@keyframes ringAnimation{

  0%{
    transform:scale(1);
    opacity:1;
  }

  100%{
    transform:scale(1.6);
    opacity:0;
  }

}

/* STATS */

.story-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.story-stat-box{
  padding:40px 20px;

  border-radius:30px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(14px);

  text-align:center;

  transition:0.4s ease;
}

.story-stat-box:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.12);
}

.story-stat-box h2{
  font-size:58px;
  color:#ff934b;
  margin-bottom:12px;
}

.story-stat-box p{
  color:#f1f5f9;
  font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .story-top h1{
    font-size:70px;
  }

}

@media(max-width:992px){

  .story-stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .cinematic-story{
    min-height:auto;
  }

  .story-top h1{
    font-size:48px;
  }

  .story-top p{
    font-size:17px;
  }

  .glass-story-card{
    width:100%;
  }

}

@media(max-width:500px){

  .story-top h1{
    font-size:36px;
  }

  .story-stats{
    grid-template-columns:1fr;
  }

  .big-play-button{
    width:120px;
    height:120px;
  }

  .big-play-button span{
    font-size:42px;
  }

}



/* =========================================
        PREMIUM SERVICES
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f3f3f3;
}

/* SECTION */

.premium-services{
  width:100%;
  min-height:100vh;

  padding:100px 7%;

  position:relative;
  overflow:hidden;
}

/* BACKGROUND TEXT */

.bg-title{
  position:absolute;
  top:45%;

  left:50%;
  transform:translate(-50%,-50%);

  font-size:260px;
  font-weight:800;

  color:rgba(0,0,0,0.03);

  letter-spacing:10px;

  pointer-events:none;
  user-select:none;
}

/* TOP */

.services-top{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:80px;

  position:relative;
  z-index:2;
}

.service-label{
  display:inline-block;

  color:#e63946;

  font-size:13px;
  font-weight:600;

  letter-spacing:3px;

  margin-bottom:20px;

  position:relative;
}

.service-label::before,
.service-label::after{
  content:"";

  position:absolute;
  top:50%;

  width:70px;
  height:2px;

  background:#e63946;
}

.service-label::before{
  left:-90px;
}

.service-label::after{
  right:-90px;
}

.services-top h2{
  font-size:72px;
  line-height:1.1;

  color:#0f172a;

  margin-bottom:25px;
}

.services-top p{
  font-size:19px;
  line-height:1.8;

  color:#64748b;
}

/* SLIDER */

.slider-wrapper{
  width:100%;

  display:flex;
  justify-content:center;
  align-items:center;

  gap:35px;

  position:relative;
  z-index:2;
}

/* CARD */

.service-card{
  position:relative;

  width:330px;
  height:520px;

  border-radius:40px;

  overflow:hidden;

  transition:0.6s ease;

  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.service-card img{
  width:100%;
  height:100%;

  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.2)
  );
}

/* SIDE CARDS */

.side-card{
  transform:scale(0.88);
  opacity:0.45;

  filter:blur(1px);
}

/* ACTIVE CARD */

.active-card{
  width:540px;
  height:650px;

  z-index:5;
}

/* TOP ROW */

.top-row{
  position:absolute;

  top:28px;
  left:28px;
  right:28px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:3;
}

/* TAG */

.active-tag{
  padding:14px 26px;

  border-radius:50px;

  background:rgba(255,255,255,0.14);

  border:1px solid rgba(255,255,255,0.2);

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:13px;
  font-weight:600;

  letter-spacing:1px;
}

/* BUTTON */

.expand-btn{
  width:58px;
  height:58px;

  border:none;
  border-radius:50%;

  background:#fff;

  color:#0f172a;

  font-size:26px;

  cursor:pointer;

  transition:0.4s ease;
}

.expand-btn:hover{
  transform:rotate(45deg);
}

/* CONTENT */

.active-content{
  position:absolute;

  left:40px;
  bottom:40px;

  z-index:3;
}

.active-content h3{
  font-size:72px;
  line-height:0.95;

  color:#fff;

  font-weight:800;

  margin-bottom:22px;
}

.red-line{
  width:75px;
  height:6px;

  border-radius:20px;

  background:#e63946;
}

/* SIDE CARD CONTENT */

.card-content{
  position:absolute;

  left:28px;
  bottom:35px;

  z-index:3;
}

.card-tag{
  display:inline-block;

  padding:10px 18px;

  border-radius:50px;

  background:rgba(255,255,255,0.14);

  border:1px solid rgba(255,255,255,0.18);

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:12px;
  font-weight:600;

  margin-bottom:18px;
}

.card-content h3{
  font-size:44px;
  line-height:1;

  color:#fff;
}

/* BUTTONS */

.slider-buttons{
  display:flex;
  justify-content:center;
  gap:20px;

  margin-top:50px;

  position:relative;
  z-index:2;
}

.nav-btn{
  width:70px;
  height:70px;

  border:none;
  border-radius:50%;

  background:#fff;

  font-size:24px;

  cursor:pointer;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

.nav-btn:hover{
  transform:translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:1200px){

  .slider-wrapper{
    flex-direction:column;
  }

  .side-card{
    display:none;
  }

}

@media(max-width:768px){

  .services-top h2{
    font-size:42px;
  }

  .active-card{
    width:100%;
    height:520px;
  }

  .active-content h3{
    font-size:46px;
  }

  .bg-title{
    font-size:120px;
  }

}

@media(max-width:500px){

  .premium-services{
    padding:80px 5%;
  }

  .services-top h2{
    font-size:32px;
  }

  .active-content h3{
    font-size:34px;
  }

  .nav-btn{
    width:55px;
    height:55px;
  }

}


/* =========================================
                FOOTER
========================================= */

.premium-footer{
  width:100%;
  background:#0b1120;
  padding:100px 7% 35px;
  position:relative;
  overflow:hidden;
}

/* TOP */

.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:60px;

  padding-bottom:70px;

  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* LOGO */

.footer-logo{
  font-size:42px;
  font-weight:700;

  color:#fff;
  text-decoration:none;

  display:inline-block;

  margin-bottom:25px;
}

.footer-logo span{
  color:#ff6b00;
}

/* ABOUT */

.footer-about p{
  color:#cbd5e1;
  line-height:1.9;
  font-size:16px;

  margin-bottom:30px;

  max-width:400px;
}

/* SOCIAL */

.footer-socials{
  display:flex;
  gap:15px;
}

.footer-socials a{
  width:52px;
  height:52px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.08);

  color:#fff;

  transition:0.4s ease;
}

.footer-socials a:hover{
  background:#ff6b00;
  transform:translateY(-5px);
}

/* LINKS */

.footer-links h3,
.footer-contact h3{
  color:#fff;
  font-size:24px;

  margin-bottom:28px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#cbd5e1;
  text-decoration:none;

  margin-bottom:18px;

  transition:0.4s ease;
}

.footer-links a:hover{
  color:#ff6b00;
  transform:translateX(6px);
}

/* CONTACT */

.footer-contact p{
  color:#cbd5e1;
  line-height:1.9;

  margin-bottom:15px;
}

/* NEWSLETTER */

.newsletter-box{
  margin-top:30px;

  display:flex;
  gap:12px;

  background:rgba(255,255,255,0.08);

  padding:10px;

  border-radius:60px;

  border:1px solid rgba(255,255,255,0.08);
}

.newsletter-box input{
  flex:1;

  background:transparent;
  border:none;
  outline:none;

  color:#fff;

  padding:0 15px;
}

.newsletter-box input::placeholder{
  color:#cbd5e1;
}

.newsletter-box button{
  padding:14px 24px;

  border:none;
  border-radius:40px;

  background:linear-gradient(135deg,#ff6b00,#ff934b);

  color:#fff;

  font-weight:600;

  cursor:pointer;

  transition:0.4s ease;
}

.newsletter-box button:hover{
  transform:scale(1.05);
}

/* BOTTOM */

.footer-bottom{
  padding-top:30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  flex-wrap:wrap;
  gap:20px;
}

.footer-bottom p{
  color:#94a3b8;
}

.footer-bottom-links{
  display:flex;
  gap:25px;
}

.footer-bottom-links a{
  color:#94a3b8;
  text-decoration:none;

  transition:0.4s ease;
}

.footer-bottom-links a:hover{
  color:#ff6b00;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .footer-top{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .footer-top{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:500px){

  .premium-footer{
    padding:80px 5% 30px;
  }

  .footer-logo{
    font-size:34px;
  }

  .newsletter-box{
    flex-direction:column;
    border-radius:25px;
  }

  .newsletter-box button{
    width:100%;
  }

}


/* =========================================
                HERO SECTION
========================================= */

.modern-hero{
  position:relative;

  width:100%;
  min-height:100vh;

  padding:25px 6%;

  overflow:hidden;

  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.35)
  ),

  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2070&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to right,
    rgba(0,0,30,0.7),
    transparent
  );
}

/* =========================================
                HEADER
========================================= */

.hero-header{
  position:relative;
  z-index:5;

  width:100%;

  padding:18px 35px;

  border-radius:70px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:space-between;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.12);
}

/* LOGO */

.hero-logo{
  display:flex;
  align-items:center;
  gap:15px;

  text-decoration:none;
}

.logo-icon{
  width:55px;
  height:55px;

  border-radius:16px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  );

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:28px;
  font-weight:700;
}

.logo-text h3{
  font-size:30px;
  color:#1e3a8a;
  line-height:1;
}

.logo-text span{
  color:#ef4444;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
}

/* NAVBAR */

.hero-navbar{
  display:flex;
  align-items:center;
  gap:40px;
}

.hero-navbar a{
  position:relative;

  text-decoration:none;

  color:#334155;

  font-weight:600;

  transition:0.4s ease;
}

.hero-navbar a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#ef4444;

  transition:0.4s ease;
}

.hero-navbar a:hover::after,
.active-link::after{
  width:100%;
}

.hero-navbar a:hover{
  color:#ef4444;
}

/* RIGHT */

.hero-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.call-icon{
  width:55px;
  height:55px;

  border-radius:50%;

  background:#fff1f2;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ef4444;

  font-size:22px;
}

.quote-btn{
  padding:16px 34px;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #ef4444,
    #dc2626
  );

  color:#fff;
  text-decoration:none;

  font-weight:600;

  transition:0.4s ease;
}

.quote-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
                CONTENT
========================================= */

.hero-content{
  position:relative;
  z-index:5;

  max-width:850px;

  margin-top:130px;
}

/* TAG */

.hero-tag{
  display:inline-block;

  color:#ef4444;

  font-size:14px;
  letter-spacing:5px;
  font-weight:600;

  margin-bottom:35px;

  position:relative;

  padding-left:90px;
}

.hero-tag::before{
  content:"";

  position:absolute;
  left:0;
  top:50%;

  width:70px;
  height:3px;

  background:#ef4444;
}

/* TITLE */

.hero-content h1{
  font-size:110px;
  line-height:.9;

  color:#fff;

  font-weight:800;

  margin-bottom:35px;
}

.hero-content h1 span{
  color:#2563eb;
}

/* TEXT */

.hero-content p{
  font-size:22px;
  line-height:1.8;

  color:#e2e8f0;

  max-width:720px;

  margin-bottom:45px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn{
  padding:20px 38px;

  background:#2563eb;

  color:#fff;
  text-decoration:none;

  font-weight:600;

  transition:0.4s ease;
}

.primary-btn:hover{
  transform:translateY(-5px);
}

.secondary-btn{
  padding:20px 38px;

  border:1px solid rgba(255,255,255,0.2);

  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  color:#fff;
  text-decoration:none;

  font-weight:600;

  transition:0.4s ease;
}

.secondary-btn:hover{
  background:#fff;
  color:#111;
}

/* SCROLL */

.scroll-text{
  position:absolute;

  bottom:40px;
  left:50%;

  transform:translateX(-50%);

  color:#fff;

  letter-spacing:8px;

  font-size:12px;

  z-index:5;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .hero-navbar{
    display:none;
  }

  .hero-content h1{
    font-size:80px;
  }

}

@media(max-width:768px){

  .hero-header{
    padding:15px 20px;
  }

  .quote-btn{
    display:none;
  }

  .hero-content{
    margin-top:100px;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-content p{
    font-size:18px;
  }

}

@media(max-width:500px){

  .modern-hero{
    padding:20px 5%;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
  }

}/* =========================================
        DYNAMIC STICKY HEADER
========================================= */

.hero-header{
  position:fixed;

  top:25px;
  left:50%;

  transform:translateX(-50%);

  width:92%;
  max-width:1450px;

  padding:18px 35px;

  border-radius:70px;

  background:rgba(255,255,255,0.95);

  backdrop-filter:blur(14px);

  display:flex;
  align-items:center;
  justify-content:space-between;

  z-index:999;

  transition:
  width 0.5s ease,
  top 0.5s ease,
  border-radius 0.5s ease,
  padding 0.5s ease,
  background 0.5s ease,
  box-shadow 0.5s ease;
}

/* =========================================
        AFTER SCROLL
========================================= */

.hero-header.sticky{

  top:0;

  width:100%;
  max-width:100%;

  border-radius:0;

  padding:16px 6%;

  background:#ffffff;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

}

/* LOGO */

.hero-logo{
  display:flex;
  align-items:center;
  gap:15px;

  text-decoration:none;
}

.logo-icon{
  width:55px;
  height:55px;

  border-radius:16px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  );

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;

  font-size:28px;
  font-weight:700;
}

.logo-text h3{
  font-size:30px;
  color:#1e3a8a;
}

.logo-text span{
  color:#ef4444;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
}

/* NAVBAR */

.hero-navbar{
  display:flex;
  align-items:center;
  gap:40px;
}

.hero-navbar a{
  position:relative;

  text-decoration:none;

  color:#334155;

  font-weight:600;

  transition:0.4s ease;
}

.hero-navbar a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#ef4444;

  transition:0.4s ease;
}

.hero-navbar a:hover::after,
.active-link::after{
  width:100%;
}

/* RIGHT */

.hero-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.call-icon{
  width:55px;
  height:55px;

  border-radius:50%;

  background:#fff1f2;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ef4444;

  font-size:22px;
}

.quote-btn{
  padding:16px 34px;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #ef4444,
    #dc2626
  );

  color:#fff;
  text-decoration:none;

  font-weight:600;

  transition:0.4s ease;
}

.quote-btn:hover{
  transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-navbar{
    display:none;
  }

}

@media(max-width:768px){

  .hero-header{
    width:95%;
    padding:15px 20px;
  }

  .hero-header.sticky{
    padding:15px 5%;
  }

  .quote-btn{
    display:none;
  }

}

@media(max-width:500px){

  .logo-text h3{
    font-size:24px;
  }

  .call-icon{
    width:48px;
    height:48px;
  }

}

/* =========================================
            FLASH SCREEN
========================================= */

.flash-screen{
  position:fixed;
  inset:0;

  width:100%;
  height:100vh;

  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:99999;

  background:#050816;

  animation:hideFlash 1.2s ease forwards;
  animation-delay:4.2s;
}

/* VIDEO */

.flash-video{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */

.flash-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.82)
  );
}

/* GLOW */

.flash-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
}

.glow-1{
  width:320px;
  height:320px;

  background:#ff6b00;

  top:-80px;
  left:-80px;

  opacity:.25;
}

.glow-2{
  width:380px;
  height:380px;

  background:#2563eb;

  bottom:-120px;
  right:-120px;

  opacity:.22;
}

/* CONTENT */

.flash-content{
  position:relative;
  z-index:5;

  text-align:center;

  max-width:850px;

  padding:20px;
}

/* LOGO */

.flash-logo{
  font-size:70px;
  font-weight:800;

  color:#fff;

  margin-bottom:30px;

  opacity:0;

  animation:fadeUp 1s ease forwards;
}

.flash-logo span{
  color:#ff6b00;
}

/* TITLE */

.flash-content h1{
  font-size:88px;
  line-height:1.05;

  color:#fff;

  margin-bottom:25px;

  opacity:0;

  animation:fadeUp 1s ease forwards;
  animation-delay:.4s;
}

/* TEXT */

.flash-content p{
  font-size:20px;
  line-height:1.8;

  color:#dbeafe;

  margin-bottom:45px;

  opacity:0;

  animation:fadeUp 1s ease forwards;
  animation-delay:.8s;
}

/* LOADER */

.loader-line{
  width:340px;
  height:5px;

  border-radius:30px;

  background:rgba(255,255,255,0.12);

  margin:auto;

  overflow:hidden;

  opacity:0;

  animation:fadeUp 1s ease forwards;
  animation-delay:1.2s;
}

.loader-line span{
  display:block;

  width:0%;
  height:100%;

  border-radius:30px;

  background:
  linear-gradient(
    90deg,
    #ff6b00,
    #ff934b,
    #2563eb
  );

  animation:loading 3s ease forwards;
  animation-delay:1.5s;
}

/* ANIMATIONS */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes loading{

  from{
    width:0%;
  }

  to{
    width:100%;
  }

}

@keyframes hideFlash{

  to{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .flash-content h1{
    font-size:62px;
  }

}

@media(max-width:768px){

  .flash-logo{
    font-size:52px;
  }

  .flash-content h1{
    font-size:44px;
  }

  .flash-content p{
    font-size:17px;
  }

  .loader-line{
    width:100%;
  }

}

@media(max-width:500px){

  .flash-content h1{
    font-size:34px;
  }

  .flash-logo{
    font-size:42px;
  }

}
