/* =========================
   GLOBAL RESET
/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #020617;
    color: white;
    overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */
.bg {
    position: fixed;
    inset: 0;
    background: url('images/bg.jpeg') center/cover no-repeat;
    z-index: -1;
    animation: bgMove 20s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.08) translate(-2%, -2%); }
}

.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
}

/* =========================
   NAVBAR
========================= */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: linear-gradient(
        90deg,
        rgba(168,85,247,0.15),
        rgba(59,130,246,0.15),
        rgba(6,182,212,0.15)
    );

    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NAV LINKS */
.nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav ul li {
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
    cursor: pointer;
}

.nav ul li:hover {
    color: #fff;
    transform: scale(1.08);
}

/* =========================
   BUTTONS
========================= */
.contact-btn,
.cta {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    color: white;
    border-radius: 25px;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(245,253,255,0.3);
}

.contact-btn:hover,
.cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.small {
    color: #c2c2c2;
}

/* =========================
   HERO (VIDEO + TEXT OVERLAY)
========================= */
/* =========================
   HERO (VIDEO ONLY)
========================= */
.hero {
    width: 100%;
    height: 100vh;
   

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

/* VIDEO */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ full video visible */

}


/* =========================
   HERO TEXT (BELOW VIDEO)
========================= */
.hero-content {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 900px;
    margin: auto;
}

/* BADGE */
.hero-content .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
    margin-bottom: 15px;
}

/* HEADING */
.hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

/* GRADIENT TEXT */
.hero-content span {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    color: transparent;
}

/* PARAGRAPH */
.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* BUTTON */
.hero-content .cta {
    padding: 12px 26px;
    border-radius: 30px;
    margin-bottom: 10px;
}

/* SMALL TEXT */
.hero-content small {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.6);
}


/* =========================
   FLOATING REVIEWS
========================= */
.floating {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.review {
    width: 240px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    font-size: 13px;
    color: #ddd;
    animation: float 6s ease-in-out infinite;
}

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


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero {
        height: auto;
    }

    .hero-video {
        height: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* =========================
   SLIDER (PREMIUM GLASS)
========================= */
.slider {
    overflow: hidden;
    width: 100%;
    margin-top: 80px;
    position: relative;
}

/* Fade edges */
.slider::before,
.slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

/* TRACK */
.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* SLIDES */
.slide {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    margin-right: 20px;
    border-radius: 30px;
    white-space: nowrap;
    color: #ddd;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    flex-shrink: 0; /* 🔥 IMPORTANT */
}

.slide:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

/* 🔥 SMOOTH LOOP */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* =========================
   TAGS (GLASS PILLS)
========================= */
.tags {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.tags div {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 30px;
    color: #ddd;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.tags div:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
/* NAV BASE */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgb(80, 133, 212);
  backdrop-filter: blur(20px);

  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 999;
}

.mobile-menu a {
  padding: 15px 0;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ACTIVE MENU */
.mobile-menu.active {
  display: flex;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

}

/* =========================
   ABOUT (CENTER FOCUS)
========================= */
.about {
    text-align: center;
    padding: 160px 20px;
    max-width: 900px;
    margin: auto;
    position: relative;
}

/* glow behind text */
.about::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    z-index: -1;
}
.about-badge{
    font-size: 50px;
    color: #56a3cf;
}

.about h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;

    /* ✅ FIX: Replace black with readable premium white */
    color: #f8fafc;

    /* ✅ Optional: subtle glow for better visibility */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about h2 span {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    color: transparent;
}
/* =========================
   STATS (PREMIUM CARDS)
========================= */
.stats {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stats div {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: 0.3s;
}

.stats div:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
}

.stats h3 {
    font-size: 32px;
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    color: transparent;
}

.stats p {
    color: #aaa;
    margin-top: 6px;
}
/* =========================
   CURSOR GLOW
========================= */
.cursor {
    position: fixed;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(108,92,231,0.3), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes gradientMove {
    0% {
        background-position: 20% 30%, 80% 30%, center, center;
    }
    100% {
        background-position: 30% 40%, 70% 40%, center, center;
    }
}

@keyframes streakMove {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .nav ul { display: none; }

    .hero {
        padding: 140px 20px 80px;
    }

    .video img {
        width: 100%;
    }

    .review {
        display: none;
    }
}
/* SERVICES PAGE */

/* =========================
   SERVICES PAGE
========================= */

.services-page {
    padding: 140px 20px 100px;
    position: relative;
}

/* BACKGROUND GLOW */
/* =========================
   SERVICES PAGE
========================= */

.services-page {
    padding: 140px 20px 100px;
    position: relative;
}

.services-page::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(108,92,231,0.25), transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(160px);
    z-index: -1;
}


/* =========================
   HEADER
========================= */

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: clamp(36px, 5vw, 56px); /* 🔥 bigger */
    font-weight: 800;
    color: #ffffff;

    letter-spacing: 1.5px; /* 🔥 premium spacing */
    line-height: 1.2;

    text-shadow: 0 5px 30px rgba(0,0,0,0.6);
}
.badge{
    color: #00cec9;
}
.services-header p {
    color: #cbd5f5;
    margin-top: 14px;

    font-size: 18px;
    letter-spacing: 0.6px;
    line-height: 1.7;
}


/* =========================
   GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px; /* 🔥 more spacing */
    max-width: 1150px;
    margin: auto;
}


/* =========================
   CARD
========================= */

.service-card {
    background: rgba(255,255,255,0.10);
    padding: 32px;
    border-radius: 20px;

    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow inside */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover::after {
    opacity: 1;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-14px) scale(1.04);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.25);
}


