/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 7%;
}

.page-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50vh;
  position: relative;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* BLOBS */

.blob {
  position: absolute;
  will-change: transform;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.blob1 {
  will-change: transform;
  width: 500px;
  height: 500px;
  background: #4f46e5;
  top: -100px;
  left: -100px;
}

.blob2 {
  will-change: transform;
  width: 450px;
  height: 450px;
  background: #00d9ff;
  bottom: -200px;
  right: -100px;
}

.blob3 {
  will-change: transform;
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  top: 20%;
  left: 45%;
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content !important;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff99;
  box-shadow: 0 0 10px #00ff99;
}

h1 {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}
h2 {
  color: white !important;
}

.gradient {
  /* background: linear-gradient(70deg, #8ab4ff, #00d9ff); */
  /* background: linear-gradient(90deg, #9cc050, #b8eb49); */
  background: #bbf340;
  list-style: 1.2;
  padding-bottom: 0.2em;
  padding-right: 0.1em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin-top: 32px;
  max-width: 620px;
  color: #9f9f9f;
  font-size: 1.15rem;
  line-height: 1.8;
}

.buttons {
  display: flex;
  gap: 18px;
  margin-top: 40px;
}

.btn {
  padding: 18px 28px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* FLOATING CARDS */

.card {
  position: absolute;
  z-index: 10;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* backdrop-filter: blur(18px); */
  width: 220px;
}

.card h3 {
  color: #8f8f8f;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.card .value {
  font-size: 3rem;
  font-weight: 800;
}

.chart {
  height: 70px;
  margin-top: 18px;
  border-radius: 14px;
  /* background: linear-gradient(to top, rgba(0, 217, 255, 0.5), transparent); */
  background: linear-gradient(to top, #bbf340, transparent);
}

/* RIGHT CARD */

.card-right {
  top: 20%;
  right: 7%;
}

/* LEFT CARD */

.card-bottom {
  bottom: 24%;
  right: 7%;
}

/* SCROLL TEXT */

.scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 6px;
  color: #777;
  font-size: 0.8rem;
}

.spacer {
  height: 150vh;
  background: #111;
  padding: 100px 10vw;
}

.card-new {
  height: 300px;
  border-radius: 30px;
  background: #1d1d1d;
  margin-bottom: 40px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .card-left {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 180px;
  }

  h1 {
    font-size: 4rem;
    letter-spacing: -3px;
  }

  .card {
    display: none;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}

/* ================= MARQUEE ================= */

.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  background: #0a0a0a;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 60px;
}

.marquee-track h2 {
  color: #777;
  font-size: 5vw;
  white-space: nowrap;
  opacity: 0.8;
}

/* ABOUT SECTION */

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 8%;
  overflow: hidden;
  background: #050505;
  color: white;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00d9ff33 0%, transparent 70%);
  top: -150px;
  right: -100px;
  z-index: 0;
  filter: blur(40px);
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.about-left {
  flex: 1;
}

.about-title {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.about-title span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.1rem;
  color: #b5b5b5;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 50px;
}

.about-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  padding: 14px;
  min-width: 150px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* backdrop-filter: blur(20px); */
  transition: 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #00d9ff88;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.stat-card p {
  color: #9f9f9f;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 32px;
  overflow: hidden;
  transform: rotate(3deg);
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 32px;
}

/* Responsive */

@media (max-width: 980px) {
  .about-container {
    flex-direction: column;
  }

  .about-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 640px) {
  .about-title {
    font-size: 2.8rem;
  }

  .about-section {
    padding: 90px 6%;
  }
}

/* SERVICES SECTION */

.services-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  background: #050505;
  color: white;
  /* overflow: hidden; */
}

/* LEFT SIDE */

.services-left {
  position: sticky;
  top: 0;
  width: 40%;
  height: 100vh;
  padding: 120px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
  z-index: 10;
}

.services-tag {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  font-size: 14px;
}

.services-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.services-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-description {
  color: #9d9d9d;
  line-height: 1.8;
  max-width: 500px;
  font-size: 1.05rem;
}

/* RIGHT SIDE */

.services-right {
  width: 60%;
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  min-height: 50vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px;
  margin-bottom: 40px;

  border-radius: 32px;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.06);

  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00d9ff25 0%, transparent 70%);
  top: -120px;
  right: -80px;
  opacity: 0;
  transition: 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: #00d9ff66;
}

