html {
  scroll-behavior: smooth;
}
header{
    margin-bottom: 0;
}
.cover{
    width: 80%;
    margin: 0 auto;
}
/* =========================
   MAIN HERO
========================= */
.main-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
/* 
  background: url("../img/work.jpg") center/cover no-repeat; */
  animation: bgZoom 20s ease-in-out infinite alternate;
}

/* added now */
/* =========================
   HERO BACKGROUND SLIDER
========================= */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size:cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

/* Your images */
.hero-slide:nth-child(1) {
  background-image: url("../img/servicehero.webp");
}

.hero-slide:nth-child(2) {
  background-image: url("../img/services.jpeg");
}

.hero-slide:nth-child(3) {
  background-image: url("../img/journey.jpg");
}

.hero-slide.active {
  opacity: 1;
}
/* end added now */

@keyframes bgZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,25,55,0.8), rgba(2,9,20,0.9));
  z-index: 1;
}

/* LIGHT STREAK */
.light-streak {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(77,163,255,0.15),
    transparent 60%
  );
  transform: rotate(25deg);
  animation: streakMove 10s linear infinite;
  z-index: 2;
}

@keyframes streakMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* HERO CONTENT CARD */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 3rem;
  border-radius: 25px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);

  color: white;

  animation: fadeUp 1.5s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #db292f, #1B2E83);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  animation: fadeIn 2s ease;
}

/* TITLE */
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.highlight {
  background: linear-gradient(90deg,#db292f,#4da3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(90deg,#db292f,#1B2E83);
  color: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.primary-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* OUTLINE BUTTON */
.outline-btn {
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
}

.outline-btn:hover {
  background: white;
  color: #1B2E83;
  transform: translateY(-6px);
}

/* PARTICLES (soft floating dots) */
.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(77,163,255,0.3), transparent 70%);
  animation: float 12s infinite ease-in-out alternate;
  z-index: 2;
}

.hero-particles::after {
  top: 70%;
  left: 70%;
  animation-delay: 5s;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-40px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
  }
}
/* HERO SECTION */
/* 

/* better  */
/* =========================
   LUXURY DARK SECTION
========================= */

.hero-service {
    width: 100%;
    padding: 6rem 8%;
    background: linear-gradient(135deg, #0f0f2b, #15153c, #0b0b22);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.hero-service::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,0,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.art-content-service {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* IMAGE SIDE */
.image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.4s ease;
}

.image:hover .image-overlay {
    opacity: 1;
}

/* CONTENT */
.content-service {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #bbbbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text p {
    color: #cfcfe8;
    line-height: 1.8;
}

/* COUNTERS */
.counters {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1 1 160px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255,0,0,0.3);
}

.counter-box h3 {
    font-size: 2rem;
    color: #ff4c4c;
}

.counter-box p {
    color: #d6d6f5;
    font-size: 0.95rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .art-content-service {
        flex-direction: column;
        text-align: center;
    }

    .image img {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .hero-service {
        padding: 4rem 5%;
    }

    .image img {
        height: 280px;
    }
}




/* =============================
   PROCESS SECTION
============================= */
/* =============================
   LUXURY PROCESS SECTION
============================= */

.lux-process {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 100px 20px;
  color: white;
  overflow: hidden;
}

.lux-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 80px;
  position: relative;
}

.lux-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, red, transparent);
  display: block;
  margin: 20px auto 0;
}

/* Timeline Wrapper */
.lux-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Animated Line */
.lux-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, red, white);
  transition: width 2s ease;
}

.lux-timeline.active::before {
  width: 100%;
}

/* Glass Card */
.lux-card {
  flex: 1;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.8s ease;
}

.lux-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* Dot */
.lux-dot {
  width: 18px;
  height: 18px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px red;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px red; }
  50% { box-shadow: 0 0 25px red; }
  100% { box-shadow: 0 0 10px red; }
}

.lux-card h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ffffff;
}

.lux-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-top: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.lux-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: red;
}

/* =============================
   MOBILE VERSION
============================= */