/* =========================
   CARD TEXT
========================= */

.service-card h3 {
    margin-bottom: 14px;
    color: #00cec9;

    font-size: 22px; /* 🔥 bigger */
    font-weight: 700;

    letter-spacing: 0.8px; /* 🔥 spacing */
    line-height: 1.4;
}

.service-card p {
    color: #e2e8f0;

    font-size: 15px;
    line-height: 1.7;

    letter-spacing: 0.4px;
}


/* =========================
   TAGS
========================= */

.service-card .tags {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-card .tags span {
    background: rgba(108,92,231,0.25);
    padding: 7px 14px;
    border-radius: 20px;

    font-size: 13px;
    letter-spacing: 0.6px;

    color: #c7d2fe;
    border: 1px solid rgba(255,255,255,0.12);
}


/* =========================
   FEATURED CARD
========================= */

.service-card.featured {
    transform: scale(1.06);
    border: 1px solid #00d4ff;
    box-shadow: 0 30px 90px rgba(0,212,255,0.25);
}


/* =========================
   CTA SECTION
========================= */

.services-cta {
    text-align: center;
    margin-top: 90px;
}

.services-btn {
    padding: 16px 36px;
    border-radius: 40px;

    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.6px;

    border: none;
    cursor: pointer;

    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: #fff;

    transition: 0.3s ease;
}

.services-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 50px rgba(0,0,0,0.6);
}


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

@media (max-width: 768px) {
    .services-page {
        padding: 100px 20px;
    }

    .services-header h1 {
        font-size: 32px;
    }

    .service-card {
        padding: 26px;
    }
}
/* PROCESS PAGE */
.process-page {
  position: relative;
  z-index: 10;
  padding: 140px 20px 80px; 
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  color: #ffffff;
}

.process-header p {
  font-size: 16px;
  opacity: 0.7;
  color: #ffffff;
}
/* =========================
   PROCESS SECTION
========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 + 2 layout */
  gap: 40px;
  padding: 100px 20px;

  max-width: 1100px;
  margin: 0 auto;

  position: relative;
  z-index: 5;

  /* ENTRY ANIMATION (SAFE) */
  opacity: 0;
  transform: translateY(40px);
  animation: gridReveal 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* GRID REVEAL */