.service-number {
  font-size: 0.9rem;
  color: #00d9ff;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.service-card h3 {
  font-size: 4rem;
  color: white !important;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card p {
  max-width: 500px;
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .services-section {
    flex-direction: column;
  }

  .services-left {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .services-right {
    width: 100%;
  }

  .services-heading {
    font-size: 3.8rem;
  }
}

@media (max-width: 640px) {
  .services-heading {
    font-size: 2.8rem;
  }

  .service-card {
    padding: 35px;
    min-height: auto;
  }

  .service-card h3 {
    font-size: 2rem;
  }
}

/* PROCESS SECTION */

.process-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  background: #050505;
  color: white;
}

/* LEFT SIDE */

.process-left {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 100vh;
  padding: 120px 6%;
  position: relative;
  z-index: 10;
}

.process-left-inner {
  position: sticky;
  top: 0;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 6%;
  background: #050505;
}

/* RIGHT SIDE */

.process-right {
  width: 60%;
  overflow: hidden;

  display: flex;
  align-items: center;
}

/* HORIZONTAL TRACK */

.process-track {
  display: flex;
  gap: 30px;
  padding-right: 20vw;
}

/* CARDS */

.process-card {
  display: flex;
  flex: 0 0 550px;
  height: 70vh;

  padding: 60px;

  border-radius: 32px;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.06);

  display: flex;
  flex-direction: column;
  justify-content: center;

  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00d9ff25 0%, transparent 70%);
  top: -120px;
  right: -80px;
  opacity: 0;
  transition: 0.5s ease;
}

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

.process-card:hover {
  transform: translateY(-10px);
  border-color: #00d9ff66;
}

.process-card span {
  font-size: 0.9rem;
  color: #00d9ff;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.process-card h3 {
  font-size: 4rem;
  color: white !important;
  margin-bottom: 20px;
  line-height: 1;
}

.process-card p {
  color: #a7a7a7;
  line-height: 1.8;
  max-width: 420px;
  font-size: 1.05rem;
}

/* TYPOGRAPHY */

.process-tag {
  display: inline-flex;
  width: fit-content;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 30px;
}

.process-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.process-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-description {
  color: #9d9d9d;
  line-height: 1.8;
  max-width: 500px;
}

/* MOBILE */

@media (max-width: 900px) {
  .process-section {
    flex-direction: column;
  }
  .process-section,
  .process-left,
  .process-right,
  .process-left-inner {
    height: auto;
    min-height: auto;
  }

  .process-left,
  .process-right {
    width: 100%;
    padding: 0;
  }

  .process-left-inner {
    position: relative;
    top: auto;
  }
  .process-right {
    overflow: visible;
  }

  .process-right-inner {
    position: relative;
    height: auto;
  }

  .process-track {
    flex-direction: column;
    transform: none !important;
  }

  .process-card {
    flex: unset;
    width: 100%;
    height: auto;
    min-height: 60vh;
  }

  .process-heading {
    font-size: 3rem;
  }

  .process-card h3 {
    font-size: 2.5rem;
    color: white !important;
  }
}

/* TESTIMONIAL SECTION */

.testimonial-section {
  position: relative;
  padding: 80px 0;
  background: #050505;
  overflow: hidden;
  color: white;
}

/* HEADER */

.testimonial-header {
  padding: 0 6%;
  /* margin-bottom: 80px; */
}

.testimonial-tag {
  display: inline-flex;
  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 30px;
}

.testimonial-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.testimonial-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-description {
  max-width: 650px;
  color: #9d9d9d;
  line-height: 1.8;
}

/* TRACK */

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

/* CARDS */

.testimonial-card {
  flex: 0 0 500px;

  min-height: 380px;

  padding: 50px;

  border-radius: 32px;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.06);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.quote {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #f5f5f5;
}

.client {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.client span {
  color: #8f8f8f;
  font-size: 0.95rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 3rem;
  }

  .testimonial-card {
    flex: 0 0 90vw;
    min-height: 320px;
    padding: 35px;
  }

  .quote {
    font-size: 1.15rem;
  }
}

/* BRANDS SECTION */

.brands-section {
  position: relative;
  padding: 140px 6%;
  background: #050505;
  color: white;
  overflow: hidden;
}

/* HEADER */

.brands-header {
  max-width: 800px;
  margin-bottom: 90px;
}

.brands-tag {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  margin-bottom: 30px;
}

.brands-heading {
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 25px;
}

.brands-heading span {
  background: linear-gradient(90deg, #7aa2ff, #00d9ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-description {
  color: #9d9d9d;
  line-height: 1.8;
  max-width: 650px;
}

/* GRID */

.brands-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* BRAND ITEM */

.brand-item {
  height: 180px;

  border-radius: 28px;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.06);

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

  opacity: 0;

  transform: translateY(60px);

  will-change: transform, opacity;
}