@media (max-width: 900px) {

  .lux-timeline {
    flex-direction: column;
    gap: 60px;
  }

  .lux-timeline::before {
    width: 2px;
    height: 0%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .lux-timeline.active::before {
    height: 100%;
    width: 2px;
  }

  .lux-dot {
    top: -9px;
    left: 50%;
  }
}
/* 
.process-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9fafc, #ffffff);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(24, 24, 90);
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: red;
  display: block;
  margin: 15px auto 0;
}

/* Wrapper */
.process-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

/* Card */
.process-card {
  background: white;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

/* Animation Delay */
.process-card:nth-child(1){ animation-delay: 0.2s; }
.process-card:nth-child(2){ animation-delay: 0.4s; }
.process-card:nth-child(3){ animation-delay: 0.6s; }
.process-card:nth-child(4){ animation-delay: 0.8s; }

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Step Number */
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgb(24, 24, 90);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.process-card:hover .step-number {
  background: red;
  transform: rotate(360deg);
}

/* Text */
.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: rgb(24, 24, 90);
}

.process-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   MOBILE OPTIMIZATION
============================= */

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .process-card {
    padding: 30px 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
} */
/* .working-project{
    margin: 2rem;
}

.working-project ul{
    display: flex;
  gap: 5rem;
    flex-wrap:wrap;
}
.working-project h2{
    color: rgb(24, 24, 90);
    text-transform: capitalize;
    margin: 2rem 0;
    font-size: 2rem;
    padding: 2rem 0;
}

.working-project .icon{
    border: 3px dotted red;
    width: 45px;
    height: 45px;
    margin: 1.5rem auto;
    border-radius: 50%;
}

.working-project ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.working-project li{
    /* width: 100%; 
    margin: 1rem 0; /* FIXED TYPO 
    padding: 0;
} */

/* ============================= */
/* SERVICE PRESENTATION SECTION  */
/* ============================= */
/* =========================
   SECTION BACKGROUND
========================= */
.modern-section {
    width: 80%;
    margin: 8rem auto;
    position: relative;
    padding: 6rem 4%;
    border-radius: 30px;
    overflow: hidden;
}

/* Optional Background Image */
.section-bg {
    position: absolute;
    inset: 0;
    background: url("img/your-background.jpg") center/cover no-repeat;
    filter: brightness(0.3);
    z-index: -2;
}

/* Glass overlay */
.modern-section::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.05);
    z-index: -1;
}

/* =========================
   TITLE
========================= */
.section-title {
    font-size: 2.6rem;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: 1px;
}

/* Animated underline */
.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#db292f,#1B2E83);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
    animation: growLine 1.2s ease forwards;
}

@keyframes growLine {
    from { width: 0; }
    to { width: 80px; }
}
/* 
/* =========================
   CARDS LAYOUT
========================= 
.service-presentation-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

/* =========================
   CARD DESIGN
========================= 
.card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.5s ease;
    transform: translateY(30px);
    opacity: 0;
}

/* Scroll reveal 
.card.show {
    transform: translateY(0);
    opacity: 1;
}

/* Hover */
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* =========================
   IMAGE
========================= 
.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.15);
}

/* =========================
   OVERLAY
========================= 
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
}

.card:hover .overlay {
    opacity: 1;
}

/* =========================
   BUTTON
=========================
.btn {
    padding: 12px 26px;
    background: linear-gradient(90deg,#db292f,#1B2E83);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* =========================
   TEXT
========================= 
.titles {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px;
    color: #fff;
}

.card-content {
    padding: 0 20px 30px;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.85);
}

/* =========================
   RESPONSIVE
========================= 
@media (max-width: 992px) {
    .card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
} */
/* ============================= */
/* START JOURNEY */
/* ============================= */

/* services section start */

/* SECTION */
.service-presentation {
  width: 90%;
  margin: 8rem auto;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a, #111827);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Background */
.service-presentation::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent);
  top: -150px;
  right: -150px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 4rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
  transition: 0.4s ease;
}