@keyframes gridReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BACKGROUND GLOW */
.process-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(0,198,255,0.15),
    transparent 70%
  );

  animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove {
  0%,100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* =========================
   CARD
========================= */

.process-card {
  position: relative;
  overflow: hidden;

  background: rgba(255, 254, 254, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.4s ease;

  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* stagger */
.process-card:nth-child(1){ animation-delay: 0.1s; }
.process-card:nth-child(2){ animation-delay: 0.3s; }
.process-card:nth-child(3){ animation-delay: 0.5s; }
.process-card:nth-child(4){ animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================
   HOVER
========================= */

.process-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ripple glow */
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;

  background: radial-gradient(
    circle at center,
    rgba(0,198,255,0.25),
    transparent 70%
  );

  opacity: 0;
  transition: 0.4s;
}

.process-card:hover::before {
  opacity: 1;
}

/* =========================
   ICON
========================= */

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.06);

  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.4s ease;

  animation: float 3s ease-in-out infinite;
}

.icon svg {
  width: 55px;
}

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

/* =========================
   STEP 01 – UPLOAD
========================= */

.upload-icon rect {
  fill: white;
  transform-origin: bottom;
  animation: wave 1.2s infinite ease-in-out;
}

.upload-icon rect:nth-child(1){ animation-delay: 0s; }
.upload-icon rect:nth-child(2){ animation-delay: 0.2s; }
.upload-icon rect:nth-child(3){ animation-delay: 0.4s; }
.upload-icon rect:nth-child(4){ animation-delay: 0.1s; }
.upload-icon rect:nth-child(5){ animation-delay: 0.3s; }
.upload-icon rect:nth-child(6){ animation-delay: 0.5s; }

@keyframes wave {
  0%,100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.upload-icon path {
  stroke: white;
  animation: arrowMove 1.5s infinite ease-in-out;
}

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

/* =========================
   STEP 02 – MAGIC
========================= */

.magic-icon rect {
  fill: white;
  animation: timelineMove 1.5s infinite ease-in-out;
}

.magic-icon rect:nth-child(1){ animation-delay: 0s; }
.magic-icon rect:nth-child(2){ animation-delay: 0.2s; }
.magic-icon rect:nth-child(3){ animation-delay: 0.4s; }
.magic-icon rect:nth-child(4){ animation-delay: 0.6s; }

@keyframes timelineMove {
  0%,100% { transform: scaleX(0.8); opacity: 0.6; }
  50% { transform: scaleX(1.2); opacity: 1; }
}

.magic-icon line {
  stroke: white;
  stroke-width: 2;
  transform-origin: top;
  animation: cutMove 1.2s infinite ease-in-out;
}

.magic-icon circle {
  fill: white;
}

@keyframes cutMove {
  0%,100% { transform: rotate(0deg); }
  50% { transform: rotate(20deg); }
}

/* =========================
   HOVER ICON EFFECT
========================= */

.process-card:hover .upload-icon rect,
.process-card:hover .magic-icon rect {
  fill: #00c6ff;
  animation-duration: 0.5s;
}

.process-card:hover .upload-icon path,
.process-card:hover .magic-icon line {
  stroke: #00c6ff;
}

.process-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0,198,255,0.6);
}

/* =========================
   TEXT
========================= */

.process-card .number {
  font-size: 14px;
  opacity: 0.6;
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00cec9;
}

.process-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
  color: #ffffff;
}

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

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 25px;
  }
}
/* =========================
   STEP 03 – FEEDBACK ICON
========================= */

/* bubble */
.feedback-icon rect,
.feedback-icon polygon {
  fill: white;
  transition: 0.3s;
}

/* typing dots */
.feedback-icon circle {
  fill: black;
  animation: typing 1.4s infinite ease-in-out;
}

/* stagger animation */
.feedback-icon circle:nth-of-type(1){ animation-delay: 0s; }
.feedback-icon circle:nth-of-type(2){ animation-delay: 0.2s; }
.feedback-icon circle:nth-of-type(3){ animation-delay: 0.4s; }

/* typing animation */
@keyframes typing {
  0%,100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* =========================
   HOVER EFFECT (MATCH GRID 1 & 2)
========================= */

.process-card:hover .feedback-icon rect,
.process-card:hover .feedback-icon polygon {
  fill: #00c6ff;
}

.process-card:hover .feedback-icon circle {
  animation-duration: 0.6s;
}

/* optional glow sync */
.process-card:hover .feedback-icon {
  filter: drop-shadow(0 0 10px rgba(0,198,255,0.6));
}
/* =========================
   STEP 04 – ROCKET ICON
========================= */

/* rocket body */
.rocket-icon path,
.rocket-icon polygon,
.rocket-icon circle {
  fill: white;
}

/* =========================
   ROCKET FLOAT (LAUNCH FEEL)
========================= */

.rocket-icon {
  animation: rocketFloat 2s ease-in-out infinite;
}

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

/* =========================
   FLAME ANIMATION
========================= */

.rocket-icon .flame {
  fill: orange;
  animation: flameMove 0.6s infinite ease-in-out;
}

@keyframes flameMove {
  0%,100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.4);
    opacity: 1;
  }
}