.brand-item img {
  width: 140px;
  max-width: 70%;

  filter: grayscale(100%) brightness(1.8);

  opacity: 0.9;

  transition: 0.4s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* MOBILE */

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

  .brands-heading {
    font-size: 3.8rem;
  }
}

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

  .brands-heading {
    font-size: 2.8rem;
  }

  .brand-item {
    height: 140px;
  }
}

/* SECTION */
.logo-showcase {
  position: relative;
  background: #050505;
  color: white;
  /* padding: 120px 6%; */
}

/* STICKY WRAPPER */
.logo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 40px;
}

/* TEXT */
.logo-tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.logo-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
  margin-bottom: 20px;
}

.logo-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LOGO AREA */
.logo-stack {
  position: relative;
  width: 400px;
  height: 200px;
}

/* LOGOS */
.logo-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  filter: blur(20px);
  transform: scale(0.8);
}

.logo-item img {
  width: 250px;
  filter: brightness(1.5);
  margin-top: 30%;
}

.faq-section-home {
  background: #050505;
  color: white;
  padding: 140px 6%;
  overflow: hidden;
}

.faq-container {
  display: flex;
  gap: 80px;
}

/* LEFT */

.faq-left {
  width: 40%;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.faq-tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-block;
  margin-bottom: 20px;
}

.faq-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
  margin-bottom: 20px;
}

.faq-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-desc {
  color: #aaa;
  line-height: 1.7;
}

/* RIGHT */

.faq-right {
  width: 60%;
}

/* ITEM */

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-question span {
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: #b5b5b5;
  line-height: 1.7;
  transition: all 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 25px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */

@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
    position: relative;
    top: 0;
  }

  .faq-heading {
    font-size: 2.5rem;
  }
}

.pricing-section {
  background: #050505;
  color: white;
  padding: 140px 6%;
}

/* HEADER */

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.pricing-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.pricing-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.pricing-heading span {
  background: linear-gradient(90deg, #9cc050, #b8eb49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-desc {
  color: #aaa;
  margin-top: 20px;
  line-height: 1.7;
}

/* GRID */

.pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */

.pricing-card {
  width: 320px;
  padding: 40px;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s ease;

  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #00d9ff55;
}

/* FEATURED */

.pricing-card.featured {
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid #00d9ff55;
}

/* PRICE */

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: #aaa;
}

/* LIST */

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card ul li {
  margin-bottom: 12px;
  color: #bbb;
}

/* BUTTON */

.pricing-card button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #00d9ff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.pricing-card button:hover {
  background: #7aa2ff;
}

/* MOBILE */