.section-title:hover::after {
  width: 120px;
}

/* GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

/* CARD */
.card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(59,130,246,0.25);
}

/* ICON */
.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  border-radius: 50%;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59,130,246,0.4), transparent);
  border-radius: 50%;
  z-index: -1;
}

.service-icon {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* TEXT */
.titles {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.card-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* services section end */
/* =========================
   START JOURNEY SECTION
========================= */
.start-journey {
  position: relative;
  width: 90%;
  margin: 6rem auto;
  padding: 6rem 2rem;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;

  background: url("../img/journey.jpg") center center no-repeat;
  background-size: cover;
  animation: bgZoom 25s ease-in-out infinite alternate;
}

/* Subtle zoom */
@keyframes bgZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* Overlay */
.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85),
    rgba(20,30,60,0.85)
  );
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* Animated border glow */
.journey-glow {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(90deg,#db292f,#1B2E83,#4da3ff,#db292f);
  background-size: 300% 300%;
  animation: borderGlow 6s linear infinite;
  z-index: 0;
}

@keyframes borderGlow {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

/* CONTENT */
.journey-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
}

/* Scroll reveal */
.start-journey.show .journey-content {
  opacity: 1;
  transform: translateY(0);
}

/* BADGE */
.journey-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg,#db292f,#1B2E83);
}

/* TITLE */
.journey-content h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.highlight-text {
  background: linear-gradient(90deg,#db292f,#4da3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.subtitle {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* BUTTONS */
.journey-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.journey-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.4s ease;
}

/* Ripple effect */
.journey-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: width 0.6s ease, height 0.6s ease;
}

.journey-btn:active::after {
  width: 300px;
  height: 300px;
  transition: 0s;
}

/* BUTTON STYLES */
.call {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.jobs {
  background: white;
  color: #1B2E83;
}

/* Hover */
.journey-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.whatsapp:hover {
  background: #1ebe5d;
}

.jobs:hover {
  background: #1B2E83;
  color: white;
}

/* ICON ANIMATION */
.journey-btn i {
  transition: transform 0.4s ease;
}

.journey-btn:hover i {
  transform: scale(1.2) rotate(8deg);
}

/* Floating particles */
.journey-particles::before,
.journey-particles::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(77,163,255,0.3), transparent 70%);
  animation: float 10s infinite alternate ease-in-out;
  z-index: 1;
}

.journey-particles::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-40px); }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .journey-content h2 {
    font-size: 2rem;
  }

  .journey-buttons {
    flex-direction: column;
  }
}
/* ============================= */
/* ASK FORM */
/* ============================= */

/* =========================
   ASK SECTION
========================= */
.ask {
  position: relative;
  padding: 6rem 1rem;
  /* background: url("../img/work.jpg") center/cover no-repeat; */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark glass overlay */
.ask-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.85), rgba(0,0,0,0.8));
  backdrop-filter: blur(6px);
}

/* FORM CARD */
.ask-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  padding: 3rem;
  border-radius: 25px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);

  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Scroll reveal */
.ask.show .ask-form {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.ask-form h5 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: white;
}

.form-subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

/* =========================
   INPUT GROUP
========================= */
.input-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.input-group textarea + label {
  top: 20px;
}

/* INPUTS */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.9rem 0.9rem 0.9rem 45px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

/* Floating labels */
.input-group label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #4da3ff;
  box-shadow: 0 0 15px rgba(77,163,255,0.4);
}

/* Float effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -10px;
  font-size: 0.75rem;
  color: #4da3ff;
}

/* TEXTAREA */
.textarea-group textarea {
  height: 130px;
  resize: none;
  padding-top: 1rem;
}

/* =========================
   BUTTON
========================= */
.ask-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: white;
  background: linear-gradient(90deg,#db292f,#1B2E83);
  background-size: 200%;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.ask-btn:hover {
  background-position: right;
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
  .ask-form {
    padding: 2rem;
  }

  .ask-form h5 {
    font-size: 1.5rem;
  }
}

footer{
  margin-top: 0 !important;
}