/* =========================
   HOVER EFFECT
========================= */

.process-card:hover .rocket-icon {
  animation-duration: 0.6s;
}

.process-card:hover .rocket-icon path,
.process-card:hover .rocket-icon polygon,
.process-card:hover .rocket-icon circle {
  fill: #00c6ff;
}

.process-card:hover .rocket-icon .flame {
  fill: #00c6ff;
  animation-duration: 0.3s;
}

/* glow */
.process-card:hover .rocket-icon {
  filter: drop-shadow(0 0 12px rgba(0,198,255,0.7));
}
/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio {
    padding: 140px 20px;
    text-align: center;
}

.portfolio-header {
    margin-bottom: 80px;
}

.portfolio-header h2 {
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 800;
    color: #ffffff;

    letter-spacing: 1.2px;
}

.portfolio-header p {
    color: #cbd5f5;
    margin-top: 12px;

    font-size: 17px;
    letter-spacing: 0.5px;
}

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.portfolio-card {
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 22px;

    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);

    text-align: left;
    transition: all 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* VIDEO */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    border-radius: 12px;
}

/* play button */
.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 30px;
    background: rgba(0,0,0,0.6);
    padding: 12px 16px;
    border-radius: 50%;
    color: #fff;
}

/* META */
.meta {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    cursor: pointer;
    color: #cbd5f5;
    font-size: 13px;
}

/* TEXT */
.portfolio-card h3 {
    margin-top: 12px;
   cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;

    letter-spacing: 0.6px;
}

.portfolio-card p {
    color: #e2e8f0;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    line-height: 1.6;
}
.video-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   SOLUTION SECTION (SINGLE BOX)
========================= */

.solution {
    padding: 140px 20px;
    text-align: center;
}

/* HEADER */
.solution-header {
    margin-bottom: 80px;
}

.solution-header h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.2px;
}

.solution-header p {
    color: #cbd5f5;
    margin-top: 12px;
    font-size: 18px;
}


/* =========================
   MAIN BOX
========================= */

.solution-box {
    max-width: 900px;
    margin: auto;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);

    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    text-align: left;
}


/* =========================
   LEFT (PROBLEM)
========================= */

.problem h3 {
    font-size: 22px;
    color: #ff6b6b;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.problem li {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 14px;
}


/* =========================
   RIGHT (SOLUTION)
========================= */

.solution-right h3 {
    font-size: 22px;
    color: #22c55e;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}

.solution-right li {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 14px;
}


/* =========================
   ICONS (CLEAN)
========================= */

.problem li::before {
    content: "✖";
    color: #ff4d4d;
    margin-right: 10px;
}

.solution-right li::before {
    content: "✔";
    color: #22c55e;
    margin-right: 10px;
}


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

@media (max-width: 768px) {
    .solution-box {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .solution-header h2 {
        font-size: 32px;
    }
}

/* =========================
   PRICING SECTION
========================= */

.pricing {
    padding: 140px 20px;
    text-align: center;
    position: relative;
}

/* subtle glow */
.pricing::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(108,92,231,0.2), transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(160px);
    z-index: -1;
}

/* HEADER */
.pricing-header {
    margin-bottom: 80px;
}

.pricing-header h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #ffffff;

    letter-spacing: 1.2px;
}

.pricing-header p {
    color: #cbd5f5;
    margin-top: 14px;

    font-size: 18px;
    letter-spacing: 0.5px;
}


/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}


/* CARD */
.price-card {
    background: rgba(255,255,255,0.10);
    padding: 32px;
    border-radius: 20px;

    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);

    text-align: left;
    position: relative;
    transition: all 0.35s ease;
}

/* hover */
.price-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}


/* FEATURED */
.price-card.featured {
    border: 2px solid #00cec9;
    transform: scale(1.06);
    box-shadow: 0 30px 90px rgba(0,206,201,0.25);
}


/* POPULAR TAG */
.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;

    background: linear-gradient(135deg, #00c3ff, #ff7a00);
    padding: 6px 12px;
    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
    color: #fff;
}


/* TEXT */
.price-card h4 {
    color: #cbd5f5;
    margin-bottom: 10px;
    font-size: 14px;
}