@media (max-width: 900px) {
  .pricing-heading {
    font-size: 2.8rem;
  }

  .pricing-card {
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

.contact-section {
  background: #050505;
  color: white;
  padding: 140px 6%;
  overflow: hidden;
}

.contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */

.contact-left {
  width: 40%;
}

.contact-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.contact-heading {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.contact-heading span {
  background: linear-gradient(90deg, #8ab4ff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #bbb;
}

/* FORM */

.contact-form {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .row {
  display: flex;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: #0b0b0b;

  color: white;

  outline: none;
}

/* BUTTON */

.contact-form button {
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #00d9ff;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #7aa2ff;
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-form {
    width: 100%;
  }

  .contact-heading {
    font-size: 2.5rem;
  }

  .contact-form .row {
    flex-direction: column;
  }
}


/* SECTION for Search Engine Optimization PAGE OR OTHER PAGES*/

.faq-section {
  display: flex;
  min-height: 100vh;
  background: #050505;
  color: white;
  position: relative;
  z-index: 2;
  padding: 0 6vw;
}

/* LEFT SIDE */

.left {
  width: 42%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.questions {
  width: 100%;
}

.question {
  font-size: 2.2vw;
  line-height: 1.2;
  margin: 28px 0;
  cursor: pointer;
  color: #666;

  opacity: 0.8;
  filter: blur(2px);

  transform: translateX(0px) scale(0.95);

  transition:
    opacity 0.5s ease,
    filter 0.5s ease,
    transform 0.5s ease,
    color 0.5s ease;

  position: relative;
  padding-left: 30px;
}

.question::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 25px;
  transition: 0.5s ease;
}

.question.active {
  opacity: 1;
  filter: blur(0px);
  color: white;
  transform: translateX(30px) scale(1);
}

.question.active::before {
  width: 18px;
}

/* RIGHT SIDE */

.right {
  width: 58%;
}

.answer-card {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.answer-inner {
  max-width: 700px;
}

/* NUMBER */

.number {
  font-size: 6vw !important;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.184);
  margin-bottom: 40px;
  transform: translateY(60px);
  opacity: 0;
}

/* TITLE */

.answer-title {
  font-size: 4vw !important;
  font-weight: 900 !important;
  color: white !important;
  line-height: 1;
  margin-bottom: 30px;
  overflow: hidden;
}

.answer-title span {
  display: block;
  transform: translateY(120%);
}

/* TEXT */

.answer-text {
  font-size: 1.2vw;
  line-height: 1.8;
  color: #bfbfbf;
  opacity: 0;
  transform: translateY(40px);
}

/* PROGRESS LINE */

.progress-wrap {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.progress-bar {
  width: 100%;
  height: 0%;
  background: white;
}

/* MOBILE */

@media (max-width: 900px) {

  .faq-section {
    display: block;
    padding: 0 20px;
  }

  /* Questions */

  .left {
    width: 100%;
    position: relative;
    height: auto;
    padding: 60px 0 40px;
  }

  .questions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .question {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    padding-left: 24px;
  }

  .question::before {
    font-size: 18px;
  }

  .question.active {
    transform: translateX(10px);
  }

  /* Answers */

  .right {
    width: 100%;
  }

  .answer-card {
    height: auto;
    min-height: auto;
    padding: 80px 0;
    align-items: flex-start;
  }

  .answer-inner {
    width: 100%;
  }

  .number {
    font-size: 60px !important;
    margin-bottom: 20px;
  }

  .answer-title {
    font-size: 36px !important;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .answer-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .progress-wrap {
    display: none;
  }
}

/* footer brand logo section fix */
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  height: 100vh !important;
}

/* Blog page styles start here */

.blog-card {
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: #00bfff;
}

/* Custom Blog page styles end here  */
.custom-blog-grid {
  padding: 0 10%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  display: block;
}

.blog-title h2 {
  font-size: clamp(4rem, 6vw, 8rem) !important;
  line-height: 1 !important;
  letter-spacing: -5px !important;
  font-weight: 900 !important;
  color: white !important;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 22px;
  margin: 10px 0;
  color: white !important;
}

.blog-content a {
  text-decoration: none;
  color: white !important;
}

.blog-date {
  color: #777;
  font-size: 14px;
}

.read-more {
  color: #0073aa;
  font-weight: 600;
}

@media (max-width: 992px) {
  .custom-blog-grid {
    padding: 0 5%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-blog-grid {
    padding: 0 5%;
    grid-template-columns: 1fr;
  }
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin: 0 6px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
  background: #00d9ff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.blog-pagination .current {
  background: linear-gradient(135deg, #8ab4ff, #00d9ff);
  color: #000;
  border: none;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.blog-pagination .prev,
.blog-pagination .next {
  padding: 0 20px;
  width: auto;
}

/* Single post page styles start here */

.post-hero {
  background: radial-gradient(
    circle at center,
    rgba(88, 85, 255, 0.25),
    #050505 60%
  );
}

.post-category {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: #6cc8ff;
}

.post-hero h1 {
  font-size: 72px;
  line-height: 1.05;
  color: #fff;
  max-width: 900px;
  margin: 30px 0;
}

.post-content .container {
  max-width: 900px;
}

.post-content {
  background: #050505;
  color: #d0d0d0;
  padding: 80px 0;
}

.post-content h2 {
  color: #fff;
  font-size: 42px;
  margin-top: 60px;
}

.post-content h3 {
  color: #fff;
  font-size: 30px;
}

.post-content p {
  font-size: 20px;
  line-height: 1.9;
  text-align: justify;
  margin: 0 50px;
}

.toc-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
}

/* related posts section styles start here */

.related-posts {
  padding-right: 6vw;
  padding-top: 80px;
  margin-top: 320px;
  background: #000;
}

.related-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.related-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.related-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  /* padding: 15px 0; */
  margin: 25px 0;
}

.related-card:hover {
  transform: translateY(-8px);
  border-color: #00d9ff66;
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.related-content {
  padding: 14px;
}

.related-date {
  color: #9ca3af;
  font-size: 14px;
}

.related-content h3 {
  margin: 12px 0;
  line-height: 1.4;
  color: #fff !important;
}

.related-content h3 a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-content h3 a:hover {
  color: #a855f7;
}

.related-content p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

.post-content img {
  border-radius: 20px;
}

.featured-image {
  position: relative;
  align-self: center;
  margin-top: 60px;
}

.featured-image::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 40px;
  filter: blur(40px);
  opacity: 0.35;
  z-index: -1;
}

.featured-image img {
  width: 70%;
  height: 70vh;
  object-fit: cover;
  border-radius: 32px;
}