.price-card h3 {
    margin-bottom: 20px;

    font-size: 22px;
    font-weight: 700;
    color: #ffffff;

    letter-spacing: 0.6px;
}


/* PLAN OPTIONS (FIXED) */
.price-btn {
    background: rgba(255,255,255,0.12);
    color: #ffffff;

    padding: 12px 16px;
    border-radius: 12px;

    margin-bottom: 10px;
    font-size: 14px;

    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

/* hover */
.price-btn:hover {
    background: rgb(2, 202, 252);
}


/* CTA */
.price-card .cta {
    margin-top: 20px;
}

.price-card .cta button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;

    font-weight: 600;
    border: none;
    cursor: pointer;

    background: linear-gradient(90deg, #6c5ce7, #00cec9);
    color: #fff;

    transition: 0.3s;
}

.price-card .cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}


/* =========================
   REVIEWS SECTION
========================= */

.reviews {
    padding: 140px 20px;
    text-align: center;
}

/* HEADER */
.reviews-header {
    margin-bottom: 80px;
}

.reviews-header h2 {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 800;
    color: #ffffff;

    letter-spacing: 1.2px;
}

.reviews-header p {
    color: #cbd5f5;
    margin-top: 14px;

    font-size: 17px;
}


/* CONTAINER */
/* CONTAINER */
.reviews-container {
  max-width: 800px;
  margin: 0 auto;
}

/* LIST */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ITEM */
.review-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;

  padding: 20px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.review-item:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.review-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.review-text h4 {
  margin: 0 0 5px;
  font-size: 16px;

}

.review-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .review-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.review-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
}

/* =========================
   REVIEW ITEM LAYOUT
========================= */

.review-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 24px;
}

/* TEXT CONTAINER */
.review-content {
    text-align: left; /* 🔥 IMPORTANT FIX */
}

/* NAME */
.review-item h4 {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;

    color: #00cec9; /* 🔥 optional highlight */

    letter-spacing: 0.5px;
}

/* TEXT */
.review-item p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;

    opacity: 0.85;
}


/* =========================
   CTA
========================= */
.review-cta {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}

/* 🔥 PREMIUM BIG CTA */
.cta-box {
  width: 100%;
  max-width: 650px; /* ⬆️ increased width */
  
  background: rgba(255,255,255,0.10);
  padding: 70px 60px; /* ⬆️ more breathing space */
  border-radius: 28px;

  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.6);

  transition: 0.4s ease;
}

/* ✨ HOVER = PREMIUM FEEL */
.cta-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

/* 🔥 TITLE */
.cta-box h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
}

/* 🔘 BUTTON */
.cta-box button {
  padding: 16px 42px;
  border-radius: 50px;
  border: none;

  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: 0.3s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* BUTTON HOVER */
.cta-box button:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* 📩 EMAIL TEXT */
.email {
  margin-top: 10px;
  font-size: px;
  opacity: 0.75;
  color: #ffffff;
}

/* OPTIONAL SUBTEXT */
.cta-box p {
  font-size: 15px;
  opacity: 0.8;
  color: #ddd;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

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

  .review-cta {
    width: 100%;
    margin-top: 40px;
  }

  .cta-box {
    max-width: 100%;
    padding: 50px 30px;
  }

  .cta-box h3 {
    font-size: 22px;
  }

  .cta-box button {
    padding: 14px 32px;
  }
}
/* =========================
   FAQ PAGE (PREMIUM FIXED)
========================= */

.faq-page {
    padding: 140px 20px;
    max-width: 900px;
    margin: auto;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h1 {
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;

    letter-spacing: 1px;
}

.faq-header p {
    color: #cbd5f5;
    margin-top: 14px;
    font-size: 18px;
    letter-spacing: 0.5px;
}


/* WRAPPER */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ITEM */
.faq-item {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 22px;

    cursor: pointer;
    transition: all 0.3s ease;

    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
}

/* HOVER */
.faq-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}


/* ACTIVE STATE (FIXED — NO BLACK) */
.faq-item.active {
    background: rgba(255,255,255,0.14);
    border: 1px solid #00cec9;
    box-shadow: 0 10px 40px rgba(0,206,201,0.2);
}


/* QUESTION */
.faq-question {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;

    display: flex;
    justify-content: space-between;
    align-items: center;

    letter-spacing: 0.4px;
}


/* ICON */
.faq-question .icon {
    transition: 0.3s ease;
    font-size: 18px;
    color: #00cec9;
}

/* ROTATE ICON */
.faq-item.active .icon {
    transform: rotate(180deg);
}


/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
     color: #ffffff;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* =========================
   NAV LINKS (CLEAN PREMIUM)
========================= */

.nav ul li a {
    position: relative;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;

    padding: 8px 16px;
    border-radius: 20px;

    transition: all 0.3s ease;
}

/* HOVER */
.nav ul li a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* ACTIVE (CLEAN — NO OVER GLOW) */
.nav ul li a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #6c5ce7, #00cec9);

    box-shadow: 0 6px 20px rgba(108,92,231,0.3);
}

/* PRESS */
.nav ul li a:active {
    transform: scale(0.95);
}


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

@media (max-width: 768px) {

    .faq-page {
        padding: 120px 20px;
    }

    .faq-header h1 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #0a0a0a;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.footer h4 {
    margin-bottom: 10px;
    color: #00cdf7;
}

.footer p {
    color: #aaa;
    margin-bottom: 6px;
    font-size: 14px;
}
.footer-left h3 {
    color: #00cdf7;
}
.footer-left p {
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 13px;
}
/* =========================
   ULTRA PREMIUM CTA SECTION
========================= */

/* =========================
   ULTRA PREMIUM CTA SECTION
========================= */

.cta-section {
    padding: 160px 20px;
    display: flex;
    justify-content: center;
}

/* MAIN BOX */
.cta-box-main {
    position: relative;
    background: radial-gradient(circle at top left, #1b1b2f, #0a0a0a);
    padding: 80px 50px;
    border-radius: 28px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    overflow: visible;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9);
}

/* 🔥 GLOW BACKGROUND */
.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108,92,231,0.6), transparent);
    top: -200px;
    left: -200px;
    filter: blur(140px);
    animation: moveGlow 10s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes moveGlow {
    0% { transform: translate(0,0); }
    100% { transform: translate(300px,200px); }
}

/* ✨ PARTICLE DOTS */
.cta-box-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: moveParticles 20s linear infinite;
    z-index: 1;
}

@keyframes moveParticles {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}

/* TEXT */
.cta-box-main h2 {
    font-size: 44px;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.cta-box-main p {
    color: #aaa;
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
    font-size: 16px;
}

/* 🚀 BUTTON */
.cta-box-main .cta {
    background: linear-gradient(135deg, #6c5ce7, #00cec9);
    border: none;
    padding: 16px 34px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    font-size: 15px;
}

.cta-box-main .cta:hover {
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(108,92,231,1);
}

/* TAG CONTAINER */
.cta-tags {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* TAG STYLE */
.tag {
    position: absolute;
    background: rgba(0, 158, 231, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    border: 1px solid rgba(190, 186, 186, 0.658);
    backdrop-filter: blur(12px);
    opacity: 0.95;
}

/* DIFFERENT ROTATIONS */
.t1 { transform: rotate(-10deg); }
.t2 { transform: rotate(8deg); }
.t3 { transform: rotate(-6deg); }
.t4 { transform: rotate(6deg); }

/* POSITION + FLOAT */
.t1 { left: 40px; bottom: 20px; animation: float1 6s ease-in-out infinite; }
.t2 { right: 40px; bottom: 40px; animation: float2 5s ease-in-out infinite; }
.t3 { right: 180px; bottom: 10px; animation: float3 7s ease-in-out infinite; }
.t4 { left: 180px; bottom: 50px; animation: float4 6s ease-in-out infinite; }

/* FLOAT VARIATIONS */
@keyframes float1 {
    0%,100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-12px) rotate(-10deg); }
}

@keyframes float2 {
    0%,100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes float3 {
    0%,100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-10px) rotate(-6deg); }
}

@keyframes float4 {
    0%,100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-14px) rotate(6deg); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .cta-box-main {
        padding: 60px 25px;
    }

    .cta-box-main h2 {
        font-size: 28px;
    }

    .cta-box-main p {
        font-size: 14px;
    }

    .tag {
        display: none; /* clean mobile UI */
    }
}
.footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #00cec9;
    transform: translateX(5px);
}